md5.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /*
  2. * RFC 1321 compliant MD5 implementation
  3. *
  4. * Copyright (C) 2001-2003 Christophe Devine
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program; if not, visit the http://fsf.org website.
  18. */
  19. #include "rsync.h"
  20. void md5_begin(md_context *ctx)
  21. {
  22. ctx->A = 0x67452301;
  23. ctx->B = 0xEFCDAB89;
  24. ctx->C = 0x98BADCFE;
  25. ctx->D = 0x10325476;
  26. ctx->totalN = ctx->totalN2 = 0;
  27. }
  28. static void md5_process(md_context *ctx, const uchar data[CSUM_CHUNK])
  29. {
  30. uint32 X[16], A, B, C, D;
  31. A = ctx->A;
  32. B = ctx->B;
  33. C = ctx->C;
  34. D = ctx->D;
  35. X[0] = IVALu(data, 0);
  36. X[1] = IVALu(data, 4);
  37. X[2] = IVALu(data, 8);
  38. X[3] = IVALu(data, 12);
  39. X[4] = IVALu(data, 16);
  40. X[5] = IVALu(data, 20);
  41. X[6] = IVALu(data, 24);
  42. X[7] = IVALu(data, 28);
  43. X[8] = IVALu(data, 32);
  44. X[9] = IVALu(data, 36);
  45. X[10] = IVALu(data, 40);
  46. X[11] = IVALu(data, 44);
  47. X[12] = IVALu(data, 48);
  48. X[13] = IVALu(data, 52);
  49. X[14] = IVALu(data, 56);
  50. X[15] = IVALu(data, 60);
  51. #define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n)))
  52. #define P(a,b,c,d,k,s,t) a += F(b,c,d) + X[k] + t, a = S(a,s) + b
  53. #define F(x,y,z) (z ^ (x & (y ^ z)))
  54. P(A, B, C, D, 0, 7, 0xD76AA478);
  55. P(D, A, B, C, 1, 12, 0xE8C7B756);
  56. P(C, D, A, B, 2, 17, 0x242070DB);
  57. P(B, C, D, A, 3, 22, 0xC1BDCEEE);
  58. P(A, B, C, D, 4, 7, 0xF57C0FAF);
  59. P(D, A, B, C, 5, 12, 0x4787C62A);
  60. P(C, D, A, B, 6, 17, 0xA8304613);
  61. P(B, C, D, A, 7, 22, 0xFD469501);
  62. P(A, B, C, D, 8, 7, 0x698098D8);
  63. P(D, A, B, C, 9, 12, 0x8B44F7AF);
  64. P(C, D, A, B, 10, 17, 0xFFFF5BB1);
  65. P(B, C, D, A, 11, 22, 0x895CD7BE);
  66. P(A, B, C, D, 12, 7, 0x6B901122);
  67. P(D, A, B, C, 13, 12, 0xFD987193);
  68. P(C, D, A, B, 14, 17, 0xA679438E);
  69. P(B, C, D, A, 15, 22, 0x49B40821);
  70. #undef F
  71. #define F(x,y,z) (y ^ (z & (x ^ y)))
  72. P(A, B, C, D, 1, 5, 0xF61E2562);
  73. P(D, A, B, C, 6, 9, 0xC040B340);
  74. P(C, D, A, B, 11, 14, 0x265E5A51);
  75. P(B, C, D, A, 0, 20, 0xE9B6C7AA);
  76. P(A, B, C, D, 5, 5, 0xD62F105D);
  77. P(D, A, B, C, 10, 9, 0x02441453);
  78. P(C, D, A, B, 15, 14, 0xD8A1E681);
  79. P(B, C, D, A, 4, 20, 0xE7D3FBC8);
  80. P(A, B, C, D, 9, 5, 0x21E1CDE6);
  81. P(D, A, B, C, 14, 9, 0xC33707D6);
  82. P(C, D, A, B, 3, 14, 0xF4D50D87);
  83. P(B, C, D, A, 8, 20, 0x455A14ED);
  84. P(A, B, C, D, 13, 5, 0xA9E3E905);
  85. P(D, A, B, C, 2, 9, 0xFCEFA3F8);
  86. P(C, D, A, B, 7, 14, 0x676F02D9);
  87. P(B, C, D, A, 12, 20, 0x8D2A4C8A);
  88. #undef F
  89. #define F(x,y,z) (x ^ y ^ z)
  90. P(A, B, C, D, 5, 4, 0xFFFA3942);
  91. P(D, A, B, C, 8, 11, 0x8771F681);
  92. P(C, D, A, B, 11, 16, 0x6D9D6122);
  93. P(B, C, D, A, 14, 23, 0xFDE5380C);
  94. P(A, B, C, D, 1, 4, 0xA4BEEA44);
  95. P(D, A, B, C, 4, 11, 0x4BDECFA9);
  96. P(C, D, A, B, 7, 16, 0xF6BB4B60);
  97. P(B, C, D, A, 10, 23, 0xBEBFBC70);
  98. P(A, B, C, D, 13, 4, 0x289B7EC6);
  99. P(D, A, B, C, 0, 11, 0xEAA127FA);
  100. P(C, D, A, B, 3, 16, 0xD4EF3085);
  101. P(B, C, D, A, 6, 23, 0x04881D05);
  102. P(A, B, C, D, 9, 4, 0xD9D4D039);
  103. P(D, A, B, C, 12, 11, 0xE6DB99E5);
  104. P(C, D, A, B, 15, 16, 0x1FA27CF8);
  105. P(B, C, D, A, 2, 23, 0xC4AC5665);
  106. #undef F
  107. #define F(x,y,z) (y ^ (x | ~z))
  108. P(A, B, C, D, 0, 6, 0xF4292244);
  109. P(D, A, B, C, 7, 10, 0x432AFF97);
  110. P(C, D, A, B, 14, 15, 0xAB9423A7);
  111. P(B, C, D, A, 5, 21, 0xFC93A039);
  112. P(A, B, C, D, 12, 6, 0x655B59C3);
  113. P(D, A, B, C, 3, 10, 0x8F0CCC92);
  114. P(C, D, A, B, 10, 15, 0xFFEFF47D);
  115. P(B, C, D, A, 1, 21, 0x85845DD1);
  116. P(A, B, C, D, 8, 6, 0x6FA87E4F);
  117. P(D, A, B, C, 15, 10, 0xFE2CE6E0);
  118. P(C, D, A, B, 6, 15, 0xA3014314);
  119. P(B, C, D, A, 13, 21, 0x4E0811A1);
  120. P(A, B, C, D, 4, 6, 0xF7537E82);
  121. P(D, A, B, C, 11, 10, 0xBD3AF235);
  122. P(C, D, A, B, 2, 15, 0x2AD7D2BB);
  123. P(B, C, D, A, 9, 21, 0xEB86D391);
  124. #undef F
  125. ctx->A += A;
  126. ctx->B += B;
  127. ctx->C += C;
  128. ctx->D += D;
  129. }
  130. void md5_update(md_context *ctx, const uchar *input, uint32 length)
  131. {
  132. uint32 left, fill;
  133. if (!length)
  134. return;
  135. left = ctx->totalN & 0x3F;
  136. fill = CSUM_CHUNK - left;
  137. ctx->totalN += length;
  138. ctx->totalN &= 0xFFFFFFFF;
  139. if (ctx->totalN < length)
  140. ctx->totalN2++;
  141. if (left && length >= fill) {
  142. memcpy(ctx->buffer + left, input, fill);
  143. md5_process(ctx, ctx->buffer);
  144. length -= fill;
  145. input += fill;
  146. left = 0;
  147. }
  148. while (length >= CSUM_CHUNK) {
  149. md5_process(ctx, input);
  150. length -= CSUM_CHUNK;
  151. input += CSUM_CHUNK;
  152. }
  153. if (length)
  154. memcpy(ctx->buffer + left, input, length);
  155. }
  156. static uchar md5_padding[CSUM_CHUNK] = { 0x80 };
  157. void md5_result(md_context *ctx, uchar digest[MD5_DIGEST_LEN])
  158. {
  159. uint32 last, padn;
  160. uint32 high, low;
  161. uchar msglen[8];
  162. high = (ctx->totalN >> 29)
  163. | (ctx->totalN2 << 3);
  164. low = (ctx->totalN << 3);
  165. SIVALu(msglen, 0, low);
  166. SIVALu(msglen, 4, high);
  167. last = ctx->totalN & 0x3F;
  168. padn = last < 56 ? 56 - last : 120 - last;
  169. md5_update(ctx, md5_padding, padn);
  170. md5_update(ctx, msglen, 8);
  171. SIVALu(digest, 0, ctx->A);
  172. SIVALu(digest, 4, ctx->B);
  173. SIVALu(digest, 8, ctx->C);
  174. SIVALu(digest, 12, ctx->D);
  175. }
  176. void get_md5(uchar *out, const uchar *input, int n)
  177. {
  178. md_context ctx;
  179. md5_begin(&ctx);
  180. md5_update(&ctx, input, n);
  181. md5_result(&ctx, out);
  182. }
  183. #ifdef TEST_MD5
  184. #include <stdlib.h>
  185. #include <stdio.h>
  186. /*
  187. * those are the standard RFC 1321 test vectors
  188. */
  189. static struct {
  190. char *str, *md5;
  191. } tests[] = {
  192. { "",
  193. "d41d8cd98f00b204e9800998ecf8427e" },
  194. { "a",
  195. "0cc175b9c0f1b6a831c399e269772661" },
  196. { "abc",
  197. "900150983cd24fb0d6963f7d28e17f72" },
  198. { "message digest",
  199. "f96b697d7cb7938d525a2f31aaf161d0" },
  200. { "abcdefghijklmnopqrstuvwxyz",
  201. "c3fcd3d76192e4007dfb496cca67e13b" },
  202. { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
  203. "d174ab98d277d9f5a5611c2c9f419d9f" },
  204. { "12345678901234567890123456789012345678901234567890123456789012345678901234567890",
  205. "57edf4a22be3c955ac49da2e2107b67a" },
  206. { NULL, NULL }
  207. };
  208. int main(int argc, char *argv[])
  209. {
  210. FILE *f;
  211. int i, j;
  212. char output[33];
  213. md_context ctx;
  214. uchar buf[1000];
  215. uchar md5sum[MD5_DIGEST_LEN];
  216. if (argc < 2) {
  217. printf("\nMD5 Validation Tests:\n\n");
  218. for (i = 0; tests[i].str; i++) {
  219. char *str = tests[i].str;
  220. char *chk = tests[i].md5;
  221. printf(" Test %d ", i + 1);
  222. get_md5(md5sum, str, strlen(str));
  223. for (j = 0; j < MD5_DIGEST_LEN; j++)
  224. sprintf(output + j * 2, "%02x", md5sum[j]);
  225. if (memcmp(output, chk, 32)) {
  226. printf("failed!\n");
  227. return 1;
  228. }
  229. printf("passed.\n");
  230. }
  231. printf("\n");
  232. return 0;
  233. }
  234. while (--argc) {
  235. if (!(f = fopen(*++argv, "rb"))) {
  236. perror("fopen");
  237. return 1;
  238. }
  239. md5_begin(&ctx);
  240. while ((i = fread(buf, 1, sizeof buf, f)) > 0)
  241. md5_update(&ctx, buf, i);
  242. md5_result(&ctx, md5sum);
  243. for (j = 0; j < MD5_DIGEST_LEN; j++)
  244. printf("%02x", md5sum[j]);
  245. printf(" %s\n", *argv);
  246. }
  247. return 0;
  248. }
  249. #endif