aboutsummaryrefslogtreecommitdiffstats
path: root/src/constructs/srp6
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-07-09 19:45:46 +0000
committerlloyd <[email protected]>2012-07-09 19:45:46 +0000
commit0dffe4ce78737a8d2d2861621705728c2b08c279 (patch)
tree679ab6d0df25a5ea329a4c98eadc51851d34d167 /src/constructs/srp6
parente20279e07b37f9cff036b6e4bd6e11532de0f363 (diff)
More Doxygen warning fixes
Diffstat (limited to 'src/constructs/srp6')
-rw-r--r--src/constructs/srp6/srp6.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/constructs/srp6/srp6.h b/src/constructs/srp6/srp6.h
index d67ce361a..6f3960be1 100644
--- a/src/constructs/srp6/srp6.h
+++ b/src/constructs/srp6/srp6.h
@@ -69,12 +69,21 @@ class BOTAN_DLL SRP6_Server_Session
/**
* Server side step 1
* @param v the verification value saved from client registration
+ * @param group_id the SRP group id
+ * @param hash_id the SRP hash in use
+ * @param rng a random number generator
+ * @return SRP-6 B value
*/
BigInt step1(const BigInt& v,
const std::string& group_id,
const std::string& hash_id,
RandomNumberGenerator& rng);
+ /**
+ * Server side step 2
+ * @param A the client's value
+ * @return shared symmetric key
+ */
SymmetricKey step2(const BigInt& A);
private: