diff options
Diffstat (limited to 'security/openssl/files')
-rw-r--r-- | security/openssl/files/patch-evp.h | 14 | ||||
-rw-r--r-- | security/openssl/files/patch-hmac.h | 14 |
2 files changed, 0 insertions, 28 deletions
diff --git a/security/openssl/files/patch-evp.h b/security/openssl/files/patch-evp.h deleted file mode 100644 index dabadea299e4..000000000000 --- a/security/openssl/files/patch-evp.h +++ /dev/null @@ -1,14 +0,0 @@ ---- crypto/evp/evp.h.orig Thu Oct 13 17:24:41 2005 -+++ crypto/evp/evp.h Thu Oct 13 17:26:32 2005 -@@ -132,7 +132,11 @@ - #define EVP_CAST5_KEY_SIZE 16 - #define EVP_RC5_32_12_16_KEY_SIZE 16 - */ -+#ifdef OPENSSL_FIPS - #define EVP_MAX_MD_SIZE 64 /* longest known SHA512 */ -+#else -+#define EVP_MAX_MD_SIZE (16+20) /* The SSLv3 md5+sha1 type */ -+#endif - #define EVP_MAX_KEY_LENGTH 32 - #define EVP_MAX_IV_LENGTH 16 - #define EVP_MAX_BLOCK_LENGTH 32 diff --git a/security/openssl/files/patch-hmac.h b/security/openssl/files/patch-hmac.h deleted file mode 100644 index dab469e67b67..000000000000 --- a/security/openssl/files/patch-hmac.h +++ /dev/null @@ -1,14 +0,0 @@ ---- crypto/hmac/hmac.h.orig Thu Oct 13 17:27:32 2005 -+++ crypto/hmac/hmac.h Thu Oct 13 17:28:43 2005 -@@ -64,7 +64,11 @@ - - #include <openssl/evp.h> - -+#ifdef OPENSSL_FIPS - #define HMAC_MAX_MD_CBLOCK 128 -+#else -+#define HMAC_MAX_MD_CBLOCK 64 -+#endif - - #ifdef __cplusplus - extern "C" { |