blob: 03792c97e2ac7f5cdf475304eeadd49b555d781f (
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
|
Secure Remote Password
========================================
The library contains an implementation of the SRP-6a password based
key exchange protocol in ``srp6.h``.
.. cpp:function:: BigInt generate_srp6_verifier( \
const std::string& identifier, \
const std::string& password, \
const std::vector<byte>& salt, \
const std::string& group_id, \
const std::string& hash_id)
.. cpp:function:: std::pair<BigInt,SymmetricKey> srp6_client_agree( \
const std::string& username, \
const std::string& password, \
const std::string& group_id, \
const std::string& hash_id, \
const std::vector<byte>& salt, \
const BigInt& B, \
RandomNumberGenerator& rng)
.. cpp:function:: std::string srp6_group_identifier( \
const BigInt& N, const BigInt& g)
|