blob: 2b0bfa13200cb8f807e20dd272d59752552f679d (
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
|
#include "apps.h"
#include <botan/bcrypt.h>
int bcrypt_main(int argc, char* argv[])
{
if(argc == 2)
{
AutoSeeded_RNG rng;
const std::string password = argv[1];
std::cout << generate_bcrypt(password, rng, 12) << "\n";
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\n";
const bool ok = check_bcrypt(password, hash);
std::cout << "Password is " << (ok ? "valid" : "NOT valid") << "\n";
return (ok ? 0 : 1);
}
std::cout << "Usage: " << argv[0] << " password\n"
<< " " << argv[0] << " password passhash\n";
return 1;
}
|