md5.cpp
上传用户:xiuanze55
上传日期:2017-08-03
资源大小:1080k
文件大小:9k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. /////////////////////////////////////////////////////////////////////////
  2. // MD5.cpp
  3. // Implementation file for MD5 class
  4. //
  5. // This C++ Class implementation of the original RSA Data Security, Inc.
  6. // MD5 Message-Digest Algorithm is copyright (c) 2002, Gary McNickle.
  7. // All rights reserved.  This software is a derivative of the "RSA Data
  8. //  Security, Inc. MD5 Message-Digest Algorithm"
  9. //
  10. // You may use this software free of any charge, but without any
  11. // warranty or implied warranty, provided that you follow the terms
  12. // of the original RSA copyright, listed below.
  13. //
  14. // Original RSA Data Security, Inc. Copyright notice
  15. /////////////////////////////////////////////////////////////////////////
  16. //
  17. // Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
  18. // rights reserved.
  19. //
  20. // License to copy and use this software is granted provided that it
  21. // is identified as the "RSA Data Security, Inc. MD5 Message-Digest
  22. // Algorithm" in all material mentioning or referencing this software
  23. // or this function.
  24. // License is also granted to make and use derivative works provided
  25. // that such works are identified as "derived from the RSA Data
  26. // Security, Inc. MD5 Message-Digest Algorithm" in all material
  27. // mentioning or referencing the derived work.
  28. // RSA Data Security, Inc. makes no representations concerning either
  29. // the merchantability of this software or the suitability of this
  30. // software for any particular purpose. It is provided "as is"
  31. // without express or implied warranty of any kind.
  32. // These notices must be retained in any copies of any part of this
  33. // documentation and/or software.
  34. /////////////////////////////////////////////////////////////////////////
  35. #include "stdafx.h"
  36. #include <assert.h>
  37. #include <memory.h>
  38. #include <stdio.h>
  39. #include <string.h>
  40. #include "md5.h"
  41. static unsigned char PADDING[64] =
  42. {
  43.   0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  44.   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  45.   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  46. };
  47. #define S11 7
  48. #define S12 12
  49. #define S13 17
  50. #define S14 22
  51. #define S21 5
  52. #define S22 9
  53. #define S23 14
  54. #define S24 20
  55. #define S31 4
  56. #define S32 11
  57. #define S33 16
  58. #define S34 23
  59. #define S41 6
  60. #define S42 10
  61. #define S43 15
  62. #define S44 21
  63. // PrintMD5: Converts a completed md5 digest into a char* string.
  64. char* PrintMD5(uchar md5Digest[16])
  65. {
  66. char chBuffer[256];
  67. char chEach[10];
  68. int nCount;
  69. memset(chBuffer,0,256);
  70. memset(chEach, 0, 10);
  71. for (nCount = 0; nCount < 16; nCount++)
  72. {
  73. sprintf(chEach, "%02x", md5Digest[nCount]);
  74. strncat(chBuffer, chEach, sizeof(chEach));
  75. }
  76. return strdup(chBuffer);
  77. }
  78. // MD5String: Performs the MD5 algorithm on a char* string, returning
  79. // the results as a char*.
  80. char* MD5String(char* szString)
  81. {
  82. int nLen = strlen(szString);
  83. md5 alg;
  84. alg.Update((unsigned char*)szString, (unsigned int)nLen);
  85. alg.Finalize();
  86. return PrintMD5(alg.Digest());
  87. }
  88. // MD5File: Performs the MD5 algorithm on a file (binar or text),
  89. // returning the results as a char*.  Returns NULL if it fails.
  90. char* MD5File(char* szFilename)
  91. {
  92. FILE* file;
  93. md5 alg;
  94. int nLen;
  95. unsigned char chBuffer[1024];
  96. try
  97. {
  98. memset(chBuffer, 0, 1024);
  99. if ((file = fopen (szFilename, "rb")) != NULL)
  100. {
  101. while (nLen = fread (chBuffer, 1, 1024, file))
  102. alg.Update(chBuffer, nLen);
  103. alg.Finalize();
  104. fclose (file);
  105. return PrintMD5(alg.Digest());
  106. }
  107. }
  108. catch(...)
  109. {
  110. }
  111. return NULL; // failed
  112. }
  113. // md5::Init
  114. // Initializes a new context.
  115. void md5::Init()
  116. {
  117. memset(m_Count, 0, 2 * sizeof(uint4));
  118. m_State[0] = 0x67452301;
  119. m_State[1] = 0xefcdab89;
  120. m_State[2] = 0x98badcfe;
  121. m_State[3] = 0x10325476;
  122. }
  123. // md5::Update
  124. // MD5 block update operation. Continues an MD5 message-digest
  125. // operation, processing another message block, and updating the
  126. // context.
  127. void md5::Update(uchar* chInput, uint4 nInputLen)
  128. {
  129. uint4 i, index, partLen;
  130. // Compute number of bytes mod 64
  131. index = (unsigned int)((m_Count[0] >> 3) & 0x3F);
  132. // Update number of bits
  133. if ((m_Count[0] += (nInputLen << 3)) < (nInputLen << 3))
  134. m_Count[1]++;
  135. m_Count[1] += (nInputLen >> 29);
  136. partLen = 64 - index;
  137. // Transform as many times as possible.
  138. if (nInputLen >= partLen)
  139. {
  140. memcpy( &m_Buffer[index], chInput, partLen );
  141. Transform(m_Buffer);
  142. for (i = partLen; i + 63 < nInputLen; i += 64)
  143. Transform(&chInput[i]);
  144. index = 0;
  145. }
  146. else
  147. i = 0;
  148.   // Buffer remaining input
  149.   memcpy( &m_Buffer[index], &chInput[i], nInputLen-i );
  150. }
  151. // md5::Finalize
  152. // MD5 finalization. Ends an MD5 message-digest operation, writing
  153. // the message digest and zeroizing the context.
  154. void md5::Finalize()
  155. {
  156. uchar bits[8];
  157. uint4 index, padLen;
  158. // Save number of bits
  159. Encode (bits, m_Count, 8);
  160. // Pad out to 56 mod 64
  161. index = (unsigned int)((m_Count[0] >> 3) & 0x3f);
  162. padLen = (index < 56) ? (56 - index) : (120 - index);
  163. Update(PADDING, padLen);
  164. // Append length (before padding)
  165. Update (bits, 8);
  166. // Store state in digest
  167. Encode (m_Digest, m_State, 16);
  168. memset(m_Count, 0, 2 * sizeof(uint4));
  169. memset(m_State, 0, 4 * sizeof(uint4));
  170. memset(m_Buffer,0, 64 * sizeof(uchar));
  171. }
  172. // md5::Transform
  173. // MD5 basic transformation. Transforms state based on block.
  174. void md5::Transform (uchar* block)
  175. {
  176.   uint4 a = m_State[0], b = m_State[1], c = m_State[2], d = m_State[3], x[16];
  177.   Decode (x, block, 64);
  178.   // Round 1
  179.   FF (a, b, c, d, x[ 0], S11, 0xd76aa478);
  180.   FF (d, a, b, c, x[ 1], S12, 0xe8c7b756);
  181.   FF (c, d, a, b, x[ 2], S13, 0x242070db);
  182.   FF (b, c, d, a, x[ 3], S14, 0xc1bdceee);
  183.   FF (a, b, c, d, x[ 4], S11, 0xf57c0faf);
  184.   FF (d, a, b, c, x[ 5], S12, 0x4787c62a);
  185.   FF (c, d, a, b, x[ 6], S13, 0xa8304613);
  186.   FF (b, c, d, a, x[ 7], S14, 0xfd469501);
  187.   FF (a, b, c, d, x[ 8], S11, 0x698098d8);
  188.   FF (d, a, b, c, x[ 9], S12, 0x8b44f7af);
  189.   FF (c, d, a, b, x[10], S13, 0xffff5bb1);
  190.   FF (b, c, d, a, x[11], S14, 0x895cd7be);
  191.   FF (a, b, c, d, x[12], S11, 0x6b901122);
  192.   FF (d, a, b, c, x[13], S12, 0xfd987193);
  193.   FF (c, d, a, b, x[14], S13, 0xa679438e);
  194.   FF (b, c, d, a, x[15], S14, 0x49b40821);
  195.  // Round 2
  196.   GG (a, b, c, d, x[ 1], S21, 0xf61e2562);
  197.   GG (d, a, b, c, x[ 6], S22, 0xc040b340);
  198.   GG (c, d, a, b, x[11], S23, 0x265e5a51);
  199.   GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa);
  200.   GG (a, b, c, d, x[ 5], S21, 0xd62f105d);
  201.   GG (d, a, b, c, x[10], S22,  0x2441453);
  202.   GG (c, d, a, b, x[15], S23, 0xd8a1e681);
  203.   GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8);
  204.   GG (a, b, c, d, x[ 9], S21, 0x21e1cde6);
  205.   GG (d, a, b, c, x[14], S22, 0xc33707d6);
  206.   GG (c, d, a, b, x[ 3], S23, 0xf4d50d87);
  207.   GG (b, c, d, a, x[ 8], S24, 0x455a14ed);
  208.   GG (a, b, c, d, x[13], S21, 0xa9e3e905);
  209.   GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8);
  210.   GG (c, d, a, b, x[ 7], S23, 0x676f02d9);
  211.   GG (b, c, d, a, x[12], S24, 0x8d2a4c8a);
  212.   // Round 3
  213.   HH (a, b, c, d, x[ 5], S31, 0xfffa3942);
  214.   HH (d, a, b, c, x[ 8], S32, 0x8771f681);
  215.   HH (c, d, a, b, x[11], S33, 0x6d9d6122);
  216.   HH (b, c, d, a, x[14], S34, 0xfde5380c);
  217.   HH (a, b, c, d, x[ 1], S31, 0xa4beea44);
  218.   HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9);
  219.   HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60);
  220.   HH (b, c, d, a, x[10], S34, 0xbebfbc70);
  221.   HH (a, b, c, d, x[13], S31, 0x289b7ec6);
  222.   HH (d, a, b, c, x[ 0], S32, 0xeaa127fa);
  223.   HH (c, d, a, b, x[ 3], S33, 0xd4ef3085);
  224.   HH (b, c, d, a, x[ 6], S34,  0x4881d05);
  225.   HH (a, b, c, d, x[ 9], S31, 0xd9d4d039);
  226.   HH (d, a, b, c, x[12], S32, 0xe6db99e5);
  227.   HH (c, d, a, b, x[15], S33, 0x1fa27cf8);
  228.   HH (b, c, d, a, x[ 2], S34, 0xc4ac5665);
  229.   // Round 4
  230.   II (a, b, c, d, x[ 0], S41, 0xf4292244);
  231.   II (d, a, b, c, x[ 7], S42, 0x432aff97);
  232.   II (c, d, a, b, x[14], S43, 0xab9423a7);
  233.   II (b, c, d, a, x[ 5], S44, 0xfc93a039);
  234.   II (a, b, c, d, x[12], S41, 0x655b59c3);
  235.   II (d, a, b, c, x[ 3], S42, 0x8f0ccc92);
  236.   II (c, d, a, b, x[10], S43, 0xffeff47d);
  237.   II (b, c, d, a, x[ 1], S44, 0x85845dd1);
  238.   II (a, b, c, d, x[ 8], S41, 0x6fa87e4f);
  239.   II (d, a, b, c, x[15], S42, 0xfe2ce6e0);
  240.   II (c, d, a, b, x[ 6], S43, 0xa3014314);
  241.   II (b, c, d, a, x[13], S44, 0x4e0811a1);
  242.   II (a, b, c, d, x[ 4], S41, 0xf7537e82);
  243.   II (d, a, b, c, x[11], S42, 0xbd3af235);
  244.   II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb);
  245.   II (b, c, d, a, x[ 9], S44, 0xeb86d391);
  246.   m_State[0] += a;
  247.   m_State[1] += b;
  248.   m_State[2] += c;
  249.   m_State[3] += d;
  250.   memset(x, 0, sizeof(x));
  251. }
  252. // md5::Encode
  253. // Encodes input (uint4) into output (uchar). Assumes nLength is
  254. // a multiple of 4.
  255. void md5::Encode(uchar* dest, uint4* src, uint4 nLength)
  256. {
  257. uint4 i, j;
  258. assert(nLength % 4 == 0);
  259. for (i = 0, j = 0; j < nLength; i++, j += 4)
  260. {
  261. dest[j] = (uchar)(src[i] & 0xff);
  262. dest[j+1] = (uchar)((src[i] >> 8) & 0xff);
  263. dest[j+2] = (uchar)((src[i] >> 16) & 0xff);
  264. dest[j+3] = (uchar)((src[i] >> 24) & 0xff);
  265. }
  266. }
  267. // md5::Decode
  268. // Decodes input (uchar) into output (uint4). Assumes nLength is
  269. // a multiple of 4.
  270. void md5::Decode(uint4* dest, uchar* src, uint4 nLength)
  271. {
  272. uint4 i, j;
  273. assert(nLength % 4 == 0);
  274. for (i = 0, j = 0; j < nLength; i++, j += 4)
  275. {
  276. dest[i] = ((uint4)src[j]) | (((uint4)src[j+1])<<8) |
  277.       (((uint4)src[j+2])<<16) | (((uint4)src[j+3])<<24);
  278. }
  279. }