summaryrefslogtreecommitdiff
path: root/hmqv.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-09 05:19:29 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-09 05:19:29 -0400
commit36d769e9077b0e891440a7d32f14a84f80909aab (patch)
tree9f6f7b6922748672db5d3bbd5909c48a2da208dd /hmqv.h
parente4e01a6af3964750d032153d7f1c96fc9eee107c (diff)
downloadcryptopp-git-36d769e9077b0e891440a7d32f14a84f80909aab.tar.gz
Updated documentation
Diffstat (limited to 'hmqv.h')
-rw-r--r--hmqv.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/hmqv.h b/hmqv.h
index 697ae343..2aa4058b 100644
--- a/hmqv.h
+++ b/hmqv.h
@@ -6,6 +6,7 @@
//! \file hmqv.h
//! \brief Classes for Hashed Menezes-Qu-Vanstone key agreement in GF(p)
+//! \since Crypto++ 5.6.4
#include "gfpcrypt.h"
#include "algebra.h"
@@ -17,6 +18,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! \details This implementation follows Hugo Krawczyk's <a href="http://eprint.iacr.org/2005/176">HMQV: A High-Performance
//! Secure Diffie-Hellman Protocol</a>. Note: this implements HMQV only. HMQV-C with Key Confirmation is not provided.
//! \sa MQV, HMQV, FHMQV, and AuthenticatedKeyAgreementDomain
+//! \since Crypto++ 5.6.4
template <class GROUP_PARAMETERS, class COFACTOR_OPTION = CPP_TYPENAME GROUP_PARAMETERS::DefaultCofactorOption, class HASH = SHA512>
class HMQV_Domain: public AuthenticatedKeyAgreementDomain
{
@@ -302,6 +304,7 @@ private:
//! \details This implementation follows Hugo Krawczyk's <a href="http://eprint.iacr.org/2005/176">HMQV: A High-Performance
//! Secure Diffie-Hellman Protocol</a>. Note: this implements HMQV only. HMQV-C with Key Confirmation is not provided.
//! \sa HMQV, MQV_Domain, FHMQV_Domain, AuthenticatedKeyAgreementDomain
+//! \since Crypto++ 5.6.4
typedef HMQV_Domain<DL_GroupParameters_GFP_DefaultSafePrime> HMQV;
NAMESPACE_END