mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2025-02-17 03:48:38 +00:00
17 lines
344 B
C++
17 lines
344 B
C++
// fhmqv.cpp - written and placed in the public domain by Jeffrey Walton
|
|
// Shamelessly based upon Wei Dai's MQV source files
|
|
|
|
#include "pch.h"
|
|
#include "fhmqv.h"
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
#if !defined(NDEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING)
|
|
void TestInstantiations_FHMQV()
|
|
{
|
|
FHMQV fhmqv;
|
|
}
|
|
#endif
|
|
|
|
NAMESPACE_END
|