md5.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:14k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer and/or licensor of the Original Code and owns the copyrights 
  21.  * in the portions it created.  
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. /*
  36.   Copyright (C) 1999, 2000, 2002 Aladdin Enterprises.  All rights reserved.
  37.   This software is provided 'as-is', without any express or implied
  38.   warranty.  In no event will the authors be held liable for any damages
  39.   arising from the use of this software.
  40.   Permission is granted to anyone to use this software for any purpose,
  41.   including commercial applications, and to alter it and redistribute it
  42.   freely, subject to the following restrictions:
  43.   1. The origin of this software must not be misrepresented; you must not
  44.      claim that you wrote the original software. If you use this software
  45.      in a product, an acknowledgment in the product documentation would be
  46.      appreciated but is not required.
  47.   2. Altered source versions must be plainly marked as such, and must not be
  48.      misrepresented as being the original software.
  49.   3. This notice may not be removed or altered from any source distribution.
  50.   L. Peter Deutsch
  51.   ghost@aladdin.com
  52.  */
  53. /*
  54.   Independent implementation of MD5 (RFC 1321).
  55.   This code implements the MD5 Algorithm defined in RFC 1321, whose
  56.   text is available at
  57. http://www.ietf.org/rfc/rfc1321.txt
  58.   The code is derived from the text of the RFC, including the test suite
  59.   (section A.5) but excluding the rest of Appendix A.  It does not include
  60.   any code or documentation that is identified in the RFC as being
  61.   copyrighted.
  62.   The original and principal author of md5.c is L. Peter Deutsch
  63.   <ghost@aladdin.com>.  Other authors are noted in the change history
  64.   that follows (in reverse chronological order):
  65.   2002-04-13 lpd Clarified derivation from RFC 1321; now handles byte order
  66. either statically or dynamically; added missing #include <string.h>
  67. in library.
  68.   2002-03-11 lpd Corrected argument list for main(), and added int return
  69. type, in test program and T value program.
  70.   2002-02-21 lpd Added missing #include <stdio.h> in test program.
  71.   2000-07-03 lpd Patched to eliminate warnings about "constant is
  72. unsigned in ANSI C, signed in traditional"; made test program
  73. self-checking.
  74.   1999-11-04 lpd Edited comments slightly for automatic TOC extraction.
  75.   1999-10-18 lpd Fixed typo in header comment (ansi2knr rather than md5).
  76.   1999-05-03 lpd Original version.
  77.  */
  78. #include "hxtypes.h"
  79. #include "md5.h"
  80. #include "hlxclib/string.h"
  81. #undef BYTE_ORDER /* 1 = big-endian, -1 = little-endian, 0 = unknown */
  82. #ifdef ARCH_IS_BIG_ENDIAN
  83. #  define BYTE_ORDER (ARCH_IS_BIG_ENDIAN ? 1 : -1)
  84. #else
  85. #  define BYTE_ORDER 0
  86. #endif
  87. #define T_MASK ((md5_word_t)~0)
  88. #define T1 /* 0xd76aa478 */ (T_MASK ^ 0x28955b87)
  89. #define T2 /* 0xe8c7b756 */ (T_MASK ^ 0x173848a9)
  90. #define T3    0x242070db
  91. #define T4 /* 0xc1bdceee */ (T_MASK ^ 0x3e423111)
  92. #define T5 /* 0xf57c0faf */ (T_MASK ^ 0x0a83f050)
  93. #define T6    0x4787c62a
  94. #define T7 /* 0xa8304613 */ (T_MASK ^ 0x57cfb9ec)
  95. #define T8 /* 0xfd469501 */ (T_MASK ^ 0x02b96afe)
  96. #define T9    0x698098d8
  97. #define T10 /* 0x8b44f7af */ (T_MASK ^ 0x74bb0850)
  98. #define T11 /* 0xffff5bb1 */ (T_MASK ^ 0x0000a44e)
  99. #define T12 /* 0x895cd7be */ (T_MASK ^ 0x76a32841)
  100. #define T13    0x6b901122
  101. #define T14 /* 0xfd987193 */ (T_MASK ^ 0x02678e6c)
  102. #define T15 /* 0xa679438e */ (T_MASK ^ 0x5986bc71)
  103. #define T16    0x49b40821
  104. #define T17 /* 0xf61e2562 */ (T_MASK ^ 0x09e1da9d)
  105. #define T18 /* 0xc040b340 */ (T_MASK ^ 0x3fbf4cbf)
  106. #define T19    0x265e5a51
  107. #define T20 /* 0xe9b6c7aa */ (T_MASK ^ 0x16493855)
  108. #define T21 /* 0xd62f105d */ (T_MASK ^ 0x29d0efa2)
  109. #define T22    0x02441453
  110. #define T23 /* 0xd8a1e681 */ (T_MASK ^ 0x275e197e)
  111. #define T24 /* 0xe7d3fbc8 */ (T_MASK ^ 0x182c0437)
  112. #define T25    0x21e1cde6
  113. #define T26 /* 0xc33707d6 */ (T_MASK ^ 0x3cc8f829)
  114. #define T27 /* 0xf4d50d87 */ (T_MASK ^ 0x0b2af278)
  115. #define T28    0x455a14ed
  116. #define T29 /* 0xa9e3e905 */ (T_MASK ^ 0x561c16fa)
  117. #define T30 /* 0xfcefa3f8 */ (T_MASK ^ 0x03105c07)
  118. #define T31    0x676f02d9
  119. #define T32 /* 0x8d2a4c8a */ (T_MASK ^ 0x72d5b375)
  120. #define T33 /* 0xfffa3942 */ (T_MASK ^ 0x0005c6bd)
  121. #define T34 /* 0x8771f681 */ (T_MASK ^ 0x788e097e)
  122. #define T35    0x6d9d6122
  123. #define T36 /* 0xfde5380c */ (T_MASK ^ 0x021ac7f3)
  124. #define T37 /* 0xa4beea44 */ (T_MASK ^ 0x5b4115bb)
  125. #define T38    0x4bdecfa9
  126. #define T39 /* 0xf6bb4b60 */ (T_MASK ^ 0x0944b49f)
  127. #define T40 /* 0xbebfbc70 */ (T_MASK ^ 0x4140438f)
  128. #define T41    0x289b7ec6
  129. #define T42 /* 0xeaa127fa */ (T_MASK ^ 0x155ed805)
  130. #define T43 /* 0xd4ef3085 */ (T_MASK ^ 0x2b10cf7a)
  131. #define T44    0x04881d05
  132. #define T45 /* 0xd9d4d039 */ (T_MASK ^ 0x262b2fc6)
  133. #define T46 /* 0xe6db99e5 */ (T_MASK ^ 0x1924661a)
  134. #define T47    0x1fa27cf8
  135. #define T48 /* 0xc4ac5665 */ (T_MASK ^ 0x3b53a99a)
  136. #define T49 /* 0xf4292244 */ (T_MASK ^ 0x0bd6ddbb)
  137. #define T50    0x432aff97
  138. #define T51 /* 0xab9423a7 */ (T_MASK ^ 0x546bdc58)
  139. #define T52 /* 0xfc93a039 */ (T_MASK ^ 0x036c5fc6)
  140. #define T53    0x655b59c3
  141. #define T54 /* 0x8f0ccc92 */ (T_MASK ^ 0x70f3336d)
  142. #define T55 /* 0xffeff47d */ (T_MASK ^ 0x00100b82)
  143. #define T56 /* 0x85845dd1 */ (T_MASK ^ 0x7a7ba22e)
  144. #define T57    0x6fa87e4f
  145. #define T58 /* 0xfe2ce6e0 */ (T_MASK ^ 0x01d3191f)
  146. #define T59 /* 0xa3014314 */ (T_MASK ^ 0x5cfebceb)
  147. #define T60    0x4e0811a1
  148. #define T61 /* 0xf7537e82 */ (T_MASK ^ 0x08ac817d)
  149. #define T62 /* 0xbd3af235 */ (T_MASK ^ 0x42c50dca)
  150. #define T63    0x2ad7d2bb
  151. #define T64 /* 0xeb86d391 */ (T_MASK ^ 0x14792c6e)
  152. static void
  153. md5_process(md5_state_t *pms, const md5_byte_t *data /*[64]*/)
  154. {
  155.     md5_word_t
  156. a = pms->abcd[0], b = pms->abcd[1],
  157. c = pms->abcd[2], d = pms->abcd[3];
  158.     md5_word_t t;
  159. #if BYTE_ORDER > 0
  160.     /* Define storage only for big-endian CPUs. */
  161.     md5_word_t X[16];
  162. #else
  163.     /* Define storage for little-endian or both types of CPUs. */
  164.     md5_word_t xbuf[16];
  165.     const md5_word_t *X;
  166. #endif
  167.     {
  168. #if BYTE_ORDER == 0
  169. /*
  170.  * Determine dynamically whether this is a big-endian or
  171.  * little-endian machine, since we can use a more efficient
  172.  * algorithm on the latter.
  173.  */
  174. static const int w = 1;
  175. if (*((const md5_byte_t *)&w)) /* dynamic little-endian */
  176. #endif
  177. #if BYTE_ORDER <= 0 /* little-endian */
  178. {
  179.     /*
  180.      * On little-endian machines, we can process properly aligned
  181.      * data without copying it.
  182.      */
  183.     if (!((data - (const md5_byte_t *)0) & 3)) {
  184. /* data are properly aligned */
  185. X = (const md5_word_t *)data;
  186.     } else {
  187. /* not aligned */
  188. memcpy(xbuf, data, 64); /* Flawfinder: ignore */
  189. X = xbuf;
  190.     }
  191. }
  192. #endif
  193. #if BYTE_ORDER == 0
  194. else /* dynamic big-endian */
  195. #endif
  196. #if BYTE_ORDER >= 0 /* big-endian */
  197. {
  198.     /*
  199.      * On big-endian machines, we must arrange the bytes in the
  200.      * right order.
  201.      */
  202.     const md5_byte_t *xp = data;
  203.     int i;
  204. #  if BYTE_ORDER == 0
  205.     X = xbuf; /* (dynamic only) */
  206. #  else
  207. #    define xbuf X /* (static only) */
  208. #  endif
  209.     for (i = 0; i < 16; ++i, xp += 4)
  210. xbuf[i] = xp[0] + (xp[1] << 8) + (xp[2] << 16) + (xp[3] << 24);
  211. }
  212. #endif
  213.     }
  214. #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32 - (n))))
  215.     /* Round 1. */
  216.     /* Let [abcd k s i] denote the operation
  217.        a = b + ((a + F(b,c,d) + X[k] + T[i]) <<< s). */
  218. #define F(x, y, z) (((x) & (y)) | (~(x) & (z)))
  219. #define SET(a, b, c, d, k, s, Ti)
  220.   t = a + F(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,  0,  7,  T1);
  224.     SET(d, a, b, c,  1, 12,  T2);
  225.     SET(c, d, a, b,  2, 17,  T3);
  226.     SET(b, c, d, a,  3, 22,  T4);
  227.     SET(a, b, c, d,  4,  7,  T5);
  228.     SET(d, a, b, c,  5, 12,  T6);
  229.     SET(c, d, a, b,  6, 17,  T7);
  230.     SET(b, c, d, a,  7, 22,  T8);
  231.     SET(a, b, c, d,  8,  7,  T9);
  232.     SET(d, a, b, c,  9, 12, T10);
  233.     SET(c, d, a, b, 10, 17, T11);
  234.     SET(b, c, d, a, 11, 22, T12);
  235.     SET(a, b, c, d, 12,  7, T13);
  236.     SET(d, a, b, c, 13, 12, T14);
  237.     SET(c, d, a, b, 14, 17, T15);
  238.     SET(b, c, d, a, 15, 22, T16);
  239. #undef SET
  240.      /* Round 2. */
  241.      /* Let [abcd k s i] denote the operation
  242.           a = b + ((a + G(b,c,d) + X[k] + T[i]) <<< s). */
  243. #define G(x, y, z) (((x) & (z)) | ((y) & ~(z)))
  244. #define SET(a, b, c, d, k, s, Ti)
  245.   t = a + G(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,  1,  5, T17);
  249.     SET(d, a, b, c,  6,  9, T18);
  250.     SET(c, d, a, b, 11, 14, T19);
  251.     SET(b, c, d, a,  0, 20, T20);
  252.     SET(a, b, c, d,  5,  5, T21);
  253.     SET(d, a, b, c, 10,  9, T22);
  254.     SET(c, d, a, b, 15, 14, T23);
  255.     SET(b, c, d, a,  4, 20, T24);
  256.     SET(a, b, c, d,  9,  5, T25);
  257.     SET(d, a, b, c, 14,  9, T26);
  258.     SET(c, d, a, b,  3, 14, T27);
  259.     SET(b, c, d, a,  8, 20, T28);
  260.     SET(a, b, c, d, 13,  5, T29);
  261.     SET(d, a, b, c,  2,  9, T30);
  262.     SET(c, d, a, b,  7, 14, T31);
  263.     SET(b, c, d, a, 12, 20, T32);
  264. #undef SET
  265.      /* Round 3. */
  266.      /* Let [abcd k s t] denote the operation
  267.           a = b + ((a + H(b,c,d) + X[k] + T[i]) <<< s). */
  268. #define H(x, y, z) ((x) ^ (y) ^ (z))
  269. #define SET(a, b, c, d, k, s, Ti)
  270.   t = a + H(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,  5,  4, T33);
  274.     SET(d, a, b, c,  8, 11, T34);
  275.     SET(c, d, a, b, 11, 16, T35);
  276.     SET(b, c, d, a, 14, 23, T36);
  277.     SET(a, b, c, d,  1,  4, T37);
  278.     SET(d, a, b, c,  4, 11, T38);
  279.     SET(c, d, a, b,  7, 16, T39);
  280.     SET(b, c, d, a, 10, 23, T40);
  281.     SET(a, b, c, d, 13,  4, T41);
  282.     SET(d, a, b, c,  0, 11, T42);
  283.     SET(c, d, a, b,  3, 16, T43);
  284.     SET(b, c, d, a,  6, 23, T44);
  285.     SET(a, b, c, d,  9,  4, T45);
  286.     SET(d, a, b, c, 12, 11, T46);
  287.     SET(c, d, a, b, 15, 16, T47);
  288.     SET(b, c, d, a,  2, 23, T48);
  289. #undef SET
  290.      /* Round 4. */
  291.      /* Let [abcd k s t] denote the operation
  292.           a = b + ((a + I(b,c,d) + X[k] + T[i]) <<< s). */
  293. #define I(x, y, z) ((y) ^ ((x) | ~(z)))
  294. #define SET(a, b, c, d, k, s, Ti)
  295.   t = a + I(b,c,d) + X[k] + Ti;
  296.   a = ROTATE_LEFT(t, s) + b
  297.      /* Do the following 16 operations. */
  298.     SET(a, b, c, d,  0,  6, T49);
  299.     SET(d, a, b, c,  7, 10, T50);
  300.     SET(c, d, a, b, 14, 15, T51);
  301.     SET(b, c, d, a,  5, 21, T52);
  302.     SET(a, b, c, d, 12,  6, T53);
  303.     SET(d, a, b, c,  3, 10, T54);
  304.     SET(c, d, a, b, 10, 15, T55);
  305.     SET(b, c, d, a,  1, 21, T56);
  306.     SET(a, b, c, d,  8,  6, T57);
  307.     SET(d, a, b, c, 15, 10, T58);
  308.     SET(c, d, a, b,  6, 15, T59);
  309.     SET(b, c, d, a, 13, 21, T60);
  310.     SET(a, b, c, d,  4,  6, T61);
  311.     SET(d, a, b, c, 11, 10, T62);
  312.     SET(c, d, a, b,  2, 15, T63);
  313.     SET(b, c, d, a,  9, 21, T64);
  314. #undef SET
  315.      /* Then perform the following additions. (That is increment each
  316.         of the four registers by the value it had before this block
  317.         was started.) */
  318.     pms->abcd[0] += a;
  319.     pms->abcd[1] += b;
  320.     pms->abcd[2] += c;
  321.     pms->abcd[3] += d;
  322. }
  323. void
  324. md5_init(md5_state_t *pms)
  325. {
  326.     pms->count[0] = pms->count[1] = 0;
  327.     pms->abcd[0] = 0x67452301;
  328.     pms->abcd[1] = /*0xefcdab89*/ T_MASK ^ 0x10325476;
  329.     pms->abcd[2] = /*0x98badcfe*/ T_MASK ^ 0x67452301;
  330.     pms->abcd[3] = 0x10325476;
  331. }
  332. void
  333. md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes)
  334. {
  335.     const md5_byte_t *p = data;
  336.     int left = nbytes;
  337.     int offset = (pms->count[0] >> 3) & 63;
  338.     md5_word_t nbits = (md5_word_t)(nbytes << 3);
  339.     if (nbytes <= 0)
  340. return;
  341.     /* Update the message length. */
  342.     pms->count[1] += nbytes >> 29;
  343.     pms->count[0] += nbits;
  344.     if (pms->count[0] < nbits)
  345. pms->count[1]++;
  346.     /* Process an initial partial block. */
  347.     if (offset) {
  348. int copy = (offset + nbytes > 64 ? 64 - offset : nbytes);
  349. memcpy(pms->buf + offset, p, copy); /* Flawfinder: ignore */
  350. if (offset + copy < 64)
  351.     return;
  352. p += copy;
  353. left -= copy;
  354. md5_process(pms, pms->buf);
  355.     }
  356.     /* Process full blocks. */
  357.     for (; left >= 64; p += 64, left -= 64)
  358. md5_process(pms, p);
  359.     /* Process a final partial block. */
  360.     if (left)
  361. memcpy(pms->buf, p, left); /* Flawfinder: ignore */
  362. }
  363. void
  364. md5_finish(md5_byte_t digest[16], md5_state_t *pms)
  365. {
  366.     static const md5_byte_t pad[64] = {
  367. 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  368. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  369. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  370. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  371.     };
  372.     md5_byte_t data[8];
  373.     int i;
  374.     /* Save the length before padding. */
  375.     for (i = 0; i < 8; ++i)
  376. data[i] = (md5_byte_t)(pms->count[i >> 2] >> ((i & 3) << 3));
  377.     /* Pad to 56 bytes mod 64. */
  378.     md5_append(pms, pad, ((55 - (pms->count[0] >> 3)) & 63) + 1);
  379.     /* Append the length. */
  380.     md5_append(pms, data, 8);
  381.     for (i = 0; i < 16; ++i)
  382. digest[i] = (md5_byte_t)(pms->abcd[i >> 2] >> ((i & 3) << 3));
  383. }