歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux編程 >> Linux編程 >> MD5的C源碼

MD5的C源碼

日期:2017/3/1 10:46:35   编辑:Linux編程

關於MD5的C++源碼,請參考:MD5的C++源碼 http://www.linuxidc.com/Linux/2011-12/49784.htm

md5c.h:

  1. /* POINTER defines a generic pointer type */
  2. typedef unsigned char * POINTER;
  3. /* UINT2 defines a two byte word */
  4. //typedef unsigned short int UINT2;
  5. /* UINT4 defines a four byte word */
  6. typedef unsigned long int UINT4;
  7. /* MD5 context. */
  8. typedef struct {
  9. UINT4 state[4]; /* state (ABCD) */
  10. UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
  11. unsigned char buffer[64]; /* input buffer */
  12. } MD5_CTX;
  13. void MD5Init (MD5_CTX *context);
  14. void MD5Update (MD5_CTX *context, unsigned char *input, unsigned int inputLen);
  15. void MD5UpdaterString(MD5_CTX *context,const char *string);
  16. int MD5FileUpdateFile (MD5_CTX *context,char *filename);
  17. void MD5Final (unsigned char digest[16], MD5_CTX *context);
  18. void MDString (char *string,unsigned char digest[16]);
  19. int MD5File (char *filename,unsigned char digest[16]);
