md5.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:10k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * MD5C.C - RSA Data Security, Inc., MD5 message-digest algorithm
  3.  */
  4. /*
  5.  * Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All rights
  6.  * reserved.
  7.  * 
  8.  * License to copy and use this software is granted provided that it is
  9.  * identified as the "RSA Data Security, Inc. MD5 Message-Digest Algorithm"
  10.  * in all material mentioning or referencing this software or this function.
  11.  * 
  12.  * License is also granted to make and use derivative works provided that such
  13.  * works are identified as "derived from the RSA Data Security, Inc. MD5
  14.  * Message-Digest Algorithm" in all material mentioning or referencing the
  15.  * derived work.
  16.  * 
  17.  * RSA Data Security, Inc. makes no representations concerning either the
  18.  * merchantability of this software or the suitability of this software for
  19.  * any particular purpose. It is provided "as is" without express or implied
  20.  * warranty of any kind.
  21.  * 
  22.  * These notices must be retained in any copies of any part of this
  23.  * documentation and/or software.
  24.  */
  25. #include "config_unix.h"
  26. #include "config_win32.h"
  27. #include "md5.h"
  28. /*
  29.  * Constants for MD5Transform routine.
  30.  */
  31. #define S11 7
  32. #define S12 12
  33. #define S13 17
  34. #define S14 22
  35. #define S21 5
  36. #define S22 9
  37. #define S23 14
  38. #define S24 20
  39. #define S31 4
  40. #define S32 11
  41. #define S33 16
  42. #define S34 23
  43. #define S41 6
  44. #define S42 10
  45. #define S43 15
  46. #define S44 21
  47. static unsigned char PADDING[64] = {
  48. 0x80, 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, 0, 0, 0, 0,
  50. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  51. };
  52. /*
  53.  * F, G, H and I are basic MD5 functions.
  54.  */
  55. #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
  56. #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
  57. #define H(x, y, z) ((x) ^ (y) ^ (z))
  58. #define I(x, y, z) ((y) ^ ((x) | (~z)))
  59. /*
  60.  * ROTATE_LEFT rotates x left n bits.
  61.  */
  62. #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
  63. /*
  64.  * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. Rotation is
  65.  * separate from addition to prevent recomputation.
  66.  */
  67. #define FF(a, b, c, d, x, s, ac) { 
  68.  (a) += F ((b), (c), (d)) + (x) + (uint32_t)(ac); 
  69.  (a) = ROTATE_LEFT ((a), (s)); 
  70.  (a) += (b); 
  71.   }
  72. #define GG(a, b, c, d, x, s, ac) { 
  73.  (a) += G ((b), (c), (d)) + (x) + (uint32_t)(ac); 
  74.  (a) = ROTATE_LEFT ((a), (s)); 
  75.  (a) += (b); 
  76.   }
  77. #define HH(a, b, c, d, x, s, ac) { 
  78.  (a) += H ((b), (c), (d)) + (x) + (uint32_t)(ac); 
  79.  (a) = ROTATE_LEFT ((a), (s)); 
  80.  (a) += (b); 
  81.   }
  82. #define II(a, b, c, d, x, s, ac) { 
  83.  (a) += I ((b), (c), (d)) + (x) + (uint32_t)(ac); 
  84.  (a) = ROTATE_LEFT ((a), (s)); 
  85.  (a) += (b); 
  86.   }
  87. /*
  88.  * Encodes input (uint32_t) into output (unsigned char). Assumes len is a
  89.  * multiple of 4.
  90.  */
  91. static void 
  92. Encode(unsigned char *output, uint32_t * input, unsigned int len)
  93. {
  94. unsigned int    i, j;
  95. ASSERT((len % 4) == 0);
  96. for (i = 0, j = 0; j < len; i++, j += 4) {
  97. output[j] = (unsigned char) (input[i] & 0xff);
  98. output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff);
  99. output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff);
  100. output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff);
  101. }
  102. }
  103. /*
  104.  * Decodes input (unsigned char) into output (uint32_t). Assumes len is a
  105.  * multiple of 4.
  106.  */
  107. static void 
  108. Decode(uint32_t * output, unsigned char *input, unsigned int len)
  109. {
  110. unsigned int    i, j;
  111. for (i = 0, j = 0; j < len; i++, j += 4)
  112. output[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) |
  113. (((uint32_t) input[j + 2]) << 16) | (((uint32_t) input[j + 3]) << 24);
  114. }
  115. /*
  116.  * MD5 basic transformation. Transforms state based on block.
  117.  */
  118. static void 
  119. MD5Transform(uint32_t state[4], unsigned char block[64])
  120. {
  121. uint32_t           a = state[0], b = state[1], c = state[2], d = state[3],
  122.                 x[16];
  123. Decode(x, block, 64);
  124. /* Round 1 */
  125. FF(a, b, c, d, x[0], S11, 0xd76aa478); /* 1 */
  126. FF(d, a, b, c, x[1], S12, 0xe8c7b756); /* 2 */
  127. FF(c, d, a, b, x[2], S13, 0x242070db); /* 3 */
  128. FF(b, c, d, a, x[3], S14, 0xc1bdceee); /* 4 */
  129. FF(a, b, c, d, x[4], S11, 0xf57c0faf); /* 5 */
  130. FF(d, a, b, c, x[5], S12, 0x4787c62a); /* 6 */
  131. FF(c, d, a, b, x[6], S13, 0xa8304613); /* 7 */
  132. FF(b, c, d, a, x[7], S14, 0xfd469501); /* 8 */
  133. FF(a, b, c, d, x[8], S11, 0x698098d8); /* 9 */
  134. FF(d, a, b, c, x[9], S12, 0x8b44f7af); /* 10 */
  135. FF(c, d, a, b, x[10], S13, 0xffff5bb1); /* 11 */
  136. FF(b, c, d, a, x[11], S14, 0x895cd7be); /* 12 */
  137. FF(a, b, c, d, x[12], S11, 0x6b901122); /* 13 */
  138. FF(d, a, b, c, x[13], S12, 0xfd987193); /* 14 */
  139. FF(c, d, a, b, x[14], S13, 0xa679438e); /* 15 */
  140. FF(b, c, d, a, x[15], S14, 0x49b40821); /* 16 */
  141. /* Round 2 */
  142. GG(a, b, c, d, x[1], S21, 0xf61e2562); /* 17 */
  143. GG(d, a, b, c, x[6], S22, 0xc040b340); /* 18 */
  144. GG(c, d, a, b, x[11], S23, 0x265e5a51); /* 19 */
  145. GG(b, c, d, a, x[0], S24, 0xe9b6c7aa); /* 20 */
  146. GG(a, b, c, d, x[5], S21, 0xd62f105d); /* 21 */
  147. GG(d, a, b, c, x[10], S22, 0x2441453); /* 22 */
  148. GG(c, d, a, b, x[15], S23, 0xd8a1e681); /* 23 */
  149. GG(b, c, d, a, x[4], S24, 0xe7d3fbc8); /* 24 */
  150. GG(a, b, c, d, x[9], S21, 0x21e1cde6); /* 25 */
  151. GG(d, a, b, c, x[14], S22, 0xc33707d6); /* 26 */
  152. GG(c, d, a, b, x[3], S23, 0xf4d50d87); /* 27 */
  153. GG(b, c, d, a, x[8], S24, 0x455a14ed); /* 28 */
  154. GG(a, b, c, d, x[13], S21, 0xa9e3e905); /* 29 */
  155. GG(d, a, b, c, x[2], S22, 0xfcefa3f8); /* 30 */
  156. GG(c, d, a, b, x[7], S23, 0x676f02d9); /* 31 */
  157. GG(b, c, d, a, x[12], S24, 0x8d2a4c8a); /* 32 */
  158. /* Round 3 */
  159. HH(a, b, c, d, x[5], S31, 0xfffa3942); /* 33 */
  160. HH(d, a, b, c, x[8], S32, 0x8771f681); /* 34 */
  161. HH(c, d, a, b, x[11], S33, 0x6d9d6122); /* 35 */
  162. HH(b, c, d, a, x[14], S34, 0xfde5380c); /* 36 */
  163. HH(a, b, c, d, x[1], S31, 0xa4beea44); /* 37 */
  164. HH(d, a, b, c, x[4], S32, 0x4bdecfa9); /* 38 */
  165. HH(c, d, a, b, x[7], S33, 0xf6bb4b60); /* 39 */
  166. HH(b, c, d, a, x[10], S34, 0xbebfbc70); /* 40 */
  167. HH(a, b, c, d, x[13], S31, 0x289b7ec6); /* 41 */
  168. HH(d, a, b, c, x[0], S32, 0xeaa127fa); /* 42 */
  169. HH(c, d, a, b, x[3], S33, 0xd4ef3085); /* 43 */
  170. HH(b, c, d, a, x[6], S34, 0x4881d05); /* 44 */
  171. HH(a, b, c, d, x[9], S31, 0xd9d4d039); /* 45 */
  172. HH(d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
  173. HH(c, d, a, b, x[15], S33, 0x1fa27cf8); /* 47 */
  174. HH(b, c, d, a, x[2], S34, 0xc4ac5665); /* 48 */
  175. /* Round 4 */
  176. II(a, b, c, d, x[0], S41, 0xf4292244); /* 49 */
  177. II(d, a, b, c, x[7], S42, 0x432aff97); /* 50 */
  178. II(c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
  179. II(b, c, d, a, x[5], S44, 0xfc93a039); /* 52 */
  180. II(a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
  181. II(d, a, b, c, x[3], S42, 0x8f0ccc92); /* 54 */
  182. II(c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
  183. II(b, c, d, a, x[1], S44, 0x85845dd1); /* 56 */
  184. II(a, b, c, d, x[8], S41, 0x6fa87e4f); /* 57 */
  185. II(d, a, b, c, x[15], S42, 0xfe2ce6e0); /* 58 */
  186. II(c, d, a, b, x[6], S43, 0xa3014314); /* 59 */
  187. II(b, c, d, a, x[13], S44, 0x4e0811a1); /* 60 */
  188. II(a, b, c, d, x[4], S41, 0xf7537e82); /* 61 */
  189. II(d, a, b, c, x[11], S42, 0xbd3af235); /* 62 */
  190. II(c, d, a, b, x[2], S43, 0x2ad7d2bb); /* 63 */
  191. II(b, c, d, a, x[9], S44, 0xeb86d391); /* 64 */
  192. state[0] += a;
  193. state[1] += b;
  194. state[2] += c;
  195. state[3] += d;
  196. /*
  197.  * Zeroize sensitive information.
  198.  */
  199. memset((unsigned char *) x, 0, sizeof(x));
  200. }
  201. /**
  202.  * MD5Init:
  203.  * @context: MD5 context to be initialized.
  204.  * 
  205.  * Initializes MD5 context for the start of message digest computation.
  206.  **/
  207. void 
  208. MD5Init(MD5_CTX * context)
  209. {
  210. context->count[0] = context->count[1] = 0;
  211. /* Load magic initialization constants.  */
  212. context->state[0] = 0x67452301;
  213. context->state[1] = 0xefcdab89;
  214. context->state[2] = 0x98badcfe;
  215. context->state[3] = 0x10325476;
  216. }
  217. /**
  218.  * MD5Update:
  219.  * @context: MD5 context to be updated.
  220.  * @input: pointer to data to be fed into MD5 algorithm.
  221.  * @inputLen: size of @input data in bytes.
  222.  * 
  223.  * MD5 block update operation. Continues an MD5 message-digest operation,
  224.  * processing another message block, and updating the context.
  225.  **/
  226. void 
  227. MD5Update(MD5_CTX * context, unsigned char *input, unsigned int inputLen)
  228. {
  229. unsigned int    i, index, partLen;
  230. /* Compute number of bytes mod 64 */
  231. index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
  232. /* Update number of bits */
  233. if ((context->count[0] += ((uint32_t) inputLen << 3)) < ((uint32_t) inputLen << 3)) {
  234. context->count[1]++;
  235. }
  236. context->count[1] += ((uint32_t) inputLen >> 29);
  237. partLen = 64 - index;
  238. /* Transform as many times as possible.  */
  239. if (inputLen >= partLen) {
  240. memcpy((unsigned char *) & context->buffer[index], (unsigned char *) input, partLen);
  241. MD5Transform(context->state, context->buffer);
  242. for (i = partLen; i + 63 < inputLen; i += 64) {
  243. MD5Transform(context->state, &input[i]);
  244. }
  245. index = 0;
  246. } else {
  247. i = 0;
  248. }
  249. /* Buffer remaining input */
  250. if ((inputLen - i) != 0) {
  251. memcpy((unsigned char *) & context->buffer[index], (unsigned char *) & input[i], inputLen - i);
  252. }
  253. }
  254. /**
  255.  * MD5Final:
  256.  * @digest: 16-byte buffer to write MD5 checksum.
  257.  * @context: MD5 context to be finalized.
  258.  * 
  259.  * Ends an MD5 message-digest operation, writing the the message
  260.  * digest and zeroing the context.  The context must be initialized
  261.  * with MD5Init() before being used for other MD5 checksum calculations.
  262.  **/
  263. void 
  264. MD5Final(unsigned char digest[16], MD5_CTX * context)
  265. {
  266. unsigned char   bits[8];
  267. unsigned int    index, padLen;
  268. /* Save number of bits */
  269. Encode(bits, context->count, 8);
  270. /*
  271.  * Pad out to 56 mod 64.
  272.  */
  273. index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
  274. padLen = (index < 56) ? (56 - index) : (120 - index);
  275. MD5Update(context, PADDING, padLen);
  276. /* Append length (before padding) */
  277. MD5Update(context, bits, 8);
  278. /* Store state in digest */
  279. Encode(digest, context->state, 16);
  280. /*
  281.  * Zeroize sensitive information.
  282.  */
  283. memset((unsigned char *) context, 0, sizeof(*context));
  284. }