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
|
#include "tests.h"
#if defined(BOTAN_HAS_SRP6)
#include <botan/srp6.h>
#include <iostream>
size_t test_srp6()
{
using namespace Botan;
size_t fails = 0;
const std::string username = "user";
const std::string password = "Awellchosen1_to_be_sure_";
const std::string group_id = "modp/srp/1024";
const std::string hash_id = "SHA-256";
auto& rng = test_rng();
const auto salt = unlock(rng.random_vec(16));
const BigInt verifier = generate_srp6_verifier(username, password, salt, group_id, hash_id);
SRP6_Server_Session server;
const BigInt B = server.step1(verifier, group_id, hash_id, rng);
auto client = srp6_client_agree(username, password, group_id, hash_id, salt, B, rng);
const SymmetricKey server_K = server.step2(client.first);
if(client.second != server_K)
{
std::cout << "SRP6 computed different keys" << std::endl;
++fails;
}
test_report("SRP6", 1, fails);
return fails;
}
#else
SKIP_TEST(srp6);
#endif // BOTAN_HAS_SRP6
|