md5.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /*
  2. * This is an OpenSSL-compatible implementation of the RSA Data Security,
  3. * Inc. MD5 Message-Digest Algorithm.
  4. *
  5. * Written by Solar Designer <solar@openwall.com> in 2001, and placed in
  6. * the public domain. There's absolutely no warranty.
  7. *
  8. * This differs from Colin Plumb's older public domain implementation in
  9. * that no 32-bit integer data type is required, there's no compile-time
  10. * endianness configuration, and the function prototypes match OpenSSL's.
  11. * The primary goals are portability and ease of use.
  12. *
  13. * This implementation is meant to be fast, but not as fast as possible.
  14. * Some known optimizations are not included to reduce source code size
  15. * and avoid compile-time configuration.
  16. *
  17. */
  18. #include <string.h>
  19. #include <stdio.h>
  20. #include "md5.h"
  21. #include "src/compat/compat.h"
  22. /*
  23. * The basic MD5 functions.
  24. *
  25. * F is optimized compared to its RFC 1321 definition just like in Colin
  26. * Plumb's implementation.
  27. */
  28. #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
  29. #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y))))
  30. #define H(x, y, z) ((x) ^ (y) ^ (z))
  31. #define I(x, y, z) ((y) ^ ((x) | ~(z)))
  32. /*
  33. * The MD5 transformation for all four rounds.
  34. */
  35. #define STEP(f, a, b, c, d, x, t, s) \
  36. (a) += f((b), (c), (d)) + (x) + (t); \
  37. (a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s)))); \
  38. (a) += (b);
  39. /*
  40. * SET reads 4 input bytes in little-endian byte order and stores them
  41. * in a properly aligned word in host byte order.
  42. *
  43. * The check for little-endian architectures which tolerate unaligned
  44. * memory accesses is just an optimization. Nothing will break if it
  45. * doesn't work.
  46. */
  47. #if defined(__i386__) || defined(__vax__)
  48. #define SET(n) \
  49. (*(MD5_u32plus *)&ptr[(n) * 4])
  50. #define GET(n) \
  51. SET(n)
  52. #else
  53. #define SET(n) \
  54. (ctx->block[(n)] = \
  55. (MD5_u32plus)ptr[(n) * 4] | \
  56. ((MD5_u32plus)ptr[(n) * 4 + 1] << 8) | \
  57. ((MD5_u32plus)ptr[(n) * 4 + 2] << 16) | \
  58. ((MD5_u32plus)ptr[(n) * 4 + 3] << 24))
  59. #define GET(n) \
  60. (ctx->block[(n)])
  61. #endif
  62. /*
  63. * This processes one or more 64-byte data blocks, but does NOT update
  64. * the bit counters. There're no alignment requirements.
  65. */
  66. static const void *body(MD5_CTX *ctx, const void *data, unsigned long size)
  67. {
  68. const unsigned char *ptr;
  69. MD5_u32plus a, b, c, d;
  70. MD5_u32plus saved_a, saved_b, saved_c, saved_d;
  71. ptr = (const unsigned char *) data;
  72. a = ctx->a;
  73. b = ctx->b;
  74. c = ctx->c;
  75. d = ctx->d;
  76. do {
  77. saved_a = a;
  78. saved_b = b;
  79. saved_c = c;
  80. saved_d = d;
  81. /* Round 1 */
  82. STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
  83. STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
  84. STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
  85. STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
  86. STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
  87. STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
  88. STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
  89. STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
  90. STEP(F, a, b, c, d, SET(8), 0x698098d8, 7)
  91. STEP(F, d, a, b, c, SET(9), 0x8b44f7af, 12)
  92. STEP(F, c, d, a, b, SET(10), 0xffff5bb1, 17)
  93. STEP(F, b, c, d, a, SET(11), 0x895cd7be, 22)
  94. STEP(F, a, b, c, d, SET(12), 0x6b901122, 7)
  95. STEP(F, d, a, b, c, SET(13), 0xfd987193, 12)
  96. STEP(F, c, d, a, b, SET(14), 0xa679438e, 17)
  97. STEP(F, b, c, d, a, SET(15), 0x49b40821, 22)
  98. /* Round 2 */
  99. STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
  100. STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
  101. STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
  102. STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
  103. STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
  104. STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
  105. STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
  106. STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20)
  107. STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5)
  108. STEP(G, d, a, b, c, GET(14), 0xc33707d6, 9)
  109. STEP(G, c, d, a, b, GET(3), 0xf4d50d87, 14)
  110. STEP(G, b, c, d, a, GET(8), 0x455a14ed, 20)
  111. STEP(G, a, b, c, d, GET(13), 0xa9e3e905, 5)
  112. STEP(G, d, a, b, c, GET(2), 0xfcefa3f8, 9)
  113. STEP(G, c, d, a, b, GET(7), 0x676f02d9, 14)
  114. STEP(G, b, c, d, a, GET(12), 0x8d2a4c8a, 20)
  115. /* Round 3 */
  116. STEP(H, a, b, c, d, GET(5), 0xfffa3942, 4)
  117. STEP(H, d, a, b, c, GET(8), 0x8771f681, 11)
  118. STEP(H, c, d, a, b, GET(11), 0x6d9d6122, 16)
  119. STEP(H, b, c, d, a, GET(14), 0xfde5380c, 23)
  120. STEP(H, a, b, c, d, GET(1), 0xa4beea44, 4)
  121. STEP(H, d, a, b, c, GET(4), 0x4bdecfa9, 11)
  122. STEP(H, c, d, a, b, GET(7), 0xf6bb4b60, 16)
  123. STEP(H, b, c, d, a, GET(10), 0xbebfbc70, 23)
  124. STEP(H, a, b, c, d, GET(13), 0x289b7ec6, 4)
  125. STEP(H, d, a, b, c, GET(0), 0xeaa127fa, 11)
  126. STEP(H, c, d, a, b, GET(3), 0xd4ef3085, 16)
  127. STEP(H, b, c, d, a, GET(6), 0x04881d05, 23)
  128. STEP(H, a, b, c, d, GET(9), 0xd9d4d039, 4)
  129. STEP(H, d, a, b, c, GET(12), 0xe6db99e5, 11)
  130. STEP(H, c, d, a, b, GET(15), 0x1fa27cf8, 16)
  131. STEP(H, b, c, d, a, GET(2), 0xc4ac5665, 23)
  132. /* Round 4 */
  133. STEP(I, a, b, c, d, GET(0), 0xf4292244, 6)
  134. STEP(I, d, a, b, c, GET(7), 0x432aff97, 10)
  135. STEP(I, c, d, a, b, GET(14), 0xab9423a7, 15)
  136. STEP(I, b, c, d, a, GET(5), 0xfc93a039, 21)
  137. STEP(I, a, b, c, d, GET(12), 0x655b59c3, 6)
  138. STEP(I, d, a, b, c, GET(3), 0x8f0ccc92, 10)
  139. STEP(I, c, d, a, b, GET(10), 0xffeff47d, 15)
  140. STEP(I, b, c, d, a, GET(1), 0x85845dd1, 21)
  141. STEP(I, a, b, c, d, GET(8), 0x6fa87e4f, 6)
  142. STEP(I, d, a, b, c, GET(15), 0xfe2ce6e0, 10)
  143. STEP(I, c, d, a, b, GET(6), 0xa3014314, 15)
  144. STEP(I, b, c, d, a, GET(13), 0x4e0811a1, 21)
  145. STEP(I, a, b, c, d, GET(4), 0xf7537e82, 6)
  146. STEP(I, d, a, b, c, GET(11), 0xbd3af235, 10)
  147. STEP(I, c, d, a, b, GET(2), 0x2ad7d2bb, 15)
  148. STEP(I, b, c, d, a, GET(9), 0xeb86d391, 21)
  149. a += saved_a;
  150. b += saved_b;
  151. c += saved_c;
  152. d += saved_d;
  153. ptr += 64;
  154. } while (size -= 64);
  155. ctx->a = a;
  156. ctx->b = b;
  157. ctx->c = c;
  158. ctx->d = d;
  159. return ptr;
  160. }
  161. void MD5_Init(MD5_CTX *ctx)
  162. {
  163. ctx->a = 0x67452301;
  164. ctx->b = 0xefcdab89;
  165. ctx->c = 0x98badcfe;
  166. ctx->d = 0x10325476;
  167. ctx->lo = 0;
  168. ctx->hi = 0;
  169. }
  170. void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size)
  171. {
  172. MD5_u32plus saved_lo;
  173. unsigned long used, freeb;
  174. saved_lo = ctx->lo;
  175. if ((ctx->lo = (saved_lo + size) & 0x1fffffff) < saved_lo) ctx->hi++;
  176. ctx->hi += size >> 29;
  177. used = saved_lo & 0x3f;
  178. if (used) {
  179. freeb = 64 - used;
  180. if (size < freeb) {
  181. egg_memcpy(&ctx->buffer[used], data, size);
  182. return;
  183. }
  184. egg_memcpy(&ctx->buffer[used], data, freeb);
  185. (unsigned char *)data += freeb;
  186. size -= freeb;
  187. body(ctx, ctx->buffer, 64);
  188. }
  189. if (size >= 64) {
  190. data = body(ctx, data, size & ~(unsigned long)0x3f);
  191. size &= 0x3f;
  192. }
  193. egg_memcpy(ctx->buffer, data, size);
  194. }
  195. void MD5_Final(unsigned char *result, MD5_CTX *ctx)
  196. {
  197. unsigned long used, freeb;
  198. used = ctx->lo & 0x3f;
  199. ctx->buffer[used++] = 0x80;
  200. freeb = 64 - used;
  201. if (freeb < 8) {
  202. egg_memset(&ctx->buffer[used], 0, freeb);
  203. body(ctx, ctx->buffer, 64);
  204. used = 0;
  205. freeb = 64;
  206. }
  207. egg_memset(&ctx->buffer[used], 0, freeb - 8);
  208. ctx->lo <<= 3;
  209. ctx->buffer[56] = ctx->lo;
  210. ctx->buffer[57] = ctx->lo >> 8;
  211. ctx->buffer[58] = ctx->lo >> 16;
  212. ctx->buffer[59] = ctx->lo >> 24;
  213. ctx->buffer[60] = ctx->hi;
  214. ctx->buffer[61] = ctx->hi >> 8;
  215. ctx->buffer[62] = ctx->hi >> 16;
  216. ctx->buffer[63] = ctx->hi >> 24;
  217. body(ctx, ctx->buffer, 64);
  218. result[0] = ctx->a;
  219. result[1] = ctx->a >> 8;
  220. result[2] = ctx->a >> 16;
  221. result[3] = ctx->a >> 24;
  222. result[4] = ctx->b;
  223. result[5] = ctx->b >> 8;
  224. result[6] = ctx->b >> 16;
  225. result[7] = ctx->b >> 24;
  226. result[8] = ctx->c;
  227. result[9] = ctx->c >> 8;
  228. result[10] = ctx->c >> 16;
  229. result[11] = ctx->c >> 24;
  230. result[12] = ctx->d;
  231. result[13] = ctx->d >> 8;
  232. result[14] = ctx->d >> 16;
  233. result[15] = ctx->d >> 24;
  234. egg_memset(ctx, 0, sizeof(ctx));
  235. }