diff options
author | Jack Lloyd <[email protected]> | 2016-10-21 10:42:59 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-10-21 16:53:18 -0400 |
commit | 331f7d28de21170e74febae53a7f49732ad40256 (patch) | |
tree | 96d76ce8eebb18cb56afab92ffaa5fa4249c0144 /src | |
parent | 18fac51d7dd70fd118d5450ebebd8ab5a85115d6 (diff) |
ECIES ISO tests require SHA-1
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/test_ecies.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_ecies.cpp b/src/tests/test_ecies.cpp index 0cbc5c2b4..a875b8947 100644 --- a/src/tests/test_ecies.cpp +++ b/src/tests/test_ecies.cpp @@ -101,7 +101,7 @@ void check_encrypt_decrypt(Test::Result& result, const Botan::ECDH_PrivateKey& p plaintext, std::vector<byte>()); } -#if defined(BOTAN_HAS_KDF1_18033) +#if defined(BOTAN_HAS_KDF1_18033) && defined(BOTAN_HAS_SHA1) class ECIES_ISO_Tests : public Text_Based_Test { |