Finish adding EC prefix to classes which operate over elliptic curves

pull/263/head
Jeffrey Walton 2016-07-21 02:54:09 -04:00
parent 060ba1a696
commit 78f44516e7
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ NAMESPACE_BEGIN(CryptoPP)
#if !defined(NDEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING) #if !defined(NDEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING)
void TestInstantiations_FHMQV() void TestInstantiations_FHMQV()
{ {
FullyHashedMQV fhmqv; FHMQV fhmqv;
} }
#endif #endif

View File

@ -292,7 +292,7 @@ private:
//! \details This implementation follows Augustin P. Sarr and Philippe ElbazVincent, and JeanClaude Bajard's //! \details This implementation follows Augustin P. Sarr and Philippe ElbazVincent, and JeanClaude Bajard's
//! <a href="http://eprint.iacr.org/2009/408">A Secure and Efficient Authenticated Diffie-Hellman Protocol</a>. //! <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. //! Note: this is FHMQV, Protocol 5, from page 11; and not FHMQV-C.
typedef FHMQV_Domain<DL_GroupParameters_GFP_DefaultSafePrime> FullyHashedMQV; typedef FHMQV_Domain<DL_GroupParameters_GFP_DefaultSafePrime> FHMQV;
NAMESPACE_END NAMESPACE_END

View File

@ -9,7 +9,7 @@ NAMESPACE_BEGIN(CryptoPP)
#if !defined(NDEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING) #if !defined(NDEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING)
void TestInstantiations_HMQV() void TestInstantiations_HMQV()
{ {
HMQV_GFP hmqv; HMQV hmqv;
} }
#endif #endif