md5.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. /*
  2. * Copyright (c) 2007, Cameron Rich
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are met:
  8. *
  9. * * Redistributions of source code must retain the above copyright notice,
  10. * this list of conditions and the following disclaimer.
  11. * * Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. * * Neither the name of the axTLS project nor the names of its contributors
  15. * may be used to endorse or promote products derived from this software
  16. * without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  22. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  23. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  24. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  25. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  26. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  27. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  28. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. /**
  31. * This file implements the MD5 algorithm as defined in RFC1321
  32. */
  33. #include <string.h>
  34. #include "os_port.h"
  35. #include "crypto.h"
  36. /* Constants for MD5Transform routine.
  37. */
  38. #define S11 7
  39. #define S12 12
  40. #define S13 17
  41. #define S14 22
  42. #define S21 5
  43. #define S22 9
  44. #define S23 14
  45. #define S24 20
  46. #define S31 4
  47. #define S32 11
  48. #define S33 16
  49. #define S34 23
  50. #define S41 6
  51. #define S42 10
  52. #define S43 15
  53. #define S44 21
  54. /* ----- static functions ----- */
  55. static void MD5Transform(uint32_t state[4], const uint8_t block[64]);
  56. static void Encode(uint8_t *output, uint32_t *input, uint32_t len);
  57. static void Decode(uint32_t *output, const uint8_t *input, uint32_t len);
  58. static const uint8_t PADDING[64] =
  59. {
  60. 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  61. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  62. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  63. };
  64. /* F, G, H and I are basic MD5 functions.
  65. */
  66. #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
  67. #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
  68. #define H(x, y, z) ((x) ^ (y) ^ (z))
  69. #define I(x, y, z) ((y) ^ ((x) | (~z)))
  70. /* ROTATE_LEFT rotates x left n bits. */
  71. #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
  72. /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
  73. Rotation is separate from addition to prevent recomputation. */
  74. #define FF(a, b, c, d, x, s, ac) { \
  75. (a) += F ((b), (c), (d)) + (x) + (uint32_t)(ac); \
  76. (a) = ROTATE_LEFT ((a), (s)); \
  77. (a) += (b); \
  78. }
  79. #define GG(a, b, c, d, x, s, ac) { \
  80. (a) += G ((b), (c), (d)) + (x) + (uint32_t)(ac); \
  81. (a) = ROTATE_LEFT ((a), (s)); \
  82. (a) += (b); \
  83. }
  84. #define HH(a, b, c, d, x, s, ac) { \
  85. (a) += H ((b), (c), (d)) + (x) + (uint32_t)(ac); \
  86. (a) = ROTATE_LEFT ((a), (s)); \
  87. (a) += (b); \
  88. }
  89. #define II(a, b, c, d, x, s, ac) { \
  90. (a) += I ((b), (c), (d)) + (x) + (uint32_t)(ac); \
  91. (a) = ROTATE_LEFT ((a), (s)); \
  92. (a) += (b); \
  93. }
  94. /**
  95. * MD5 initialization - begins an MD5 operation, writing a new ctx.
  96. */
  97. EXP_FUNC void STDCALL MD5_Init(MD5_CTX *ctx)
  98. {
  99. ctx->count[0] = ctx->count[1] = 0;
  100. /* Load magic initialization constants.
  101. */
  102. ctx->state[0] = 0x67452301;
  103. ctx->state[1] = 0xefcdab89;
  104. ctx->state[2] = 0x98badcfe;
  105. ctx->state[3] = 0x10325476;
  106. }
  107. /**
  108. * Accepts an array of octets as the next portion of the message.
  109. */
  110. EXP_FUNC void STDCALL MD5_Update(MD5_CTX *ctx, const uint8_t * msg, int len)
  111. {
  112. uint32_t x;
  113. int i, partLen;
  114. /* Compute number of bytes mod 64 */
  115. x = (uint32_t)((ctx->count[0] >> 3) & 0x3F);
  116. /* Update number of bits */
  117. if ((ctx->count[0] += ((uint32_t)len << 3)) < ((uint32_t)len << 3))
  118. ctx->count[1]++;
  119. ctx->count[1] += ((uint32_t)len >> 29);
  120. partLen = 64 - x;
  121. /* Transform as many times as possible. */
  122. if (len >= partLen)
  123. {
  124. memcpy(&ctx->buffer[x], msg, partLen);
  125. MD5Transform(ctx->state, ctx->buffer);
  126. for (i = partLen; i + 63 < len; i += 64)
  127. MD5Transform(ctx->state, &msg[i]);
  128. x = 0;
  129. }
  130. else
  131. i = 0;
  132. /* Buffer remaining input */
  133. memcpy(&ctx->buffer[x], &msg[i], len-i);
  134. }
  135. /**
  136. * Return the 128-bit message digest into the user's array
  137. */
  138. EXP_FUNC void STDCALL MD5_Final(uint8_t *digest, MD5_CTX *ctx)
  139. {
  140. uint8_t bits[8];
  141. uint32_t x, padLen;
  142. /* Save number of bits */
  143. Encode(bits, ctx->count, 8);
  144. /* Pad out to 56 mod 64.
  145. */
  146. x = (uint32_t)((ctx->count[0] >> 3) & 0x3f);
  147. padLen = (x < 56) ? (56 - x) : (120 - x);
  148. MD5_Update(ctx, PADDING, padLen);
  149. /* Append length (before padding) */
  150. MD5_Update(ctx, bits, 8);
  151. /* Store state in digest */
  152. Encode(digest, ctx->state, MD5_SIZE);
  153. }
  154. /**
  155. * MD5 basic transformation. Transforms state based on block.
  156. */
  157. static void MD5Transform(uint32_t state[4], const uint8_t block[64])
  158. {
  159. uint32_t a = state[0], b = state[1], c = state[2],
  160. d = state[3], x[MD5_SIZE];
  161. Decode(x, block, 64);
  162. /* Round 1 */
  163. FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
  164. FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
  165. FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
  166. FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
  167. FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
  168. FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
  169. FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
  170. FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */
  171. FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */
  172. FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */
  173. FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */
  174. FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */
  175. FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */
  176. FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */
  177. FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */
  178. FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */
  179. /* Round 2 */
  180. GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */
  181. GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */
  182. GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */
  183. GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */
  184. GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */
  185. GG (d, a, b, c, x[10], S22, 0x2441453); /* 22 */
  186. GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */
  187. GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */
  188. GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */
  189. GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */
  190. GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */
  191. GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */
  192. GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */
  193. GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */
  194. GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */
  195. GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */
  196. /* Round 3 */
  197. HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */
  198. HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */
  199. HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
  200. HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */
  201. HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */
  202. HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */
  203. HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */
  204. HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */
  205. HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */
  206. HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */
  207. HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */
  208. HH (b, c, d, a, x[ 6], S34, 0x4881d05); /* 44 */
  209. HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */
  210. HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
  211. HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
  212. HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */
  213. /* Round 4 */
  214. II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
  215. II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
  216. II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
  217. II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
  218. II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
  219. II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
  220. II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
  221. II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */
  222. II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */
  223. II (d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */
  224. II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */
  225. II (b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */
  226. II (a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */
  227. II (d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */
  228. II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */
  229. II (b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */
  230. state[0] += a;
  231. state[1] += b;
  232. state[2] += c;
  233. state[3] += d;
  234. }
  235. /**
  236. * Encodes input (uint32_t) into output (uint8_t). Assumes len is
  237. * a multiple of 4.
  238. */
  239. static void Encode(uint8_t *output, uint32_t *input, uint32_t len)
  240. {
  241. uint32_t i, j;
  242. for (i = 0, j = 0; j < len; i++, j += 4)
  243. {
  244. output[j] = (uint8_t)(input[i] & 0xff);
  245. output[j+1] = (uint8_t)((input[i] >> 8) & 0xff);
  246. output[j+2] = (uint8_t)((input[i] >> 16) & 0xff);
  247. output[j+3] = (uint8_t)((input[i] >> 24) & 0xff);
  248. }
  249. }
  250. /**
  251. * Decodes input (uint8_t) into output (uint32_t). Assumes len is
  252. * a multiple of 4.
  253. */
  254. static void Decode(uint32_t *output, const uint8_t *input, uint32_t len)
  255. {
  256. uint32_t i, j;
  257. for (i = 0, j = 0; j < len; i++, j += 4)
  258. output[i] = ((uint32_t)input[j]) | (((uint32_t)input[j+1]) << 8) |
  259. (((uint32_t)input[j+2]) << 16) | (((uint32_t)input[j+3]) << 24);
  260. }