diff options
Diffstat (limited to 'lib/curl_md4.h')
-rw-r--r-- | lib/curl_md4.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/curl_md4.h b/lib/curl_md4.h index 03567b9..4706e49 100644 --- a/lib/curl_md4.h +++ b/lib/curl_md4.h @@ -25,14 +25,15 @@ ***************************************************************************/ #include "curl_setup.h" +#include <curl/curl.h> -#if !defined(CURL_DISABLE_CRYPTO_AUTH) +#if defined(USE_CURL_NTLM_CORE) #define MD4_DIGEST_LENGTH 16 -void Curl_md4it(unsigned char *output, const unsigned char *input, - const size_t len); +CURLcode Curl_md4it(unsigned char *output, const unsigned char *input, + const size_t len); -#endif /* !defined(CURL_DISABLE_CRYPTO_AUTH) */ +#endif /* defined(USE_CURL_NTLM_CORE) */ #endif /* HEADER_CURL_MD4_H */ |