summaryrefslogtreecommitdiff
path: root/extra/qca-ossl/no-whirlpool.patch
diff options
context:
space:
mode:
Diffstat (limited to 'extra/qca-ossl/no-whirlpool.patch')
-rw-r--r--extra/qca-ossl/no-whirlpool.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/extra/qca-ossl/no-whirlpool.patch b/extra/qca-ossl/no-whirlpool.patch
deleted file mode 100644
index 609ea61f2..000000000
--- a/extra/qca-ossl/no-whirlpool.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -up qca-ossl-2.0.0-beta3/qca-ossl.cpp.no-whirlpool qca-ossl-2.0.0-beta3/qca-ossl.cpp
---- qca-ossl-2.0.0-beta3/qca-ossl.cpp.no-whirlpool 2007-12-11 07:34:57.000000000 +0100
-+++ qca-ossl-2.0.0-beta3/qca-ossl.cpp 2009-01-26 14:59:42.000000000 +0100
-@@ -6597,7 +6597,7 @@ static QStringList all_hash_types()
- #ifdef SHA512_DIGEST_LENGTH
- list += "sha512";
- #endif
--#ifdef OBJ_whirlpool
-+#ifdef WHIRLPOOL_DIGEST_LENGTH
- list += "whirlpool";
- #endif
- return list;
-@@ -6810,7 +6810,7 @@ public:
- else if ( type == "sha512" )
- return new opensslHashContext( EVP_sha512(), this, type);
- #endif
--#ifdef OBJ_whirlpool
-+#ifdef WHIRLPOOL_DIGEST_LENGTH
- else if ( type == "whirlpool" )
- return new opensslHashContext( EVP_whirlpool(), this, type);
- #endif