summaryrefslogtreecommitdiff
path: root/hmqv.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-08-03 21:58:26 -0400
committerJeffrey Walton <noloader@gmail.com>2019-08-03 21:58:26 -0400
commit057c2b434ba6efb1910c53aa3b375c9c16de484b (patch)
treeb2a6cc7da32f93c8d569a590d2e30d76066f6e45 /hmqv.h
parent47a58050c62b3f9af7eb4df224b0390d77112263 (diff)
downloadcryptopp-git-057c2b434ba6efb1910c53aa3b375c9c16de484b.tar.gz
Update documentation
Diffstat (limited to 'hmqv.h')
-rw-r--r--hmqv.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/hmqv.h b/hmqv.h
index f678e30f..8603d16c 100644
--- a/hmqv.h
+++ b/hmqv.h
@@ -30,7 +30,7 @@ public:
virtual ~HMQV_Domain() {}
/// \brief Construct a HMQV domain
- /// \params clientRole flag indicating initiator or recipient
+ /// \param clientRole flag indicating initiator or recipient
/// \details <tt>clientRole = true</tt> indicates initiator, and
/// <tt>clientRole = false</tt> indicates recipient or server.
HMQV_Domain(bool clientRole = true)
@@ -38,6 +38,7 @@ public:
/// \brief Construct a HMQV domain
/// \param params group parameters and options
+ /// \param clientRole flag indicating initiator or recipient
/// \details <tt>clientRole = true</tt> indicates initiator, and
/// <tt>clientRole = false</tt> indicates recipient or server.
HMQV_Domain(const GroupParameters &params, bool clientRole = true)
@@ -45,6 +46,7 @@ public:
/// \brief Construct a HMQV domain
/// \param bt BufferedTransformation with group parameters and options
+ /// \param clientRole flag indicating initiator or recipient
/// \details <tt>clientRole = true</tt> indicates initiator, and
/// <tt>clientRole = false</tt> indicates recipient or server.
HMQV_Domain(BufferedTransformation &bt, bool clientRole = true)
@@ -56,6 +58,7 @@ public:
/// \tparam T2 template parameter used as a constructor parameter
/// \param v1 first parameter
/// \param v2 second parameter
+ /// \param clientRole flag indicating initiator or recipient
/// \details v1 and v2 are passed directly to the GROUP_PARAMETERS object.
/// \details <tt>clientRole = true</tt> indicates initiator, and
/// <tt>clientRole = false</tt> indicates recipient or server.
@@ -69,6 +72,7 @@ public:
/// \tparam T2 template parameter used as a constructor parameter
/// \param v1 first parameter
/// \param v2 second parameter
+ /// \param clientRole flag indicating initiator or recipient
/// \details v1 and v2 are passed directly to the GROUP_PARAMETERS object.
/// \details <tt>clientRole = true</tt> indicates initiator, and
/// <tt>clientRole = false</tt> indicates recipient or server.
@@ -84,6 +88,7 @@ public:
/// \param v1 first parameter
/// \param v2 second parameter
/// \param v3 third parameter
+ /// \param clientRole flag indicating initiator or recipient
/// \details v1, v2 and v3 are passed directly to the GROUP_PARAMETERS object.
/// \details <tt>clientRole = true</tt> indicates initiator, and
/// <tt>clientRole = false</tt> indicates recipient or server.
@@ -101,6 +106,7 @@ public:
/// \param v2 second parameter
/// \param v3 third parameter
/// \param v4 third parameter
+ /// \param clientRole flag indicating initiator or recipient
/// \details v1, v2, v3 and v4 are passed directly to the GROUP_PARAMETERS object.
/// \details <tt>clientRole = true</tt> indicates initiator, and
/// <tt>clientRole = false</tt> indicates recipient or server.
@@ -248,7 +254,7 @@ public:
BB = tt.BytePtr();
bbs = tt.SizeInBytes();
}
- else if(m_role == RoleClient)
+ else
{
Integer a(staticPrivateKey, StaticPrivateKeyLength());
Element A = params.ExponentiateBase(a);
@@ -263,11 +269,6 @@ public:
BB = staticOtherPublicKey;
bbs = StaticPublicKeyLength();
}
- else
- {
- CRYPTOPP_ASSERT(0);
- return false;
- }
// DecodeElement calls ValidateElement at level 1. Level 1 only calls
// VerifyPoint to ensure the element is in G*. If the other's PublicKey is