From 850a295b41543a11c5a0b5f4943e9b4fbc20da59 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sun, 14 Apr 2019 19:24:28 +0100 Subject: md4: Use our own MD4 implementation when no crypto libraries are available Closes #3780 --- lib/curl_ntlm_core.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lib/curl_ntlm_core.c') diff --git a/lib/curl_ntlm_core.c b/lib/curl_ntlm_core.c index b2a6afc0c..19f9b61d8 100644 --- a/lib/curl_ntlm_core.c +++ b/lib/curl_ntlm_core.c @@ -556,12 +556,7 @@ CURLcode Curl_ntlm_core_mk_nt_hash(struct Curl_easy *data, return result; /* Create NT hashed password. */ -#if defined(USE_OPENSSL) || defined(USE_GNUTLS_NETTLE) || \ - defined(USE_GNUTLS) || defined(USE_NSS) || defined(USE_MBEDTLS) || \ - defined(USE_SECTRANSP) || defined(USE_OS400CRYPTO) || \ - defined(USE_WIN32_CRYPTO) Curl_md4it(ntbuffer, pw, 2 * len); -#endif memset(ntbuffer + 16, 0, 21 - 16); -- cgit v1.2.1