md5.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:12k
源码类别:

模拟服务器

开发平台:

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