ext-cryptopp/mqv.cpp
Jeffrey Walton 81b1a18063
Change file preamble to include "originally written by Wei Dai"
We have made a fair number of changes, and we don't want WD to receive credit for issues he was not part of
2017-01-27 07:05:45 -05:00

30 lines
569 B
C++

// mqv.cpp - originally 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 defined(CRYPTOPP_DEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING)
void TestInstantiations_MQV()
{
MQV mqv;
}
void TestInstantiations_HMQV()
{
HMQV hmqv;
}
void TestInstantiations_FHMQV()
{
FHMQV fhmqv;
}
#endif
NAMESPACE_END