diff options
author | lloyd <[email protected]> | 2012-07-06 17:43:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-07-06 17:43:16 +0000 |
commit | b8870b9659e8f1c5d8b88ff6ee7efc44024c1c41 (patch) | |
tree | fbe78d6615e5a81117a4a37caa50de92dcba793a /src/constructs/srp6 | |
parent | 53639d4d23ffd547e0d52b1a0b8f59ed24cc4712 (diff) |
More Doxygen comments
Diffstat (limited to 'src/constructs/srp6')
-rw-r--r-- | src/constructs/srp6/srp6.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/constructs/srp6/srp6.h b/src/constructs/srp6/srp6.h index b34253d7a..d67ce361a 100644 --- a/src/constructs/srp6/srp6.h +++ b/src/constructs/srp6/srp6.h @@ -42,6 +42,8 @@ BOTAN_DLL srp6_client_agree(const std::string& username, * @param identifier a username or other client identifier * @param password the secret used to authenticate user * @param salt a randomly chosen value, at least 128 bits long +* @param group_id specifies the shared SRP group +* @param hash_id specifies a secure hash function */ BigInt BOTAN_DLL generate_srp6_verifier(const std::string& identifier, const std::string& password, @@ -52,6 +54,9 @@ BigInt BOTAN_DLL generate_srp6_verifier(const std::string& identifier, /** * Return the group id for this SRP param set, or else thrown an * exception +* @param N the group modulus +* @param g the group generator +* @return group identifier */ std::string BOTAN_DLL srp6_group_identifier(const BigInt& N, const BigInt& g); |