md5c.c:
  1. /* MD5C.C - RSA Data Security, Inc., MD5 message-digest algorithm
  2. */
  3. /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
  4. rights reserved.
  5. License to copy and use this software is granted provided that it
  6. is identified as the "RSA Data Security, Inc. MD5 Message-Digest
  7. Algorithm" in all material mentioning or referencing this software
  8. or this function.
  9. License is also granted to make and use derivative works provided
  10. that such works are identified as "derived from the RSA Data
  11. Security, Inc. MD5 Message-Digest Algorithm" in all material
  12. mentioning or referencing the derived work.
  13. RSA Data Security, Inc. makes no representations concerning either
  14. the merchantability of this software or the suitability of this
  15. software for any particular purpose. It is provided "as is"
  16. without express or implied warranty of any kind.
  17. These notices must be retained in any copies of any part of this
  18. documentation and/or software.
  19. */
  20. #include "md5c.h"
  21. #include <string.h>
  22. #include <stdio.h>
  23. /* Constants for MD5Transform routine.
  24. */
  25. #define S11 7
  26. #define S12 12
  27. #define S13 17
  28. #define S14 22
  29. #define S21 5
  30. #define S22 9
  31. #define S23 14
  32. #define S24 20
  33. #define S31 4
  34. #define S32 11
  35. #define S33 16
  36. #define S34 23
  37. #define S41 6
  38. #define S42 10
  39. #define S43 15
  40. #define S44 21
  41. static void MD5_memcpy (POINTER output, POINTER input, unsigned int len);
  42. static void MD5Transform (UINT4 state[4], unsigned char block[64]);
  43. static void Encode (unsigned char *output, UINT4 *input, unsigned int len);
  44. static void MD5_memset (POINTER output, int value, unsigned int len);
  45. static void Decode (UINT4 *output, unsigned char *input, unsigned int len);
  46. static unsigned char PADDING[64] = {
  47. 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  48. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  49. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  50. };
  51. /* F, G, H and I are basic MD5 functions.
  52. */
  53. #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
  54. #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
  55. #define H(x, y, z) ((x) ^ (y) ^ (z))
  56. #define I(x, y, z) ((y) ^ ((x) | (~z)))
  57. /* ROTATE_LEFT rotates x left n bits.
  58. */
  59. #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
  60. /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
  61. Rotation is separate from addition to prevent recomputation.
  62. */
  63. #define FF(a, b, c, d, x, s, ac) { \
  64. (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
  65. (a) = ROTATE_LEFT ((a), (s)); \
  66. (a) += (b); \
  67. }
  68. #define GG(a, b, c, d, x, s, ac) { \
  69. (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
  70. (a) = ROTATE_LEFT ((a), (s)); \
  71. (a) += (b); \
  72. }
  73. #define HH(a, b, c, d, x, s, ac) { \
  74. (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
  75. (a) = ROTATE_LEFT ((a), (s)); \
  76. (a) += (b); \
  77. }
  78. #define II(a, b, c, d, x, s, ac) { \
  79. (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
  80. (a) = ROTATE_LEFT ((a), (s)); \
  81. (a) += (b); \
  82. }
  83. /* MD5 initialization. Begins an MD5 operation, writing a new context.
  84. */
  85. void MD5Init (MD5_CTX *context) /* context */
  86. {
  87. context->count[0] = context->count[1] = 0;
  88. /* Load magic initialization constants.
  89. */
  90. context->state[0] = 0x67452301;
  91. context->state[1] = 0xefcdab89;
  92. context->state[2] = 0x98badcfe;
  93. context->state[3] = 0x10325476;
  94. }
  95. /* MD5 block update operation. Continues an MD5 message-digest
  96. operation, processing another message block, and updating the
  97. context.
  98. */
  99. void MD5Update (MD5_CTX *context, unsigned char *input, unsigned int inputLen)
  100. {
  101. unsigned int i, index, partLen;
  102. /* Compute number of bytes mod 64 */
  103. index = (unsigned int)((context->count[0] >> 3) & 0x3F);
  104. /* Update number of bits */
  105. if ((context->count[0] += ((UINT4)inputLen << 3))
  106. < ((UINT4)inputLen << 3))
  107. context->count[1]++;
  108. context->count[1] += ((UINT4)inputLen >> 29);
  109. partLen = 64 - index;
  110. /* Transform as many times as possible.
  111. */
  112. if (inputLen >= partLen) {
  113. MD5_memcpy((POINTER)&context->buffer[index], (POINTER)input, partLen);
  114. MD5Transform (context->state, context->buffer);
  115. for (i = partLen; i + 63 < inputLen; i += 64)
  116. MD5Transform (context->state, &input[i]);
  117. index = 0;
  118. }
  119. else
  120. i = 0;
  121. /* Buffer remaining input */
  122. MD5_memcpy((POINTER)&context->buffer[index], (POINTER)&input[i],inputLen-i);
  123. }
  124. /* MD5 finalization. Ends an MD5 message-digest operation, writing the
  125. the message digest and zeroizing the context.
  126. */
  127. void MD5Final (unsigned char digest[16], MD5_CTX *context)
  128. {
  129. unsigned char bits[8];
  130. unsigned int index, padLen;
  131. /* Save number of bits */
  132. Encode (bits, context->count, 8);
  133. /* Pad out to 56 mod 64.
  134. */
  135. index = (unsigned int)((context->count[0] >> 3) & 0x3f);
  136. padLen = (index < 56) ? (56 - index) : (120 - index);
  137. MD5Update (context, PADDING, padLen);
  138. /* Append length (before padding) */
  139. MD5Update (context, bits, 8);
  140. /* Store state in digest */
  141. Encode (digest, context->state, 16);
  142. /* Zeroize sensitive information.
  143. */
  144. MD5_memset ((POINTER)context, 0, sizeof (*context));
  145. }
  146. /* MD5 basic transformation. Transforms state based on block.
  147. */
  148. static void MD5Transform (UINT4 state[4], unsigned char block[64])
  149. {
  150. UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
  151. Decode (x, block, 64);
  152. /* Round 1 */
  153. FF (a, b, c, d, x[ 0], S11, 0xd76aa478); /* 1 */
  154. FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); /* 2 */
  155. FF (c, d, a, b, x[ 2], S13, 0x242070db); /* 3 */
  156. FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); /* 4 */
  157. FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); /* 5 */
  158. FF (d, a, b, c, x[ 5], S12, 0x4787c62a); /* 6 */
  159. FF (c, d, a, b, x[ 6], S13, 0xa8304613); /* 7 */
  160. FF (b, c, d, a, x[ 7], S14, 0xfd469501); /* 8 */
  161. FF (a, b, c, d, x[ 8], S11, 0x698098d8); /* 9 */
  162. FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); /* 10 */
  163. FF (c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */
  164. FF (b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */
  165. FF (a, b, c, d, x[12], S11, 0x6b901122); /* 13 */
  166. FF (d, a, b, c, x[13], S12, 0xfd987193); /* 14 */
  167. FF (c, d, a, b, x[14], S13, 0xa679438e); /* 15 */
  168. FF (b, c, d, a, x[15], S14, 0x49b40821); /* 16 */
  169. /* Round 2 */
  170. GG (a, b, c, d, x[ 1], S21, 0xf61e2562); /* 17 */
  171. GG (d, a, b, c, x[ 6], S22, 0xc040b340); /* 18 */
  172. GG (c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */
  173. GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); /* 20 */
  174. GG (a, b, c, d, x[ 5], S21, 0xd62f105d); /* 21 */
  175. GG (d, a, b, c, x[10], S22, 0x2441453); /* 22 */
  176. GG (c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */
  177. GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); /* 24 */
  178. GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); /* 25 */
  179. GG (d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */
  180. GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); /* 27 */
  181. GG (b, c, d, a, x[ 8], S24, 0x455a14ed); /* 28 */
  182. GG (a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */
  183. GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); /* 30 */
  184. GG (c, d, a, b, x[ 7], S23, 0x676f02d9); /* 31 */
  185. GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */
  186. /* Round 3 */
  187. HH (a, b, c, d, x[ 5], S31, 0xfffa3942); /* 33 */
  188. HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */
  189. HH (c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
  190. HH (b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */
  191. HH (a, b, c, d, x[ 1], S31, 0xa4beea44); /* 37 */
  192. HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */
  193. HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); /* 39 */
  194. HH (b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */
  195. HH (a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */
  196. HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */
  197. HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); /* 43 */
  198. HH (b, c, d, a, x[ 6], S34, 0x4881d05); /* 44 */
  199. HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); /* 45 */
  200. HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
  201. HH (c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
  202. HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); /* 48 */
  203. /* Round 4 */
  204. II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
  205. II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
  206. II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
  207. II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
  208. II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
  209. II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
  210. II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
  211. II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */
  212. II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); /* 57 */
  213. II (d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */
  214. II (c, d, a, b, x[ 6], S43, 0xa3014314); /* 59 */
  215. II (b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */
  216. II (a, b, c, d, x[ 4], S41, 0xf7537e82); /* 61 */
  217. II (d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */
  218. II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); /* 63 */
  219. II (b, c, d, a, x[ 9], S44, 0xeb86d391); /* 64 */
  220. state[0] += a;
  221. state[1] += b;
  222. state[2] += c;
  223. state[3] += d;
  224. /* Zeroize sensitive information.
  225. */
  226. MD5_memset ((POINTER)x, 0, sizeof (x));
  227. }
  228. /* Encodes input (UINT4) into output (unsigned char). Assumes len is
  229. a multiple of 4.
  230. */
  231. static void Encode (unsigned char *output, UINT4 *input, unsigned int len)
  232. {
  233. unsigned int i, j;
  234. for (i = 0, j = 0; j < len; i++, j += 4) {
  235. output[j] = (unsigned char)(input[i] & 0xff);
  236. output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
  237. output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
  238. output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
  239. }
  240. }
  241. /* Decodes input (unsigned char) into output (UINT4). Assumes len is
  242. a multiple of 4.
  243. */
  244. static void Decode (UINT4 *output, unsigned char *input, unsigned int len)
  245. {
  246. unsigned int i, j;
  247. for (i = 0, j = 0; j < len; i++, j += 4)
  248. output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
  249. (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
  250. }
  251. /* Note: Replace "for loop" with standard memcpy if possible.
  252. */
  253. static void MD5_memcpy (POINTER output, POINTER input, unsigned int len)
  254. {
  255. unsigned int i;
  256. for (i = 0; i < len; i++)
  257. output[i] = input[i];
  258. }
  259. /* Note: Replace "for loop" with standard memset if possible.
  260. */
  261. static void MD5_memset (POINTER output, int value, unsigned int len)
  262. {
  263. unsigned int i;
  264. for (i = 0; i < len; i++)
  265. ((char *)output)[i] = (char)value;
  266. }
  267. /* Digests a string and prints the result.
  268. */
  269. void MDString (char *string,unsigned char digest[16])
  270. {
  271. MD5_CTX context;
  272. unsigned int len = strlen (string);
  273. MD5Init (&context);
  274. MD5Update (&context, (unsigned char *)string, len);
  275. MD5Final (digest, &context);
  276. }
  277. /* Digests a file and prints the result.
  278. */
  279. int MD5File (char *filename,unsigned char digest[16])
  280. {
  281. FILE *file;
  282. MD5_CTX context;
  283. int len;
  284. unsigned char buffer[1024];
  285. if ((file = fopen (filename, "rb")) == NULL)
  286. return -1;
  287. else {
  288. MD5Init (&context);
  289. while (len = fread (buffer, 1, 1024, file))
  290. MD5Update (&context, buffer, len);
  291. MD5Final (digest, &context);
  292. fclose (file);
  293. }
  294. return 0;
  295. }
  296. void MD5UpdaterString(MD5_CTX *context,const char *string)
  297. {
  298. unsigned int len = strlen (string);
  299. MD5Update (context, (unsigned char *)string, len);
  300. }
  301. int MD5FileUpdateFile (MD5_CTX *context,char *filename)
  302. {
  303. FILE *file;
  304. int len;
  305. unsigned char buffer[1024];
  306. if ((file = fopen (filename, "rb")) == NULL)
  307. return -1;
  308. else {
  309. while (len = fread (buffer, 1, 1024, file))
  310. MD5Update (context, buffer, len);
  311. fclose (file);
  312. }
  313. return 0;
  314. }
用法:
  1. void main(void)
  2. {
  3. unsigned char digest[16]; //存放結果
  4. //第一種用法:
  5. MD5_CTX md5c;
  6. MD5Init(&md5c); //初始化
  7. MD5UpdaterString(&md5c,"你要測試的字符串");
  8. MD5FileUpdateFile(&md5c,"你要測試的文件路徑");
  9. MD5Final(digest,&md5c);
  10. //第二種用法:
  11. MDString("你要測試的字符串",digest); //直接輸入字符串並得出結果
  12. //第三種用法:
  13. MD5File("你要測試的文件路徑",digest); //直接輸入文件路徑並得出結果
  14. }
Copyright © Linux教程網 All Rights Reserved