diff options
Diffstat (limited to 'src/tests/test_elg.cpp')
-rw-r--r-- | src/tests/test_elg.cpp | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/tests/test_elg.cpp b/src/tests/test_elg.cpp index 332e5ae0e..8d0a8d1ae 100644 --- a/src/tests/test_elg.cpp +++ b/src/tests/test_elg.cpp @@ -1,19 +1,21 @@ #include "tests.h" #include "test_pubkey.h" -#include <botan/auto_rng.h> -#include <botan/pubkey.h> -#include <botan/dl_group.h> #include <botan/hex.h> #include <iostream> #include <fstream> #if defined(BOTAN_HAS_ELGAMAL) #include <botan/elgamal.h> + #include <botan/auto_rng.h> + #include <botan/pubkey.h> + #include <botan/dl_group.h> #endif using namespace Botan; +#if defined(BOTAN_HAS_ELGAMAL) + namespace { size_t elgamal_kat(const std::string& p, @@ -31,7 +33,6 @@ size_t elgamal_kat(const std::string& p, const BigInt x_bn = BigInt(x); DL_Group group(p_bn, g_bn); -#if defined(BOTAN_HAS_ELGAMAL) ElGamal_PrivateKey privkey(rng, group, x_bn); ElGamal_PublicKey pubkey = privkey; @@ -43,25 +44,25 @@ size_t elgamal_kat(const std::string& p, PK_Decryptor_EME dec(privkey, padding); return validate_encryption(enc, dec, "ElGamal/" + padding, msg, nonce, ciphertext); -#else - return 1; -#endif } } +#endif size_t test_elgamal() { - std::ifstream elgamal_enc(PK_TEST_DATA_DIR "/elgamal.vec"); - size_t fails = 0; +#if defined(BOTAN_HAS_ELGAMAL) + std::ifstream elgamal_enc(PK_TEST_DATA_DIR "/elgamal.vec"); + fails += run_tests_bb(elgamal_enc, "ElGamal Encryption", "Ciphertext", true, [](std::map<std::string, std::string> m) -> size_t { return elgamal_kat(m["P"], m["G"], m["X"], m["Msg"], m["Padding"], m["Nonce"], m["Ciphertext"]); }); +#endif return fails; } |