aboutsummaryrefslogtreecommitdiffstats
path: root/src/constructs
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-07-06 17:43:16 +0000
committerlloyd <[email protected]>2012-07-06 17:43:16 +0000
commitb8870b9659e8f1c5d8b88ff6ee7efc44024c1c41 (patch)
treefbe78d6615e5a81117a4a37caa50de92dcba793a /src/constructs
parent53639d4d23ffd547e0d52b1a0b8f59ed24cc4712 (diff)
More Doxygen comments
Diffstat (limited to 'src/constructs')
-rw-r--r--src/constructs/srp6/srp6.h5
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);