You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

392 lines
11 KiB

11 years ago
  1. /*
  2. Copyright (C) 1999 Aladdin Enterprises. All rights reserved.
  3. This software is provided 'as-is', without any express or implied
  4. warranty. In no event will the authors be held liable for any damages
  5. arising from the use of this software.
  6. Permission is granted to anyone to use this software for any purpose,
  7. including commercial applications, and to alter it and redistribute it
  8. freely, subject to the following restrictions:
  9. 1. The origin of this software must not be misrepresented; you must not
  10. claim that you wrote the original software. If you use this software
  11. in a product, an acknowledgment in the product documentation would be
  12. appreciated but is not required.
  13. 2. Altered source versions must be plainly marked as such, and must not be
  14. misrepresented as being the original software.
  15. 3. This notice may not be removed or altered from any source distribution.
  16. L. Peter Deutsch
  17. ghost@aladdin.com
  18. */
  19. /*$Id: md5.c,v 1.1.1.1 2001/10/18 22:50:24 jlovell Exp $ */
  20. /*
  21. Independent implementation of MD5 (RFC 1321).
  22. This code implements the MD5 Algorithm defined in RFC 1321.
  23. It is derived directly from the text of the RFC and not from the
  24. reference implementation.
  25. The original and principal author of md5.c is L. Peter Deutsch
  26. <ghost@aladdin.com>. Other authors are noted in the change history
  27. that follows (in reverse chronological order):
  28. 1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
  29. 1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5).
  30. 1999-05-03 lpd Original version.
  31. */
  32. #include "md5.h"
  33. #include "string.h"
  34. #ifdef TEST
  35. /*
  36. * Compile with -DTEST to create a self-contained executable test program.
  37. * The test program should print out the same values as given in section
  38. * A.5 of RFC 1321, reproduced below.
  39. */
  40. main()
  41. {
  42. static const char *const test[7] = {
  43. "", /*d41d8cd98f00b204e9800998ecf8427e*/
  44. "a", /*0cc175b9c0f1b6a831c399e269772661*/
  45. "abc", /*900150983cd24fb0d6963f7d28e17f72*/
  46. "message digest", /*f96b697d7cb7938d525a2f31aaf161d0*/
  47. "abcdefghijklmnopqrstuvwxyz", /*c3fcd3d76192e4007dfb496cca67e13b*/
  48. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
  49. /*d174ab98d277d9f5a5611c2c9f419d9f*/
  50. "12345678901234567890123456789012345678901234567890123456789012345678901234567890" /*57edf4a22be3c955ac49da2e2107b67a*/
  51. };
  52. int i;
  53. for (i = 0; i < 7; ++i) {
  54. md5_state_t state;
  55. md5_byte_t digest[16];
  56. int di;
  57. md5_init(&state);
  58. md5_append(&state, (const md5_byte_t *)test[i], strlen(test[i]));
  59. md5_finish(&state, digest);
  60. printf("MD5 (\"%s\") = ", test[i]);
  61. for (di = 0; di < 16; ++di)
  62. printf("%02x", digest[di]);
  63. printf("\n");
  64. }
  65. return 0;
  66. }
  67. #endif /* TEST */
  68. /*
  69. * For reference, here is the program that computed the T values.
  70. */
  71. #if 0
  72. #include <math.h>
  73. main()
  74. {
  75. int i;
  76. for (i = 1; i <= 64; ++i) {
  77. unsigned long v = (unsigned long)(4294967296.0 * fabs(sin((double)i)));
  78. printf("#define T%d 0x%08lx\n", i, v);
  79. }
  80. return 0;
  81. }
  82. #endif
  83. /*
  84. * End of T computation program.
  85. */
  86. #define T1 0xd76aa478
  87. #define T2 0xe8c7b756
  88. #define T3 0x242070db
  89. #define T4 0xc1bdceee
  90. #define T5 0xf57c0faf
  91. #define T6 0x4787c62a
  92. #define T7 0xa8304613
  93. #define T8 0xfd469501
  94. #define T9 0x698098d8
  95. #define T10 0x8b44f7af
  96. #define T11 0xffff5bb1
  97. #define T12 0x895cd7be
  98. #define T13 0x6b901122
  99. #define T14 0xfd987193
  100. #define T15 0xa679438e
  101. #define T16 0x49b40821
  102. #define T17 0xf61e2562
  103. #define T18 0xc040b340
  104. #define T19 0x265e5a51
  105. #define T20 0xe9b6c7aa
  106. #define T21 0xd62f105d
  107. #define T22 0x02441453
  108. #define T23 0xd8a1e681
  109. #define T24 0xe7d3fbc8
  110. #define T25 0x21e1cde6
  111. #define T26 0xc33707d6
  112. #define T27 0xf4d50d87
  113. #define T28 0x455a14ed
  114. #define T29 0xa9e3e905
  115. #define T30 0xfcefa3f8
  116. #define T31 0x676f02d9
  117. #define T32 0x8d2a4c8a
  118. #define T33 0xfffa3942
  119. #define T34 0x8771f681
  120. #define T35 0x6d9d6122
  121. #define T36 0xfde5380c
  122. #define T37 0xa4beea44
  123. #define T38 0x4bdecfa9
  124. #define T39 0xf6bb4b60
  125. #define T40 0xbebfbc70
  126. #define T41 0x289b7ec6
  127. #define T42 0xeaa127fa
  128. #define T43 0xd4ef3085
  129. #define T44 0x04881d05
  130. #define T45 0xd9d4d039
  131. #define T46 0xe6db99e5
  132. #define T47 0x1fa27cf8
  133. #define T48 0xc4ac5665
  134. #define T49 0xf4292244
  135. #define T50 0x432aff97
  136. #define T51 0xab9423a7
  137. #define T52 0xfc93a039
  138. #define T53 0x655b59c3
  139. #define T54 0x8f0ccc92
  140. #define T55 0xffeff47d
  141. #define T56 0x85845dd1
  142. #define T57 0x6fa87e4f
  143. #define T58 0xfe2ce6e0
  144. #define T59 0xa3014314
  145. #define T60 0x4e0811a1
  146. #define T61 0xf7537e82
  147. #define T62 0xbd3af235
  148. #define T63 0x2ad7d2bb
  149. #define T64 0xeb86d391
  150. static void
  151. md5_process(md5_state_t *pms, const md5_byte_t *data /*[64]*/)
  152. {
  153. md5_word_t
  154. a = pms->abcd[0], b = pms->abcd[1],
  155. c = pms->abcd[2], d = pms->abcd[3];
  156. md5_word_t t;
  157. #ifndef ARCH_IS_BIG_ENDIAN
  158. # define ARCH_IS_BIG_ENDIAN 1 /* slower, default implementation */
  159. #endif
  160. #if ARCH_IS_BIG_ENDIAN
  161. /*
  162. * On big-endian machines, we must arrange the bytes in the right
  163. * order. (This also works on machines of unknown byte order.)
  164. */
  165. md5_word_t X[16];
  166. const md5_byte_t *xp = data;
  167. int i;
  168. for (i = 0; i < 16; ++i, xp += 4)
  169. X[i] = xp[0] + (xp[1] << 8) + (xp[2] << 16) + (xp[3] << 24);
  170. #else /* !ARCH_IS_BIG_ENDIAN */
  171. /*
  172. * On little-endian machines, we can process properly aligned data
  173. * without copying it.
  174. */
  175. md5_word_t xbuf[16];
  176. const md5_word_t *X;
  177. if (!((data - (const md5_byte_t *)0) & 3)) {
  178. /* data are properly aligned */
  179. X = (const md5_word_t *)data;
  180. } else {
  181. /* not aligned */
  182. memcpy(xbuf, data, 64);
  183. X = xbuf;
  184. }
  185. #endif
  186. #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32 - (n))))
  187. /* Round 1. */
  188. /* Let [abcd k s i] denote the operation
  189. a = b + ((a + F(b,c,d) + X[k] + T[i]) <<< s). */
  190. #define F(x, y, z) (((x) & (y)) | (~(x) & (z)))
  191. #define SET(a, b, c, d, k, s, Ti)\
  192. t = a + F(b,c,d) + X[k] + Ti;\
  193. a = ROTATE_LEFT(t, s) + b
  194. /* Do the following 16 operations. */
  195. SET(a, b, c, d, 0, 7, T1);
  196. SET(d, a, b, c, 1, 12, T2);
  197. SET(c, d, a, b, 2, 17, T3);
  198. SET(b, c, d, a, 3, 22, T4);
  199. SET(a, b, c, d, 4, 7, T5);
  200. SET(d, a, b, c, 5, 12, T6);
  201. SET(c, d, a, b, 6, 17, T7);
  202. SET(b, c, d, a, 7, 22, T8);
  203. SET(a, b, c, d, 8, 7, T9);
  204. SET(d, a, b, c, 9, 12, T10);
  205. SET(c, d, a, b, 10, 17, T11);
  206. SET(b, c, d, a, 11, 22, T12);
  207. SET(a, b, c, d, 12, 7, T13);
  208. SET(d, a, b, c, 13, 12, T14);
  209. SET(c, d, a, b, 14, 17, T15);
  210. SET(b, c, d, a, 15, 22, T16);
  211. #undef SET
  212. /* Round 2. */
  213. /* Let [abcd k s i] denote the operation
  214. a = b + ((a + G(b,c,d) + X[k] + T[i]) <<< s). */
  215. #define G(x, y, z) (((x) & (z)) | ((y) & ~(z)))
  216. #define SET(a, b, c, d, k, s, Ti)\
  217. t = a + G(b,c,d) + X[k] + Ti;\
  218. a = ROTATE_LEFT(t, s) + b
  219. /* Do the following 16 operations. */
  220. SET(a, b, c, d, 1, 5, T17);
  221. SET(d, a, b, c, 6, 9, T18);
  222. SET(c, d, a, b, 11, 14, T19);
  223. SET(b, c, d, a, 0, 20, T20);
  224. SET(a, b, c, d, 5, 5, T21);
  225. SET(d, a, b, c, 10, 9, T22);
  226. SET(c, d, a, b, 15, 14, T23);
  227. SET(b, c, d, a, 4, 20, T24);
  228. SET(a, b, c, d, 9, 5, T25);
  229. SET(d, a, b, c, 14, 9, T26);
  230. SET(c, d, a, b, 3, 14, T27);
  231. SET(b, c, d, a, 8, 20, T28);
  232. SET(a, b, c, d, 13, 5, T29);
  233. SET(d, a, b, c, 2, 9, T30);
  234. SET(c, d, a, b, 7, 14, T31);
  235. SET(b, c, d, a, 12, 20, T32);
  236. #undef SET
  237. /* Round 3. */
  238. /* Let [abcd k s t] denote the operation
  239. a = b + ((a + H(b,c,d) + X[k] + T[i]) <<< s). */
  240. #define H(x, y, z) ((x) ^ (y) ^ (z))
  241. #define SET(a, b, c, d, k, s, Ti)\
  242. t = a + H(b,c,d) + X[k] + Ti;\
  243. a = ROTATE_LEFT(t, s) + b
  244. /* Do the following 16 operations. */
  245. SET(a, b, c, d, 5, 4, T33);
  246. SET(d, a, b, c, 8, 11, T34);
  247. SET(c, d, a, b, 11, 16, T35);
  248. SET(b, c, d, a, 14, 23, T36);
  249. SET(a, b, c, d, 1, 4, T37);
  250. SET(d, a, b, c, 4, 11, T38);
  251. SET(c, d, a, b, 7, 16, T39);
  252. SET(b, c, d, a, 10, 23, T40);
  253. SET(a, b, c, d, 13, 4, T41);
  254. SET(d, a, b, c, 0, 11, T42);
  255. SET(c, d, a, b, 3, 16, T43);
  256. SET(b, c, d, a, 6, 23, T44);
  257. SET(a, b, c, d, 9, 4, T45);
  258. SET(d, a, b, c, 12, 11, T46);
  259. SET(c, d, a, b, 15, 16, T47);
  260. SET(b, c, d, a, 2, 23, T48);
  261. #undef SET
  262. /* Round 4. */
  263. /* Let [abcd k s t] denote the operation
  264. a = b + ((a + I(b,c,d) + X[k] + T[i]) <<< s). */
  265. #define I(x, y, z) ((y) ^ ((x) | ~(z)))
  266. #define SET(a, b, c, d, k, s, Ti)\
  267. t = a + I(b,c,d) + X[k] + Ti;\
  268. a = ROTATE_LEFT(t, s) + b
  269. /* Do the following 16 operations. */
  270. SET(a, b, c, d, 0, 6, T49);
  271. SET(d, a, b, c, 7, 10, T50);
  272. SET(c, d, a, b, 14, 15, T51);
  273. SET(b, c, d, a, 5, 21, T52);
  274. SET(a, b, c, d, 12, 6, T53);
  275. SET(d, a, b, c, 3, 10, T54);
  276. SET(c, d, a, b, 10, 15, T55);
  277. SET(b, c, d, a, 1, 21, T56);
  278. SET(a, b, c, d, 8, 6, T57);
  279. SET(d, a, b, c, 15, 10, T58);
  280. SET(c, d, a, b, 6, 15, T59);
  281. SET(b, c, d, a, 13, 21, T60);
  282. SET(a, b, c, d, 4, 6, T61);
  283. SET(d, a, b, c, 11, 10, T62);
  284. SET(c, d, a, b, 2, 15, T63);
  285. SET(b, c, d, a, 9, 21, T64);
  286. #undef SET
  287. /* Then perform the following additions. (That is increment each
  288. of the four registers by the value it had before this block
  289. was started.) */
  290. pms->abcd[0] += a;
  291. pms->abcd[1] += b;
  292. pms->abcd[2] += c;
  293. pms->abcd[3] += d;
  294. }
  295. void
  296. md5_init(md5_state_t *pms)
  297. {
  298. pms->count[0] = pms->count[1] = 0;
  299. pms->abcd[0] = 0x67452301;
  300. pms->abcd[1] = 0xefcdab89;
  301. pms->abcd[2] = 0x98badcfe;
  302. pms->abcd[3] = 0x10325476;
  303. }
  304. void
  305. md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes)
  306. {
  307. const md5_byte_t *p = data;
  308. int left = nbytes;
  309. int offset = (pms->count[0] >> 3) & 63;
  310. md5_word_t nbits = (md5_word_t)(nbytes << 3);
  311. if (nbytes <= 0)
  312. return;
  313. /* Update the message length. */
  314. pms->count[1] += nbytes >> 29;
  315. pms->count[0] += nbits;
  316. if (pms->count[0] < nbits)
  317. pms->count[1]++;
  318. /* Process an initial partial block. */
  319. if (offset) {
  320. int copy = (offset + nbytes > 64 ? 64 - offset : nbytes);
  321. memcpy(pms->buf + offset, p, copy);
  322. if (offset + copy < 64)
  323. return;
  324. p += copy;
  325. left -= copy;
  326. md5_process(pms, pms->buf);
  327. }
  328. /* Process full blocks. */
  329. for (; left >= 64; p += 64, left -= 64)
  330. md5_process(pms, p);
  331. /* Process a final partial block. */
  332. if (left)
  333. memcpy(pms->buf, p, left);
  334. }
  335. void
  336. md5_finish(md5_state_t *pms, md5_byte_t digest[16])
  337. {
  338. static const md5_byte_t pad[64] = {
  339. 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  340. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  341. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  342. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  343. };
  344. md5_byte_t data[8];
  345. int i;
  346. /* Save the length before padding. */
  347. for (i = 0; i < 8; ++i)
  348. data[i] = (md5_byte_t)(pms->count[i >> 2] >> ((i & 3) << 3));
  349. /* Pad to 56 bytes mod 64. */
  350. md5_append(pms, pad, ((55 - (pms->count[0] >> 3)) & 63) + 1);
  351. /* Append the length. */
  352. md5_append(pms, data, 8);
  353. for (i = 0; i < 16; ++i)
  354. digest[i] = (md5_byte_t)(pms->abcd[i >> 2] >> ((i & 3) << 3));
  355. }