md5.c
上传用户:jhonsonho
上传日期:2021-11-15
资源大小:15k
文件大小:11k
源码类别:

CA认证

开发平台:

Visual C++

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