Unverified Commit c2dc51e8 by Edward Thomson Committed by GitHub

Merge pull request #6340 from vishwin/main

ntlmclient: LibreSSL 3.5 removed HMAC_CTX_cleanup
parents 1a94d97e 628ebbde
...@@ -44,7 +44,9 @@ static inline void HMAC_CTX_free(HMAC_CTX *ctx) ...@@ -44,7 +44,9 @@ static inline void HMAC_CTX_free(HMAC_CTX *ctx)
#endif #endif
#if (OPENSSL_VERSION_NUMBER >= 0x10100000L && !LIBRESSL_VERSION_NUMBER) || defined(CRYPT_OPENSSL_DYNAMIC) #if (OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER)) || \
(defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER >= 0x03050000fL) || \
defined(CRYPT_OPENSSL_DYNAMIC)
static inline void HMAC_CTX_cleanup(HMAC_CTX *ctx) static inline void HMAC_CTX_cleanup(HMAC_CTX *ctx)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment