md5.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656
  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) && !defined(USE_WINDOWS_SSPI)) \
  26. || !defined(CURL_DISABLE_DIGEST_AUTH)
  27. #include <string.h>
  28. #include <curl/curl.h>
  29. #include "curl_md5.h"
  30. #include "curl_hmac.h"
  31. #include "warnless.h"
  32. #ifdef USE_MBEDTLS
  33. #include <mbedtls/version.h>
  34. #if(MBEDTLS_VERSION_NUMBER >= 0x02070000) && \
  35. (MBEDTLS_VERSION_NUMBER < 0x03000000)
  36. #define HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS
  37. #endif
  38. #endif /* USE_MBEDTLS */
  39. #ifdef USE_OPENSSL
  40. #include <openssl/opensslconf.h>
  41. #if !defined(OPENSSL_NO_MD5) && !defined(OPENSSL_NO_DEPRECATED_3_0)
  42. #define USE_OPENSSL_MD5
  43. #endif
  44. #endif
  45. #ifdef USE_WOLFSSL
  46. #include <wolfssl/options.h>
  47. #ifndef NO_MD5
  48. #define USE_WOLFSSL_MD5
  49. #endif
  50. #endif
  51. #if defined(USE_GNUTLS)
  52. #include <nettle/md5.h>
  53. #elif defined(USE_OPENSSL_MD5)
  54. #include <openssl/md5.h>
  55. #elif defined(USE_WOLFSSL_MD5)
  56. #include <wolfssl/openssl/md5.h>
  57. #elif defined(USE_MBEDTLS)
  58. #include <mbedtls/md5.h>
  59. #elif (defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && \
  60. (__MAC_OS_X_VERSION_MAX_ALLOWED >= 1040) && \
  61. defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && \
  62. (__MAC_OS_X_VERSION_MIN_REQUIRED < 101500)) || \
  63. (defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && \
  64. (__IPHONE_OS_VERSION_MAX_ALLOWED >= 20000) && \
  65. defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && \
  66. (__IPHONE_OS_VERSION_MIN_REQUIRED < 130000))
  67. #define AN_APPLE_OS
  68. #include <CommonCrypto/CommonDigest.h>
  69. #elif defined(USE_WIN32_CRYPTO)
  70. #include <wincrypt.h>
  71. #endif
  72. /* The last 3 #include files should be in this order */
  73. #include "curl_printf.h"
  74. #include "curl_memory.h"
  75. #include "memdebug.h"
  76. #if defined(USE_GNUTLS)
  77. typedef struct md5_ctx my_md5_ctx;
  78. static CURLcode my_md5_init(my_md5_ctx *ctx)
  79. {
  80. md5_init(ctx);
  81. return CURLE_OK;
  82. }
  83. static void my_md5_update(my_md5_ctx *ctx,
  84. const unsigned char *input,
  85. unsigned int inputLen)
  86. {
  87. md5_update(ctx, inputLen, input);
  88. }
  89. static void my_md5_final(unsigned char *digest, my_md5_ctx *ctx)
  90. {
  91. md5_digest(ctx, 16, digest);
  92. }
  93. #elif defined(USE_OPENSSL_MD5) || defined(USE_WOLFSSL_MD5)
  94. typedef MD5_CTX my_md5_ctx;
  95. static CURLcode my_md5_init(my_md5_ctx *ctx)
  96. {
  97. if(!MD5_Init(ctx))
  98. return CURLE_OUT_OF_MEMORY;
  99. return CURLE_OK;
  100. }
  101. static void my_md5_update(my_md5_ctx *ctx,
  102. const unsigned char *input,
  103. unsigned int len)
  104. {
  105. (void)MD5_Update(ctx, input, len);
  106. }
  107. static void my_md5_final(unsigned char *digest, my_md5_ctx *ctx)
  108. {
  109. (void)MD5_Final(digest, ctx);
  110. }
  111. #elif defined(USE_MBEDTLS)
  112. typedef mbedtls_md5_context my_md5_ctx;
  113. static CURLcode my_md5_init(my_md5_ctx *ctx)
  114. {
  115. #if (MBEDTLS_VERSION_NUMBER >= 0x03000000)
  116. if(mbedtls_md5_starts(ctx))
  117. return CURLE_OUT_OF_MEMORY;
  118. #elif defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
  119. if(mbedtls_md5_starts_ret(ctx))
  120. return CURLE_OUT_OF_MEMORY;
  121. #else
  122. (void)mbedtls_md5_starts(ctx);
  123. #endif
  124. return CURLE_OK;
  125. }
  126. static void my_md5_update(my_md5_ctx *ctx,
  127. const unsigned char *data,
  128. unsigned int length)
  129. {
  130. #if !defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
  131. (void) mbedtls_md5_update(ctx, data, length);
  132. #else
  133. (void) mbedtls_md5_update_ret(ctx, data, length);
  134. #endif
  135. }
  136. static void my_md5_final(unsigned char *digest, my_md5_ctx *ctx)
  137. {
  138. #if !defined(HAS_MBEDTLS_RESULT_CODE_BASED_FUNCTIONS)
  139. (void) mbedtls_md5_finish(ctx, digest);
  140. #else
  141. (void) mbedtls_md5_finish_ret(ctx, digest);
  142. #endif
  143. }
  144. #elif defined(AN_APPLE_OS)
  145. /* For Apple operating systems: CommonCrypto has the functions we need.
  146. These functions are available on Tiger and later, as well as iOS 2.0
  147. and later. If you're building for an older cat, well, sorry.
  148. Declaring the functions as static like this seems to be a bit more
  149. reliable than defining COMMON_DIGEST_FOR_OPENSSL on older cats. */
  150. # define my_md5_ctx CC_MD5_CTX
  151. static CURLcode my_md5_init(my_md5_ctx *ctx)
  152. {
  153. if(!CC_MD5_Init(ctx))
  154. return CURLE_OUT_OF_MEMORY;
  155. return CURLE_OK;
  156. }
  157. static void my_md5_update(my_md5_ctx *ctx,
  158. const unsigned char *input,
  159. unsigned int inputLen)
  160. {
  161. CC_MD5_Update(ctx, input, inputLen);
  162. }
  163. static void my_md5_final(unsigned char *digest, my_md5_ctx *ctx)
  164. {
  165. CC_MD5_Final(digest, ctx);
  166. }
  167. #elif defined(USE_WIN32_CRYPTO)
  168. struct md5_ctx {
  169. HCRYPTPROV hCryptProv;
  170. HCRYPTHASH hHash;
  171. };
  172. typedef struct md5_ctx my_md5_ctx;
  173. static CURLcode my_md5_init(my_md5_ctx *ctx)
  174. {
  175. if(!CryptAcquireContext(&ctx->hCryptProv, NULL, NULL, PROV_RSA_FULL,
  176. CRYPT_VERIFYCONTEXT | CRYPT_SILENT))
  177. return CURLE_OUT_OF_MEMORY;
  178. if(!CryptCreateHash(ctx->hCryptProv, CALG_MD5, 0, 0, &ctx->hHash)) {
  179. CryptReleaseContext(ctx->hCryptProv, 0);
  180. ctx->hCryptProv = 0;
  181. return CURLE_FAILED_INIT;
  182. }
  183. return CURLE_OK;
  184. }
  185. static void my_md5_update(my_md5_ctx *ctx,
  186. const unsigned char *input,
  187. unsigned int inputLen)
  188. {
  189. CryptHashData(ctx->hHash, (unsigned char *)input, inputLen, 0);
  190. }
  191. static void my_md5_final(unsigned char *digest, my_md5_ctx *ctx)
  192. {
  193. unsigned long length = 0;
  194. CryptGetHashParam(ctx->hHash, HP_HASHVAL, NULL, &length, 0);
  195. if(length == 16)
  196. CryptGetHashParam(ctx->hHash, HP_HASHVAL, digest, &length, 0);
  197. if(ctx->hHash)
  198. CryptDestroyHash(ctx->hHash);
  199. if(ctx->hCryptProv)
  200. CryptReleaseContext(ctx->hCryptProv, 0);
  201. }
  202. #else
  203. /* When no other crypto library is available we use this code segment */
  204. /*
  205. * This is an OpenSSL-compatible implementation of the RSA Data Security, Inc.
  206. * MD5 Message-Digest Algorithm (RFC 1321).
  207. *
  208. * Homepage:
  209. https://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
  210. *
  211. * Author:
  212. * Alexander Peslyak, better known as Solar Designer <solar at openwall.com>
  213. *
  214. * This software was written by Alexander Peslyak in 2001. No copyright is
  215. * claimed, and the software is hereby placed in the public domain.
  216. * In case this attempt to disclaim copyright and place the software in the
  217. * public domain is deemed null and void, then the software is
  218. * Copyright (c) 2001 Alexander Peslyak and it is hereby released to the
  219. * general public under the following terms:
  220. *
  221. * Redistribution and use in source and binary forms, with or without
  222. * modification, are permitted.
  223. *
  224. * There's ABSOLUTELY NO WARRANTY, express or implied.
  225. *
  226. * (This is a heavily cut-down "BSD license".)
  227. *
  228. * This differs from Colin Plumb's older public domain implementation in that
  229. * no exactly 32-bit integer data type is required (any 32-bit or wider
  230. * unsigned integer data type will do), there's no compile-time endianness
  231. * configuration, and the function prototypes match OpenSSL's. No code from
  232. * Colin Plumb's implementation has been reused; this comment merely compares
  233. * the properties of the two independent implementations.
  234. *
  235. * The primary goals of this implementation are portability and ease of use.
  236. * It is meant to be fast, but not as fast as possible. Some known
  237. * optimizations are not included to reduce source code size and avoid
  238. * compile-time configuration.
  239. */
  240. /* Any 32-bit or wider unsigned integer data type will do */
  241. typedef unsigned int MD5_u32plus;
  242. struct md5_ctx {
  243. MD5_u32plus lo, hi;
  244. MD5_u32plus a, b, c, d;
  245. unsigned char buffer[64];
  246. MD5_u32plus block[16];
  247. };
  248. typedef struct md5_ctx my_md5_ctx;
  249. static CURLcode my_md5_init(my_md5_ctx *ctx);
  250. static void my_md5_update(my_md5_ctx *ctx, const void *data,
  251. unsigned long size);
  252. static void my_md5_final(unsigned char *result, my_md5_ctx *ctx);
  253. /*
  254. * The basic MD5 functions.
  255. *
  256. * F and G are optimized compared to their RFC 1321 definitions for
  257. * architectures that lack an AND-NOT instruction, just like in Colin Plumb's
  258. * implementation.
  259. */
  260. #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
  261. #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y))))
  262. #define H(x, y, z) (((x) ^ (y)) ^ (z))
  263. #define H2(x, y, z) ((x) ^ ((y) ^ (z)))
  264. #define I(x, y, z) ((y) ^ ((x) | ~(z)))
  265. /*
  266. * The MD5 transformation for all four rounds.
  267. */
  268. #define STEP(f, a, b, c, d, x, t, s) \
  269. (a) += f((b), (c), (d)) + (x) + (t); \
  270. (a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s)))); \
  271. (a) += (b);
  272. /*
  273. * SET reads 4 input bytes in little-endian byte order and stores them
  274. * in a properly aligned word in host byte order.
  275. *
  276. * The check for little-endian architectures that tolerate unaligned
  277. * memory accesses is just an optimization. Nothing will break if it
  278. * doesn't work.
  279. */
  280. #if defined(__i386__) || defined(__x86_64__) || defined(__vax__)
  281. #define SET(n) \
  282. (*(MD5_u32plus *)(void *)&ptr[(n) * 4])
  283. #define GET(n) \
  284. SET(n)
  285. #else
  286. #define SET(n) \
  287. (ctx->block[(n)] = \
  288. (MD5_u32plus)ptr[(n) * 4] | \
  289. ((MD5_u32plus)ptr[(n) * 4 + 1] << 8) | \
  290. ((MD5_u32plus)ptr[(n) * 4 + 2] << 16) | \
  291. ((MD5_u32plus)ptr[(n) * 4 + 3] << 24))
  292. #define GET(n) \
  293. (ctx->block[(n)])
  294. #endif
  295. /*
  296. * This processes one or more 64-byte data blocks, but does NOT update
  297. * the bit counters. There are no alignment requirements.
  298. */
  299. static const void *body(my_md5_ctx *ctx, const void *data, unsigned long size)
  300. {
  301. const unsigned char *ptr;
  302. MD5_u32plus a, b, c, d;
  303. ptr = (const unsigned char *)data;
  304. a = ctx->a;
  305. b = ctx->b;
  306. c = ctx->c;
  307. d = ctx->d;
  308. do {
  309. MD5_u32plus saved_a, saved_b, saved_c, saved_d;
  310. saved_a = a;
  311. saved_b = b;
  312. saved_c = c;
  313. saved_d = d;
  314. /* Round 1 */
  315. STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
  316. STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
  317. STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
  318. STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
  319. STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
  320. STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
  321. STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
  322. STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
  323. STEP(F, a, b, c, d, SET(8), 0x698098d8, 7)
  324. STEP(F, d, a, b, c, SET(9), 0x8b44f7af, 12)
  325. STEP(F, c, d, a, b, SET(10), 0xffff5bb1, 17)
  326. STEP(F, b, c, d, a, SET(11), 0x895cd7be, 22)
  327. STEP(F, a, b, c, d, SET(12), 0x6b901122, 7)
  328. STEP(F, d, a, b, c, SET(13), 0xfd987193, 12)
  329. STEP(F, c, d, a, b, SET(14), 0xa679438e, 17)
  330. STEP(F, b, c, d, a, SET(15), 0x49b40821, 22)
  331. /* Round 2 */
  332. STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
  333. STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
  334. STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
  335. STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
  336. STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
  337. STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
  338. STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
  339. STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20)
  340. STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5)
  341. STEP(G, d, a, b, c, GET(14), 0xc33707d6, 9)
  342. STEP(G, c, d, a, b, GET(3), 0xf4d50d87, 14)
  343. STEP(G, b, c, d, a, GET(8), 0x455a14ed, 20)
  344. STEP(G, a, b, c, d, GET(13), 0xa9e3e905, 5)
  345. STEP(G, d, a, b, c, GET(2), 0xfcefa3f8, 9)
  346. STEP(G, c, d, a, b, GET(7), 0x676f02d9, 14)
  347. STEP(G, b, c, d, a, GET(12), 0x8d2a4c8a, 20)
  348. /* Round 3 */
  349. STEP(H, a, b, c, d, GET(5), 0xfffa3942, 4)
  350. STEP(H2, d, a, b, c, GET(8), 0x8771f681, 11)
  351. STEP(H, c, d, a, b, GET(11), 0x6d9d6122, 16)
  352. STEP(H2, b, c, d, a, GET(14), 0xfde5380c, 23)
  353. STEP(H, a, b, c, d, GET(1), 0xa4beea44, 4)
  354. STEP(H2, d, a, b, c, GET(4), 0x4bdecfa9, 11)
  355. STEP(H, c, d, a, b, GET(7), 0xf6bb4b60, 16)
  356. STEP(H2, b, c, d, a, GET(10), 0xbebfbc70, 23)
  357. STEP(H, a, b, c, d, GET(13), 0x289b7ec6, 4)
  358. STEP(H2, d, a, b, c, GET(0), 0xeaa127fa, 11)
  359. STEP(H, c, d, a, b, GET(3), 0xd4ef3085, 16)
  360. STEP(H2, b, c, d, a, GET(6), 0x04881d05, 23)
  361. STEP(H, a, b, c, d, GET(9), 0xd9d4d039, 4)
  362. STEP(H2, d, a, b, c, GET(12), 0xe6db99e5, 11)
  363. STEP(H, c, d, a, b, GET(15), 0x1fa27cf8, 16)
  364. STEP(H2, b, c, d, a, GET(2), 0xc4ac5665, 23)
  365. /* Round 4 */
  366. STEP(I, a, b, c, d, GET(0), 0xf4292244, 6)
  367. STEP(I, d, a, b, c, GET(7), 0x432aff97, 10)
  368. STEP(I, c, d, a, b, GET(14), 0xab9423a7, 15)
  369. STEP(I, b, c, d, a, GET(5), 0xfc93a039, 21)
  370. STEP(I, a, b, c, d, GET(12), 0x655b59c3, 6)
  371. STEP(I, d, a, b, c, GET(3), 0x8f0ccc92, 10)
  372. STEP(I, c, d, a, b, GET(10), 0xffeff47d, 15)
  373. STEP(I, b, c, d, a, GET(1), 0x85845dd1, 21)
  374. STEP(I, a, b, c, d, GET(8), 0x6fa87e4f, 6)
  375. STEP(I, d, a, b, c, GET(15), 0xfe2ce6e0, 10)
  376. STEP(I, c, d, a, b, GET(6), 0xa3014314, 15)
  377. STEP(I, b, c, d, a, GET(13), 0x4e0811a1, 21)
  378. STEP(I, a, b, c, d, GET(4), 0xf7537e82, 6)
  379. STEP(I, d, a, b, c, GET(11), 0xbd3af235, 10)
  380. STEP(I, c, d, a, b, GET(2), 0x2ad7d2bb, 15)
  381. STEP(I, b, c, d, a, GET(9), 0xeb86d391, 21)
  382. a += saved_a;
  383. b += saved_b;
  384. c += saved_c;
  385. d += saved_d;
  386. ptr += 64;
  387. } while(size -= 64);
  388. ctx->a = a;
  389. ctx->b = b;
  390. ctx->c = c;
  391. ctx->d = d;
  392. return ptr;
  393. }
  394. static CURLcode my_md5_init(my_md5_ctx *ctx)
  395. {
  396. ctx->a = 0x67452301;
  397. ctx->b = 0xefcdab89;
  398. ctx->c = 0x98badcfe;
  399. ctx->d = 0x10325476;
  400. ctx->lo = 0;
  401. ctx->hi = 0;
  402. return CURLE_OK;
  403. }
  404. static void my_md5_update(my_md5_ctx *ctx, const void *data,
  405. unsigned long size)
  406. {
  407. MD5_u32plus saved_lo;
  408. unsigned long used;
  409. saved_lo = ctx->lo;
  410. ctx->lo = (saved_lo + size) & 0x1fffffff;
  411. if(ctx->lo < saved_lo)
  412. ctx->hi++;
  413. ctx->hi += (MD5_u32plus)size >> 29;
  414. used = saved_lo & 0x3f;
  415. if(used) {
  416. unsigned long available = 64 - used;
  417. if(size < available) {
  418. memcpy(&ctx->buffer[used], data, size);
  419. return;
  420. }
  421. memcpy(&ctx->buffer[used], data, available);
  422. data = (const unsigned char *)data + available;
  423. size -= available;
  424. body(ctx, ctx->buffer, 64);
  425. }
  426. if(size >= 64) {
  427. data = body(ctx, data, size & ~(unsigned long)0x3f);
  428. size &= 0x3f;
  429. }
  430. memcpy(ctx->buffer, data, size);
  431. }
  432. static void my_md5_final(unsigned char *result, my_md5_ctx *ctx)
  433. {
  434. unsigned long used, available;
  435. used = ctx->lo & 0x3f;
  436. ctx->buffer[used++] = 0x80;
  437. available = 64 - used;
  438. if(available < 8) {
  439. memset(&ctx->buffer[used], 0, available);
  440. body(ctx, ctx->buffer, 64);
  441. used = 0;
  442. available = 64;
  443. }
  444. memset(&ctx->buffer[used], 0, available - 8);
  445. ctx->lo <<= 3;
  446. ctx->buffer[56] = curlx_ultouc((ctx->lo)&0xff);
  447. ctx->buffer[57] = curlx_ultouc((ctx->lo >> 8)&0xff);
  448. ctx->buffer[58] = curlx_ultouc((ctx->lo >> 16)&0xff);
  449. ctx->buffer[59] = curlx_ultouc(ctx->lo >> 24);
  450. ctx->buffer[60] = curlx_ultouc((ctx->hi)&0xff);
  451. ctx->buffer[61] = curlx_ultouc((ctx->hi >> 8)&0xff);
  452. ctx->buffer[62] = curlx_ultouc((ctx->hi >> 16)&0xff);
  453. ctx->buffer[63] = curlx_ultouc(ctx->hi >> 24);
  454. body(ctx, ctx->buffer, 64);
  455. result[0] = curlx_ultouc((ctx->a)&0xff);
  456. result[1] = curlx_ultouc((ctx->a >> 8)&0xff);
  457. result[2] = curlx_ultouc((ctx->a >> 16)&0xff);
  458. result[3] = curlx_ultouc(ctx->a >> 24);
  459. result[4] = curlx_ultouc((ctx->b)&0xff);
  460. result[5] = curlx_ultouc((ctx->b >> 8)&0xff);
  461. result[6] = curlx_ultouc((ctx->b >> 16)&0xff);
  462. result[7] = curlx_ultouc(ctx->b >> 24);
  463. result[8] = curlx_ultouc((ctx->c)&0xff);
  464. result[9] = curlx_ultouc((ctx->c >> 8)&0xff);
  465. result[10] = curlx_ultouc((ctx->c >> 16)&0xff);
  466. result[11] = curlx_ultouc(ctx->c >> 24);
  467. result[12] = curlx_ultouc((ctx->d)&0xff);
  468. result[13] = curlx_ultouc((ctx->d >> 8)&0xff);
  469. result[14] = curlx_ultouc((ctx->d >> 16)&0xff);
  470. result[15] = curlx_ultouc(ctx->d >> 24);
  471. memset(ctx, 0, sizeof(*ctx));
  472. }
  473. #endif /* CRYPTO LIBS */
  474. const struct HMAC_params Curl_HMAC_MD5[] = {
  475. {
  476. /* Hash initialization function. */
  477. CURLX_FUNCTION_CAST(HMAC_hinit_func, my_md5_init),
  478. /* Hash update function. */
  479. CURLX_FUNCTION_CAST(HMAC_hupdate_func, my_md5_update),
  480. /* Hash computation end function. */
  481. CURLX_FUNCTION_CAST(HMAC_hfinal_func, my_md5_final),
  482. /* Size of hash context structure. */
  483. sizeof(my_md5_ctx),
  484. /* Maximum key length. */
  485. 64,
  486. /* Result size. */
  487. 16
  488. }
  489. };
  490. const struct MD5_params Curl_DIGEST_MD5[] = {
  491. {
  492. /* Digest initialization function */
  493. CURLX_FUNCTION_CAST(Curl_MD5_init_func, my_md5_init),
  494. /* Digest update function */
  495. CURLX_FUNCTION_CAST(Curl_MD5_update_func, my_md5_update),
  496. /* Digest computation end function */
  497. CURLX_FUNCTION_CAST(Curl_MD5_final_func, my_md5_final),
  498. /* Size of digest context struct */
  499. sizeof(my_md5_ctx),
  500. /* Result size */
  501. 16
  502. }
  503. };
  504. /*
  505. * @unittest: 1601
  506. * Returns CURLE_OK on success.
  507. */
  508. CURLcode Curl_md5it(unsigned char *outbuffer, const unsigned char *input,
  509. const size_t len)
  510. {
  511. CURLcode result;
  512. my_md5_ctx ctx;
  513. result = my_md5_init(&ctx);
  514. if(!result) {
  515. my_md5_update(&ctx, input, curlx_uztoui(len));
  516. my_md5_final(outbuffer, &ctx);
  517. }
  518. return result;
  519. }
  520. struct MD5_context *Curl_MD5_init(const struct MD5_params *md5params)
  521. {
  522. struct MD5_context *ctxt;
  523. /* Create MD5 context */
  524. ctxt = malloc(sizeof(*ctxt));
  525. if(!ctxt)
  526. return ctxt;
  527. ctxt->md5_hashctx = malloc(md5params->md5_ctxtsize);
  528. if(!ctxt->md5_hashctx) {
  529. free(ctxt);
  530. return NULL;
  531. }
  532. ctxt->md5_hash = md5params;
  533. if((*md5params->md5_init_func)(ctxt->md5_hashctx)) {
  534. free(ctxt->md5_hashctx);
  535. free(ctxt);
  536. return NULL;
  537. }
  538. return ctxt;
  539. }
  540. CURLcode Curl_MD5_update(struct MD5_context *context,
  541. const unsigned char *data,
  542. unsigned int len)
  543. {
  544. (*context->md5_hash->md5_update_func)(context->md5_hashctx, data, len);
  545. return CURLE_OK;
  546. }
  547. CURLcode Curl_MD5_final(struct MD5_context *context, unsigned char *result)
  548. {
  549. (*context->md5_hash->md5_final_func)(result, context->md5_hashctx);
  550. free(context->md5_hashctx);
  551. free(context);
  552. return CURLE_OK;
  553. }
  554. #endif /* Using NTLM (without SSPI) || Digest */