#include <botan/bigint.h>
#include <botan/symkey.h>
#include <string>
Go to the source code of this file.
|
BigInt | Botan::generate_srp6_verifier (const std::string &identifier, const std::string &password, const std::vector< uint8_t > &salt, const DL_Group &group, const std::string &hash_id) |
|
BigInt | Botan::generate_srp6_verifier (const std::string &identifier, const std::string &password, const std::vector< uint8_t > &salt, const std::string &group_id, const std::string &hash_id) |
|
std::pair< BigInt, SymmetricKey > | Botan::srp6_client_agree (const std::string &identifier, const std::string &password, const DL_Group &group, const std::string &hash_id, const std::vector< uint8_t > &salt, const BigInt &B, const size_t a_bits, RandomNumberGenerator &rng) |
|
std::pair< BigInt, SymmetricKey > | Botan::srp6_client_agree (const std::string &identifier, const std::string &password, const std::string &group_id, const std::string &hash_id, const std::vector< uint8_t > &salt, const BigInt &B, RandomNumberGenerator &rng) |
|
std::string | Botan::srp6_group_identifier (const BigInt &N, const BigInt &g) |
|