mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
81b1a18063
We have made a fair number of changes, and we don't want WD to receive credit for issues he was not part of
30 lines
569 B
C++
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
|