diff options
Diffstat (limited to 'CryptoPP/elgamal.cpp')
-rw-r--r-- | CryptoPP/elgamal.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/CryptoPP/elgamal.cpp b/CryptoPP/elgamal.cpp deleted file mode 100644 index b58fe7c06..000000000 --- a/CryptoPP/elgamal.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// elgamal.cpp - written and placed in the public domain by Wei Dai - -#include "pch.h" -#include "elgamal.h" -#include "asn.h" -#include "nbtheory.h" - -NAMESPACE_BEGIN(CryptoPP) - -void ElGamal_TestInstantiations() -{ - ElGamalEncryptor test1(1, 1, 1); - ElGamalDecryptor test2(NullRNG(), 123); - ElGamalEncryptor test3(test2); -} - -NAMESPACE_END |