aboutsummaryrefslogtreecommitdiffstats
path: root/security/openssl/files
diff options
context:
space:
mode:
authordinoex <dinoex@FreeBSD.org>2005-10-16 03:49:02 +0800
committerdinoex <dinoex@FreeBSD.org>2005-10-16 03:49:02 +0800
commite9a2190405616796618529700554e3ae9f73bb93 (patch)
tree57d134e72f9b2d97fef1773ac95bb013748ba64d /security/openssl/files
parenta14774e7a47afa4e7d1ced61f37dd122f14600f0 (diff)
downloadfreebsd-ports-gnome-e9a2190405616796618529700554e3ae9f73bb93.tar.gz
freebsd-ports-gnome-e9a2190405616796618529700554e3ae9f73bb93.tar.zst
freebsd-ports-gnome-e9a2190405616796618529700554e3ae9f73bb93.zip
- update stable to 0.9.7i
Diffstat (limited to 'security/openssl/files')
-rw-r--r--security/openssl/files/patch-evp.h14
-rw-r--r--security/openssl/files/patch-hmac.h14
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" {