summaryrefslogtreecommitdiff
path: root/fhmqv.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 /fhmqv.h
parente4e01a6af3964750d032153d7f1c96fc9eee107c (diff)
downloadcryptopp-git-36d769e9077b0e891440a7d32f14a84f80909aab.tar.gz
Updated documentation
Diffstat (limited to 'fhmqv.h')
-rw-r--r--fhmqv.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/fhmqv.h b/fhmqv.h
index 6a527b70..0e9a317b 100644
--- a/fhmqv.h
+++ b/fhmqv.h
@@ -6,6 +6,7 @@
//! \file fhmqv.h
//! \brief Classes for Fully Hashed Menezes-Qu-Vanstone key agreement in GF(p)
+//! \since Crypto++ 5.6.4
#include "gfpcrypt.h"
#include "algebra.h"
@@ -18,6 +19,7 @@ NAMESPACE_BEGIN(CryptoPP)
//! <a href="http://eprint.iacr.org/2009/408">A Secure and Efficient Authenticated Diffie-Hellman Protocol</a>.
//! Note: this is FHMQV, Protocol 5, from page 11; and not FHMQV-C.
//! \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 FHMQV_Domain : public AuthenticatedKeyAgreementDomain
{
@@ -294,6 +296,7 @@ private:
//! <a href="http://eprint.iacr.org/2009/408">A Secure and Efficient Authenticated Diffie-Hellman Protocol</a>.
//! Note: this is FHMQV, Protocol 5, from page 11; and not FHMQV-C.
//! \sa FHMQV, MQV_Domain, HMQV_Domain, AuthenticatedKeyAgreementDomain
+//! \since Crypto++ 5.6.4
typedef FHMQV_Domain<DL_GroupParameters_GFP_DefaultSafePrime> FHMQV;
NAMESPACE_END