blob: 586c28c3fd175c987eca0bcd6c0b855c4abec661 (
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
50
|
/*
* (C) 2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/botan.h>
#include <botan/passhash9.h>
#include <iostream>
#include <memory>
#include <stdio.h>
int main(int argc, char* argv[])
{
if(argc != 2 && argc != 3)
{
std::cerr << "Usage: " << argv[0] << " password\n";
std::cerr << "Usage: " << argv[0] << " password hash\n";
return 1;
}
Botan::LibraryInitializer init;
try
{
if(argc == 2)
{
Botan::AutoSeeded_RNG rng;
std::cout << "H('" << argv[1] << "') = "
<< Botan::generate_passhash9(argv[1], rng) << '\n';
}
else
{
bool ok = Botan::check_passhash9(argv[1], argv[2]);
if(ok)
std::cout << "Password and hash match\n";
else
std::cout << "Password and hash do not match\n";
}
}
catch(std::exception& e)
{
std::cerr << e.what() << '\n';
return 1;
}
return 0;
}
|