diff options
author | Jack Lloyd <[email protected]> | 2015-10-19 20:05:33 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-10-19 20:05:33 -0400 |
commit | ee396e6fa028184cf715351311ba3c41e7b8228e (patch) | |
tree | 727da9d588f13c90a5104001ae6b691b33549c3e /src | |
parent | 554a46a2abe2399cf051b801295db78ef32aa093 (diff) |
Make OpenSSL ECDSA and RSA request only until they can be tested
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/utils/openssl/openssl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/utils/openssl/openssl.h b/src/lib/utils/openssl/openssl.h index 022db6223..05d3e953f 100644 --- a/src/lib/utils/openssl/openssl.h +++ b/src/lib/utils/openssl/openssl.h @@ -27,8 +27,8 @@ class OpenSSL_Error : public Exception #define BOTAN_OPENSSL_HASH_PRIO 150 #define BOTAN_OPENSSL_RC4_PRIO 150 -#define BOTAN_OPENSSL_RSA_PRIO 150 -#define BOTAN_OPENSSL_ECDSA_PRIO 150 +#define BOTAN_OPENSSL_RSA_PRIO 90 +#define BOTAN_OPENSSL_ECDSA_PRIO 90 } |