ext-cryptopp/elgamal.cpp

23 lines
532 B
C++
Raw Permalink Normal View History

// elgamal.cpp - originally written and placed in the public domain by Wei Dai
2015-11-05 06:59:46 +00:00
#include "pch.h"
#include "elgamal.h"
#include "asn.h"
#include "nbtheory.h"
2018-10-17 08:27:54 +00:00
// Squash MS LNK4221 and libtool warnings
extern const char ELGAMAL_FNAME[] = __FILE__;
2015-11-05 06:59:46 +00:00
NAMESPACE_BEGIN(CryptoPP)
#if defined(CRYPTOPP_DEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING)
2015-11-05 06:59:46 +00:00
void ElGamal_TestInstantiations()
{
ElGamalEncryptor test1(1, 1, 1);
ElGamalDecryptor test2(NullRNG(), 123);
ElGamalEncryptor test3(test2);
}
#endif
2015-11-05 06:59:46 +00:00
NAMESPACE_END