mirror of
https://github.com/curl/curl.git
synced 2026-08-26 17:43:31 +03:00
parent
b2bccdc257
commit
89771d19d5
109 changed files with 319 additions and 324 deletions
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "curl_setup.h"
|
||||
|
||||
#if defined(USE_CURL_NTLM_CORE)
|
||||
#ifdef USE_CURL_NTLM_CORE
|
||||
|
||||
#include <string.h>
|
||||
|
||||
|
|
@ -220,7 +220,7 @@ static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
|
|||
static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
|
||||
{
|
||||
if(ctx->data) {
|
||||
#if !defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
|
||||
#ifndef HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS
|
||||
mbedtls_md4(ctx->data, ctx->size, result);
|
||||
#else
|
||||
(void)mbedtls_md4_ret(ctx->data, ctx->size, result);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue