aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/bcrypt.cpp
blob: 3cf5f7516c78385bccf5d5eb0b8c6bb0fffada17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#include "apps.h"

#if defined(BOTAN_HAS_BCRYPT)

#include <botan/bcrypt.h>

namespace {

int bcrypt(int argc, char* argv[])
   {
   if(argc == 2)
      {
      AutoSeeded_RNG rng;

      const std::string password = argv[1];

      std::cout << generate_bcrypt(password, rng, 12) << std::endl;
      return 0;
      }
   else if(argc == 3)
      {
      const std::string password = argv[1];
      const std::string hash = argv[2];

      if(hash.length() != 60)
         std::cout << "Note: bcrypt '" << hash << "' has wrong length and cannot be valid" << std::endl;

      const bool ok = check_bcrypt(password, hash);

      std::cout << "Password is " << (ok ? "valid" : "NOT valid") << std::endl;
      return (ok ? 0 : 1);
      }

   std::cout << "Usage: " << argv[0] << " password\n"
             << "       " << argv[0] << " password passhash" << std::endl;
   return 1;
   }

REGISTER_APP(bcrypt);

}

#endif