summaryrefslogtreecommitdiff
path: root/lib/md5.c
diff options
context:
space:
mode:
authorFutaura <oliver@futaura.co.uk>2022-08-07 15:03:32 +0100
committerDaniel Stenberg <daniel@haxx.se>2022-08-08 09:16:01 +0200
commite1acfafa497333c79247a17a0378855b9de9d2c4 (patch)
tree134dc8c45a6e39be54e49d6f6daa41af98bb0e83 /lib/md5.c
parentc7b322aac8decc38b76d1ba358bb22263d231a49 (diff)
downloadcurl-e1acfafa497333c79247a17a0378855b9de9d2c4.tar.gz
amissl: make AmiSSL v5 a minimum requirement
AmiSSL v5 is the latest version, featuring a port of OpenSSL 3.0. Support for previous OpenSSL 1.1.x versions has been dropped, so makes sense to enforce v5 as the minimum requirement. This also allows all the AmiSSL stub workarounds to be removed as they are now provided in a link library in the AmiSSL SDK. Closes #9267
Diffstat (limited to 'lib/md5.c')
-rw-r--r--lib/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/md5.c b/lib/md5.c
index 2164e15ff..5be639929 100644
--- a/lib/md5.c
+++ b/lib/md5.c
@@ -41,7 +41,7 @@
#endif
#endif /* USE_MBEDTLS */
-#if defined(USE_OPENSSL) && !defined(USE_AMISSL)
+#ifdef USE_OPENSSL
#include <openssl/opensslconf.h>
#if !defined(OPENSSL_NO_MD5) && !defined(OPENSSL_NO_DEPRECATED_3_0)
#define USE_OPENSSL_MD5