md4.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. #include "curl_setup.h"
  25. #if defined(USE_CURL_NTLM_CORE)
  26. #include <string.h>
  27. #include "strdup.h"
  28. #include "curl_md4.h"
  29. #include "warnless.h"
  30. #ifdef USE_OPENSSL
  31. #include <openssl/opensslv.h>
  32. #if (OPENSSL_VERSION_NUMBER >= 0x30000000L) && !defined(USE_AMISSL)
  33. /* OpenSSL 3.0.0 marks the MD4 functions as deprecated */
  34. #define OPENSSL_NO_MD4
  35. #else
  36. /* Cover also OPENSSL_NO_MD4 configured in openssl */
  37. #include <openssl/opensslconf.h>
  38. #endif
  39. #endif /* USE_OPENSSL */
  40. #ifdef USE_WOLFSSL
  41. #include <wolfssl/options.h>
  42. #define VOID_MD4_INIT
  43. #ifdef NO_MD4
  44. #define WOLFSSL_NO_MD4
  45. #endif
  46. #endif
  47. #ifdef USE_MBEDTLS
  48. #include <mbedtls/version.h>
  49. #if MBEDTLS_VERSION_NUMBER >= 0x03000000
  50. #include <mbedtls/mbedtls_config.h>
  51. #else
  52. #include <mbedtls/config.h>
  53. #endif
  54. #if(MBEDTLS_VERSION_NUMBER >= 0x02070000) && \
  55. (MBEDTLS_VERSION_NUMBER < 0x03000000)
  56. #define HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS
  57. #endif
  58. #endif /* USE_MBEDTLS */
  59. #if defined(USE_GNUTLS)
  60. #include <nettle/md4.h>
  61. /* When OpenSSL or wolfSSL is available, we use their MD4 functions. */
  62. #elif defined(USE_WOLFSSL) && !defined(WOLFSSL_NO_MD4)
  63. #include <wolfssl/openssl/md4.h>
  64. #elif defined(USE_OPENSSL) && !defined(OPENSSL_NO_MD4)
  65. #include <openssl/md4.h>
  66. #elif (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && \
  67. (__MAC_OS_X_VERSION_MAX_ALLOWED >= 1040) && \
  68. defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && \
  69. (__MAC_OS_X_VERSION_MIN_REQUIRED < 101500)) || \
  70. (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && \
  71. (__IPHONE_OS_VERSION_MAX_ALLOWED >= 20000) && \
  72. defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && \
  73. (__IPHONE_OS_VERSION_MIN_REQUIRED < 130000))
  74. #define AN_APPLE_OS
  75. #include <CommonCrypto/CommonDigest.h>
  76. #elif defined(USE_WIN32_CRYPTO)
  77. #include <wincrypt.h>
  78. #elif(defined(USE_MBEDTLS) && defined(MBEDTLS_MD4_C))
  79. #include <mbedtls/md4.h>
  80. #endif
  81. /* The last 3 #include files should be in this order */
  82. #include "curl_printf.h"
  83. #include "curl_memory.h"
  84. #include "memdebug.h"
  85. #if defined(USE_GNUTLS)
  86. typedef struct md4_ctx MD4_CTX;
  87. static int MD4_Init(MD4_CTX *ctx)
  88. {
  89. md4_init(ctx);
  90. return 1;
  91. }
  92. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  93. {
  94. md4_update(ctx, size, data);
  95. }
  96. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  97. {
  98. md4_digest(ctx, MD4_DIGEST_SIZE, result);
  99. }
  100. #elif defined(USE_WOLFSSL) && !defined(WOLFSSL_NO_MD4)
  101. #ifdef OPENSSL_COEXIST
  102. #define MD4_CTX WOLFSSL_MD4_CTX
  103. #define MD4_Init wolfSSL_MD4_Init
  104. #define MD4_Update wolfSSL_MD4_Update
  105. #define MD4_Final wolfSSL_MD4_Final
  106. #endif
  107. #elif defined(USE_OPENSSL) && !defined(OPENSSL_NO_MD4)
  108. #elif defined(AN_APPLE_OS)
  109. typedef CC_MD4_CTX MD4_CTX;
  110. static int MD4_Init(MD4_CTX *ctx)
  111. {
  112. return CC_MD4_Init(ctx);
  113. }
  114. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  115. {
  116. (void)CC_MD4_Update(ctx, data, (CC_LONG)size);
  117. }
  118. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  119. {
  120. (void)CC_MD4_Final(result, ctx);
  121. }
  122. #elif defined(USE_WIN32_CRYPTO)
  123. struct md4_ctx {
  124. HCRYPTPROV hCryptProv;
  125. HCRYPTHASH hHash;
  126. };
  127. typedef struct md4_ctx MD4_CTX;
  128. static int MD4_Init(MD4_CTX *ctx)
  129. {
  130. ctx->hCryptProv = 0;
  131. ctx->hHash = 0;
  132. if(!CryptAcquireContext(&ctx->hCryptProv, NULL, NULL, PROV_RSA_FULL,
  133. CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
  134. return 0;
  135. if(!CryptCreateHash(ctx->hCryptProv, CALG_MD4, 0, 0, &ctx->hHash)) {
  136. CryptReleaseContext(ctx->hCryptProv, 0);
  137. ctx->hCryptProv = 0;
  138. return 0;
  139. }
  140. return 1;
  141. }
  142. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  143. {
  144. CryptHashData(ctx->hHash, (BYTE *)data, (unsigned int) size, 0);
  145. }
  146. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  147. {
  148. unsigned long length = 0;
  149. CryptGetHashParam(ctx->hHash, HP_HASHVAL, NULL, &length, 0);
  150. if(length == MD4_DIGEST_LENGTH)
  151. CryptGetHashParam(ctx->hHash, HP_HASHVAL, result, &length, 0);
  152. if(ctx->hHash)
  153. CryptDestroyHash(ctx->hHash);
  154. if(ctx->hCryptProv)
  155. CryptReleaseContext(ctx->hCryptProv, 0);
  156. }
  157. #elif(defined(USE_MBEDTLS) && defined(MBEDTLS_MD4_C))
  158. struct md4_ctx {
  159. void *data;
  160. unsigned long size;
  161. };
  162. typedef struct md4_ctx MD4_CTX;
  163. static int MD4_Init(MD4_CTX *ctx)
  164. {
  165. ctx->data = NULL;
  166. ctx->size = 0;
  167. return 1;
  168. }
  169. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  170. {
  171. if(!ctx->data) {
  172. ctx->data = Curl_memdup(data, size);
  173. if(ctx->data)
  174. ctx->size = size;
  175. }
  176. }
  177. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  178. {
  179. if(ctx->data) {
  180. #if !defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
  181. mbedtls_md4(ctx->data, ctx->size, result);
  182. #else
  183. (void) mbedtls_md4_ret(ctx->data, ctx->size, result);
  184. #endif
  185. Curl_safefree(ctx->data);
  186. ctx->size = 0;
  187. }
  188. }
  189. #else
  190. /* When no other crypto library is available, or the crypto library does not
  191. * support MD4, we use this code segment this implementation of it
  192. *
  193. * This is an OpenSSL-compatible implementation of the RSA Data Security, Inc.
  194. * MD4 Message-Digest Algorithm (RFC 1320).
  195. *
  196. * Homepage:
  197. https://openwall.info/wiki/people/solar/software/public-domain-source-code/md4
  198. *
  199. * Author:
  200. * Alexander Peslyak, better known as Solar Designer <solar at openwall.com>
  201. *
  202. * This software was written by Alexander Peslyak in 2001. No copyright is
  203. * claimed, and the software is hereby placed in the public domain. In case
  204. * this attempt to disclaim copyright and place the software in the public
  205. * domain is deemed null and void, then the software is Copyright (c) 2001
  206. * Alexander Peslyak and it is hereby released to the general public under the
  207. * following terms:
  208. *
  209. * Redistribution and use in source and binary forms, with or without
  210. * modification, are permitted.
  211. *
  212. * There is ABSOLUTELY NO WARRANTY, express or implied.
  213. *
  214. * (This is a heavily cut-down "BSD license".)
  215. *
  216. * This differs from Colin Plumb's older public domain implementation in that
  217. * no exactly 32-bit integer data type is required (any 32-bit or wider
  218. * unsigned integer data type will do), there is no compile-time endianness
  219. * configuration, and the function prototypes match OpenSSL's. No code from
  220. * Colin Plumb's implementation has been reused; this comment merely compares
  221. * the properties of the two independent implementations.
  222. *
  223. * The primary goals of this implementation are portability and ease of use.
  224. * It is meant to be fast, but not as fast as possible. Some known
  225. * optimizations are not included to reduce source code size and avoid
  226. * compile-time configuration.
  227. */
  228. /* Any 32-bit or wider unsigned integer data type will do */
  229. typedef unsigned int MD4_u32plus;
  230. struct md4_ctx {
  231. MD4_u32plus lo, hi;
  232. MD4_u32plus a, b, c, d;
  233. unsigned char buffer[64];
  234. MD4_u32plus block[16];
  235. };
  236. typedef struct md4_ctx MD4_CTX;
  237. static int MD4_Init(MD4_CTX *ctx);
  238. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size);
  239. static void MD4_Final(unsigned char *result, MD4_CTX *ctx);
  240. /*
  241. * The basic MD4 functions.
  242. *
  243. * F and G are optimized compared to their RFC 1320 definitions, with the
  244. * optimization for F borrowed from Colin Plumb's MD5 implementation.
  245. */
  246. #define MD4_F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
  247. #define MD4_G(x, y, z) (((x) & ((y) | (z))) | ((y) & (z)))
  248. #define MD4_H(x, y, z) ((x) ^ (y) ^ (z))
  249. /*
  250. * The MD4 transformation for all three rounds.
  251. */
  252. #define MD4_STEP(f, a, b, c, d, x, s) \
  253. (a) += f((b), (c), (d)) + (x); \
  254. (a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s))));
  255. /*
  256. * SET reads 4 input bytes in little-endian byte order and stores them
  257. * in a properly aligned word in host byte order.
  258. *
  259. * The check for little-endian architectures that tolerate unaligned
  260. * memory accesses is just an optimization. Nothing will break if it
  261. * does not work.
  262. */
  263. #if defined(__i386__) || defined(__x86_64__) || defined(__vax__)
  264. #define MD4_SET(n) \
  265. (*(MD4_u32plus *)(void *)&ptr[(n) * 4])
  266. #define MD4_GET(n) \
  267. MD4_SET(n)
  268. #else
  269. #define MD4_SET(n) \
  270. (ctx->block[(n)] = \
  271. (MD4_u32plus)ptr[(n) * 4] | \
  272. ((MD4_u32plus)ptr[(n) * 4 + 1] << 8) | \
  273. ((MD4_u32plus)ptr[(n) * 4 + 2] << 16) | \
  274. ((MD4_u32plus)ptr[(n) * 4 + 3] << 24))
  275. #define MD4_GET(n) \
  276. (ctx->block[(n)])
  277. #endif
  278. /*
  279. * This processes one or more 64-byte data blocks, but does NOT update
  280. * the bit counters. There are no alignment requirements.
  281. */
  282. static const void *my_md4_body(MD4_CTX *ctx,
  283. const void *data, unsigned long size)
  284. {
  285. const unsigned char *ptr;
  286. MD4_u32plus a, b, c, d;
  287. ptr = (const unsigned char *)data;
  288. a = ctx->a;
  289. b = ctx->b;
  290. c = ctx->c;
  291. d = ctx->d;
  292. do {
  293. MD4_u32plus saved_a, saved_b, saved_c, saved_d;
  294. saved_a = a;
  295. saved_b = b;
  296. saved_c = c;
  297. saved_d = d;
  298. /* Round 1 */
  299. MD4_STEP(MD4_F, a, b, c, d, MD4_SET(0), 3)
  300. MD4_STEP(MD4_F, d, a, b, c, MD4_SET(1), 7)
  301. MD4_STEP(MD4_F, c, d, a, b, MD4_SET(2), 11)
  302. MD4_STEP(MD4_F, b, c, d, a, MD4_SET(3), 19)
  303. MD4_STEP(MD4_F, a, b, c, d, MD4_SET(4), 3)
  304. MD4_STEP(MD4_F, d, a, b, c, MD4_SET(5), 7)
  305. MD4_STEP(MD4_F, c, d, a, b, MD4_SET(6), 11)
  306. MD4_STEP(MD4_F, b, c, d, a, MD4_SET(7), 19)
  307. MD4_STEP(MD4_F, a, b, c, d, MD4_SET(8), 3)
  308. MD4_STEP(MD4_F, d, a, b, c, MD4_SET(9), 7)
  309. MD4_STEP(MD4_F, c, d, a, b, MD4_SET(10), 11)
  310. MD4_STEP(MD4_F, b, c, d, a, MD4_SET(11), 19)
  311. MD4_STEP(MD4_F, a, b, c, d, MD4_SET(12), 3)
  312. MD4_STEP(MD4_F, d, a, b, c, MD4_SET(13), 7)
  313. MD4_STEP(MD4_F, c, d, a, b, MD4_SET(14), 11)
  314. MD4_STEP(MD4_F, b, c, d, a, MD4_SET(15), 19)
  315. /* Round 2 */
  316. MD4_STEP(MD4_G, a, b, c, d, MD4_GET(0) + 0x5a827999, 3)
  317. MD4_STEP(MD4_G, d, a, b, c, MD4_GET(4) + 0x5a827999, 5)
  318. MD4_STEP(MD4_G, c, d, a, b, MD4_GET(8) + 0x5a827999, 9)
  319. MD4_STEP(MD4_G, b, c, d, a, MD4_GET(12) + 0x5a827999, 13)
  320. MD4_STEP(MD4_G, a, b, c, d, MD4_GET(1) + 0x5a827999, 3)
  321. MD4_STEP(MD4_G, d, a, b, c, MD4_GET(5) + 0x5a827999, 5)
  322. MD4_STEP(MD4_G, c, d, a, b, MD4_GET(9) + 0x5a827999, 9)
  323. MD4_STEP(MD4_G, b, c, d, a, MD4_GET(13) + 0x5a827999, 13)
  324. MD4_STEP(MD4_G, a, b, c, d, MD4_GET(2) + 0x5a827999, 3)
  325. MD4_STEP(MD4_G, d, a, b, c, MD4_GET(6) + 0x5a827999, 5)
  326. MD4_STEP(MD4_G, c, d, a, b, MD4_GET(10) + 0x5a827999, 9)
  327. MD4_STEP(MD4_G, b, c, d, a, MD4_GET(14) + 0x5a827999, 13)
  328. MD4_STEP(MD4_G, a, b, c, d, MD4_GET(3) + 0x5a827999, 3)
  329. MD4_STEP(MD4_G, d, a, b, c, MD4_GET(7) + 0x5a827999, 5)
  330. MD4_STEP(MD4_G, c, d, a, b, MD4_GET(11) + 0x5a827999, 9)
  331. MD4_STEP(MD4_G, b, c, d, a, MD4_GET(15) + 0x5a827999, 13)
  332. /* Round 3 */
  333. MD4_STEP(MD4_H, a, b, c, d, MD4_GET(0) + 0x6ed9eba1, 3)
  334. MD4_STEP(MD4_H, d, a, b, c, MD4_GET(8) + 0x6ed9eba1, 9)
  335. MD4_STEP(MD4_H, c, d, a, b, MD4_GET(4) + 0x6ed9eba1, 11)
  336. MD4_STEP(MD4_H, b, c, d, a, MD4_GET(12) + 0x6ed9eba1, 15)
  337. MD4_STEP(MD4_H, a, b, c, d, MD4_GET(2) + 0x6ed9eba1, 3)
  338. MD4_STEP(MD4_H, d, a, b, c, MD4_GET(10) + 0x6ed9eba1, 9)
  339. MD4_STEP(MD4_H, c, d, a, b, MD4_GET(6) + 0x6ed9eba1, 11)
  340. MD4_STEP(MD4_H, b, c, d, a, MD4_GET(14) + 0x6ed9eba1, 15)
  341. MD4_STEP(MD4_H, a, b, c, d, MD4_GET(1) + 0x6ed9eba1, 3)
  342. MD4_STEP(MD4_H, d, a, b, c, MD4_GET(9) + 0x6ed9eba1, 9)
  343. MD4_STEP(MD4_H, c, d, a, b, MD4_GET(5) + 0x6ed9eba1, 11)
  344. MD4_STEP(MD4_H, b, c, d, a, MD4_GET(13) + 0x6ed9eba1, 15)
  345. MD4_STEP(MD4_H, a, b, c, d, MD4_GET(3) + 0x6ed9eba1, 3)
  346. MD4_STEP(MD4_H, d, a, b, c, MD4_GET(11) + 0x6ed9eba1, 9)
  347. MD4_STEP(MD4_H, c, d, a, b, MD4_GET(7) + 0x6ed9eba1, 11)
  348. MD4_STEP(MD4_H, b, c, d, a, MD4_GET(15) + 0x6ed9eba1, 15)
  349. a += saved_a;
  350. b += saved_b;
  351. c += saved_c;
  352. d += saved_d;
  353. ptr += 64;
  354. } while(size -= 64);
  355. ctx->a = a;
  356. ctx->b = b;
  357. ctx->c = c;
  358. ctx->d = d;
  359. return ptr;
  360. }
  361. static int MD4_Init(MD4_CTX *ctx)
  362. {
  363. ctx->a = 0x67452301;
  364. ctx->b = 0xefcdab89;
  365. ctx->c = 0x98badcfe;
  366. ctx->d = 0x10325476;
  367. ctx->lo = 0;
  368. ctx->hi = 0;
  369. return 1;
  370. }
  371. static void MD4_Update(MD4_CTX *ctx, const void *data, unsigned long size)
  372. {
  373. MD4_u32plus saved_lo;
  374. unsigned long used;
  375. saved_lo = ctx->lo;
  376. ctx->lo = (saved_lo + size) & 0x1fffffff;
  377. if(ctx->lo < saved_lo)
  378. ctx->hi++;
  379. ctx->hi += (MD4_u32plus)size >> 29;
  380. used = saved_lo & 0x3f;
  381. if(used) {
  382. unsigned long available = 64 - used;
  383. if(size < available) {
  384. memcpy(&ctx->buffer[used], data, size);
  385. return;
  386. }
  387. memcpy(&ctx->buffer[used], data, available);
  388. data = (const unsigned char *)data + available;
  389. size -= available;
  390. my_md4_body(ctx, ctx->buffer, 64);
  391. }
  392. if(size >= 64) {
  393. data = my_md4_body(ctx, data, size & ~(unsigned long)0x3f);
  394. size &= 0x3f;
  395. }
  396. memcpy(ctx->buffer, data, size);
  397. }
  398. static void MD4_Final(unsigned char *result, MD4_CTX *ctx)
  399. {
  400. unsigned long used, available;
  401. used = ctx->lo & 0x3f;
  402. ctx->buffer[used++] = 0x80;
  403. available = 64 - used;
  404. if(available < 8) {
  405. memset(&ctx->buffer[used], 0, available);
  406. my_md4_body(ctx, ctx->buffer, 64);
  407. used = 0;
  408. available = 64;
  409. }
  410. memset(&ctx->buffer[used], 0, available - 8);
  411. ctx->lo <<= 3;
  412. ctx->buffer[56] = curlx_ultouc((ctx->lo)&0xff);
  413. ctx->buffer[57] = curlx_ultouc((ctx->lo >> 8)&0xff);
  414. ctx->buffer[58] = curlx_ultouc((ctx->lo >> 16)&0xff);
  415. ctx->buffer[59] = curlx_ultouc((ctx->lo >> 24)&0xff);
  416. ctx->buffer[60] = curlx_ultouc((ctx->hi)&0xff);
  417. ctx->buffer[61] = curlx_ultouc((ctx->hi >> 8)&0xff);
  418. ctx->buffer[62] = curlx_ultouc((ctx->hi >> 16)&0xff);
  419. ctx->buffer[63] = curlx_ultouc(ctx->hi >> 24);
  420. my_md4_body(ctx, ctx->buffer, 64);
  421. result[0] = curlx_ultouc((ctx->a)&0xff);
  422. result[1] = curlx_ultouc((ctx->a >> 8)&0xff);
  423. result[2] = curlx_ultouc((ctx->a >> 16)&0xff);
  424. result[3] = curlx_ultouc(ctx->a >> 24);
  425. result[4] = curlx_ultouc((ctx->b)&0xff);
  426. result[5] = curlx_ultouc((ctx->b >> 8)&0xff);
  427. result[6] = curlx_ultouc((ctx->b >> 16)&0xff);
  428. result[7] = curlx_ultouc(ctx->b >> 24);
  429. result[8] = curlx_ultouc((ctx->c)&0xff);
  430. result[9] = curlx_ultouc((ctx->c >> 8)&0xff);
  431. result[10] = curlx_ultouc((ctx->c >> 16)&0xff);
  432. result[11] = curlx_ultouc(ctx->c >> 24);
  433. result[12] = curlx_ultouc((ctx->d)&0xff);
  434. result[13] = curlx_ultouc((ctx->d >> 8)&0xff);
  435. result[14] = curlx_ultouc((ctx->d >> 16)&0xff);
  436. result[15] = curlx_ultouc(ctx->d >> 24);
  437. memset(ctx, 0, sizeof(*ctx));
  438. }
  439. #endif /* CRYPTO LIBS */
  440. CURLcode Curl_md4it(unsigned char *output, const unsigned char *input,
  441. const size_t len)
  442. {
  443. MD4_CTX ctx;
  444. #ifdef VOID_MD4_INIT
  445. MD4_Init(&ctx);
  446. #else
  447. if(!MD4_Init(&ctx))
  448. return CURLE_FAILED_INIT;
  449. #endif
  450. MD4_Update(&ctx, input, curlx_uztoui(len));
  451. MD4_Final(output, &ctx);
  452. return CURLE_OK;
  453. }
  454. #endif /* USE_CURL_NTLM_CORE */