ext-cryptopp/mqv.cpp

30 lines
549 B
C++

// mqv.cpp - written and placed in the public domain by Wei Dai
// HMQV provided by Jeffrey Walton, Ray Clayton and Uri Blumenthal.
// FHMQV provided by Uri Blumenthal.
#include "pch.h"
#include "mqv.h"
#include "hmqv.h"
#include "fhmqv.h"
NAMESPACE_BEGIN(CryptoPP)
#if CRYPTOPP_DEBUG && !defined(CRYPTOPP_DOXYGEN_PROCESSING)
void TestInstantiations_MQV()
{
MQV mqv;
}
void TestInstantiations_HMQV()
{
HMQV hmqv;
}
void TestInstantiations_FHMQV()
{
FHMQV fhmqv;
}
#endif
NAMESPACE_END