ppp_md5.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:11k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* ppp_md5.c - PPP MD5 security routines */
  2. /* Copyright 1995 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5.  ***********************************************************************
  6.  ** md5.c -- the source code for MD5 routines                         **
  7.  ** RSA Data Security, Inc. MD5 Message-Digest Algorithm              **
  8.  ** Created: 2/17/90 RLR                                              **
  9.  ** Revised: 1/91 SRD,AJ,BSK,JT Reference C ver., 7/10 constant corr. **
  10.  ***********************************************************************
  11.  */
  12. /*
  13.  ***********************************************************************
  14.  ** Copyright (C) 1990, RSA Data Security, Inc. All rights reserved.  **
  15.  **                                                                   **
  16.  ** License to copy and use this software is granted provided that    **
  17.  ** it is identified as the "RSA Data Security, Inc. MD5 Message-     **
  18.  ** Digest Algorithm" in all material mentioning or referencing this  **
  19.  ** software or this function.                                        **
  20.  **                                                                   **
  21.  ** License is also granted to make and use derivative works          **
  22.  ** provided that such works are identified as "derived from the RSA  **
  23.  ** Data Security, Inc. MD5 Message-Digest Algorithm" in all          **
  24.  ** material mentioning or referencing the derived work.              **
  25.  **                                                                   **
  26.  ** RSA Data Security, Inc. makes no representations concerning       **
  27.  ** either the merchantability of this software or the suitability    **
  28.  ** of this software for any particular purpose.  It is provided "as  **
  29.  ** is" without express or implied warranty of any kind.              **
  30.  **                                                                   **
  31.  ** These notices must be retained in any copies of any part of this  **
  32.  ** documentation and/or software.                                    **
  33.  ***********************************************************************
  34.  */
  35. /*
  36. modification history
  37. --------------------
  38. 01c,16jun95,dzb  header file consolidation.
  39. 01b,16jan95,dzb  prepended "ppp_" due to conflict with SNMP's md5 routines.
  40. 01a,21dec94,dab  VxWorks port - first WRS version.
  41.    +dzb  added: path for ppp header files, WRS copyright.
  42. */
  43. #include "vxWorks.h"
  44. #include "pppLib.h"
  45. /*
  46.  ***********************************************************************
  47.  **  Message-digest routines:                                         **
  48.  **  To form the message digest for a message M                       **
  49.  **    (1) Initialize a context buffer mdContext using MD5Init        **
  50.  **    (2) Call MD5Update on mdContext and M                          **
  51.  **    (3) Call MD5Final on mdContext                                 **
  52.  **  The message digest is now in mdContext->digest[0...15]           **
  53.  ***********************************************************************
  54.  */
  55. /* forward declaration */
  56. static void Transform ();
  57. static unsigned char PADDING[64] = {
  58.   0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  59.   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  60.   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  61.   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  62.   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  63.   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  64.   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  65.   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  66. };
  67. /* F, G, H and I are basic MD5 functions */
  68. #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
  69. #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
  70. #define H(x, y, z) ((x) ^ (y) ^ (z))
  71. #define I(x, y, z) ((y) ^ ((x) | (~z)))
  72. /* ROTATE_LEFT rotates x left n bits */
  73. #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
  74. /* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4 */
  75. /* Rotation is separate from addition to prevent recomputation */
  76. #define FF(a, b, c, d, x, s, ac) 
  77.   {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); 
  78.    (a) = ROTATE_LEFT ((a), (s)); 
  79.    (a) += (b); 
  80.   }
  81. #define GG(a, b, c, d, x, s, ac) 
  82.   {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); 
  83.    (a) = ROTATE_LEFT ((a), (s)); 
  84.    (a) += (b); 
  85.   }
  86. #define HH(a, b, c, d, x, s, ac) 
  87.   {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); 
  88.    (a) = ROTATE_LEFT ((a), (s)); 
  89.    (a) += (b); 
  90.   }
  91. #define II(a, b, c, d, x, s, ac) 
  92.   {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); 
  93.    (a) = ROTATE_LEFT ((a), (s)); 
  94.    (a) += (b); 
  95.   }
  96. #ifdef __STDC__
  97. #define UL(x) x##U
  98. #else
  99. #define UL(x) x
  100. #endif
  101. /* The routine MD5Init initializes the message-digest context
  102.    mdContext. All fields are set to zero.
  103.  */
  104. void ppp_MD5Init (mdContext)
  105. MD5_CTX *mdContext;
  106. {
  107.   mdContext->i[0] = mdContext->i[1] = (UINT4)0;
  108.   /* Load magic initialization constants.
  109.    */
  110.   mdContext->buf[0] = (UINT4)0x67452301;
  111.   mdContext->buf[1] = (UINT4)0xefcdab89;
  112.   mdContext->buf[2] = (UINT4)0x98badcfe;
  113.   mdContext->buf[3] = (UINT4)0x10325476;
  114. }
  115. /* The routine MD5Update updates the message-digest context to
  116.    account for the presence of each of the characters inBuf[0..inLen-1]
  117.    in the message whose digest is being computed.
  118.  */
  119. void ppp_MD5Update (mdContext, inBuf, inLen)
  120. MD5_CTX *mdContext;
  121. unsigned char *inBuf;
  122. unsigned int inLen;
  123. {
  124.   UINT4 in[16];
  125.   int mdi;
  126.   unsigned int i, ii;
  127.   /* compute number of bytes mod 64 */
  128.   mdi = (int)((mdContext->i[0] >> 3) & 0x3F);
  129.   /* update number of bits */
  130.   if ((mdContext->i[0] + ((UINT4)inLen << 3)) < mdContext->i[0])
  131.     mdContext->i[1]++;
  132.   mdContext->i[0] += ((UINT4)inLen << 3);
  133.   mdContext->i[1] += ((UINT4)inLen >> 29);
  134.   while (inLen--) {
  135.     /* add new character to buffer, increment mdi */
  136.     mdContext->in[mdi++] = *inBuf++;
  137.     /* transform if necessary */
  138.     if (mdi == 0x40) {
  139.       for (i = 0, ii = 0; i < 16; i++, ii += 4)
  140.         in[i] = (((UINT4)mdContext->in[ii+3]) << 24) |
  141.                 (((UINT4)mdContext->in[ii+2]) << 16) |
  142.                 (((UINT4)mdContext->in[ii+1]) << 8) |
  143.                 ((UINT4)mdContext->in[ii]);
  144.       Transform (mdContext->buf, in);
  145.       mdi = 0;
  146.     }
  147.   }
  148. }
  149. /* The routine MD5Final terminates the message-digest computation and
  150.    ends with the desired message digest in mdContext->digest[0...15].
  151.  */
  152. void ppp_MD5Final (mdContext)
  153. MD5_CTX *mdContext;
  154. {
  155.   UINT4 in[16];
  156.   int mdi;
  157.   unsigned int i, ii;
  158.   unsigned int padLen;
  159.   /* save number of bits */
  160.   in[14] = mdContext->i[0];
  161.   in[15] = mdContext->i[1];
  162.   /* compute number of bytes mod 64 */
  163.   mdi = (int)((mdContext->i[0] >> 3) & 0x3F);
  164.   /* pad out to 56 mod 64 */
  165.   padLen = (mdi < 56) ? (56 - mdi) : (120 - mdi);
  166.   ppp_MD5Update (mdContext, PADDING, padLen);
  167.   /* append length in bits and transform */
  168.   for (i = 0, ii = 0; i < 14; i++, ii += 4)
  169.     in[i] = (((UINT4)mdContext->in[ii+3]) << 24) |
  170.             (((UINT4)mdContext->in[ii+2]) << 16) |
  171.             (((UINT4)mdContext->in[ii+1]) << 8) |
  172.             ((UINT4)mdContext->in[ii]);
  173.   Transform (mdContext->buf, in);
  174.   /* store buffer in digest */
  175.   for (i = 0, ii = 0; i < 4; i++, ii += 4) {
  176.     mdContext->digest[ii] = (unsigned char)(mdContext->buf[i] & 0xFF);
  177.     mdContext->digest[ii+1] =
  178.       (unsigned char)((mdContext->buf[i] >> 8) & 0xFF);
  179.     mdContext->digest[ii+2] =
  180.       (unsigned char)((mdContext->buf[i] >> 16) & 0xFF);
  181.     mdContext->digest[ii+3] =
  182.       (unsigned char)((mdContext->buf[i] >> 24) & 0xFF);
  183.   }
  184. }
  185. /* Basic MD5 step. Transforms buf based on in.
  186.  */
  187. static void Transform (buf, in)
  188. UINT4 *buf;
  189. UINT4 *in;
  190. {
  191.   UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3];
  192.   /* Round 1 */
  193. #define S11 7
  194. #define S12 12
  195. #define S13 17
  196. #define S14 22
  197.   FF ( a, b, c, d, in[ 0], S11, UL(3614090360)); /* 1 */
  198.   FF ( d, a, b, c, in[ 1], S12, UL(3905402710)); /* 2 */
  199.   FF ( c, d, a, b, in[ 2], S13, UL( 606105819)); /* 3 */
  200.   FF ( b, c, d, a, in[ 3], S14, UL(3250441966)); /* 4 */
  201.   FF ( a, b, c, d, in[ 4], S11, UL(4118548399)); /* 5 */
  202.   FF ( d, a, b, c, in[ 5], S12, UL(1200080426)); /* 6 */
  203.   FF ( c, d, a, b, in[ 6], S13, UL(2821735955)); /* 7 */
  204.   FF ( b, c, d, a, in[ 7], S14, UL(4249261313)); /* 8 */
  205.   FF ( a, b, c, d, in[ 8], S11, UL(1770035416)); /* 9 */
  206.   FF ( d, a, b, c, in[ 9], S12, UL(2336552879)); /* 10 */
  207.   FF ( c, d, a, b, in[10], S13, UL(4294925233)); /* 11 */
  208.   FF ( b, c, d, a, in[11], S14, UL(2304563134)); /* 12 */
  209.   FF ( a, b, c, d, in[12], S11, UL(1804603682)); /* 13 */
  210.   FF ( d, a, b, c, in[13], S12, UL(4254626195)); /* 14 */
  211.   FF ( c, d, a, b, in[14], S13, UL(2792965006)); /* 15 */
  212.   FF ( b, c, d, a, in[15], S14, UL(1236535329)); /* 16 */
  213.   /* Round 2 */
  214. #define S21 5
  215. #define S22 9
  216. #define S23 14
  217. #define S24 20
  218.   GG ( a, b, c, d, in[ 1], S21, UL(4129170786)); /* 17 */
  219.   GG ( d, a, b, c, in[ 6], S22, UL(3225465664)); /* 18 */
  220.   GG ( c, d, a, b, in[11], S23, UL( 643717713)); /* 19 */
  221.   GG ( b, c, d, a, in[ 0], S24, UL(3921069994)); /* 20 */
  222.   GG ( a, b, c, d, in[ 5], S21, UL(3593408605)); /* 21 */
  223.   GG ( d, a, b, c, in[10], S22, UL(  38016083)); /* 22 */
  224.   GG ( c, d, a, b, in[15], S23, UL(3634488961)); /* 23 */
  225.   GG ( b, c, d, a, in[ 4], S24, UL(3889429448)); /* 24 */
  226.   GG ( a, b, c, d, in[ 9], S21, UL( 568446438)); /* 25 */
  227.   GG ( d, a, b, c, in[14], S22, UL(3275163606)); /* 26 */
  228.   GG ( c, d, a, b, in[ 3], S23, UL(4107603335)); /* 27 */
  229.   GG ( b, c, d, a, in[ 8], S24, UL(1163531501)); /* 28 */
  230.   GG ( a, b, c, d, in[13], S21, UL(2850285829)); /* 29 */
  231.   GG ( d, a, b, c, in[ 2], S22, UL(4243563512)); /* 30 */
  232.   GG ( c, d, a, b, in[ 7], S23, UL(1735328473)); /* 31 */
  233.   GG ( b, c, d, a, in[12], S24, UL(2368359562)); /* 32 */
  234.   /* Round 3 */
  235. #define S31 4
  236. #define S32 11
  237. #define S33 16
  238. #define S34 23
  239.   HH ( a, b, c, d, in[ 5], S31, UL(4294588738)); /* 33 */
  240.   HH ( d, a, b, c, in[ 8], S32, UL(2272392833)); /* 34 */
  241.   HH ( c, d, a, b, in[11], S33, UL(1839030562)); /* 35 */
  242.   HH ( b, c, d, a, in[14], S34, UL(4259657740)); /* 36 */
  243.   HH ( a, b, c, d, in[ 1], S31, UL(2763975236)); /* 37 */
  244.   HH ( d, a, b, c, in[ 4], S32, UL(1272893353)); /* 38 */
  245.   HH ( c, d, a, b, in[ 7], S33, UL(4139469664)); /* 39 */
  246.   HH ( b, c, d, a, in[10], S34, UL(3200236656)); /* 40 */
  247.   HH ( a, b, c, d, in[13], S31, UL( 681279174)); /* 41 */
  248.   HH ( d, a, b, c, in[ 0], S32, UL(3936430074)); /* 42 */
  249.   HH ( c, d, a, b, in[ 3], S33, UL(3572445317)); /* 43 */
  250.   HH ( b, c, d, a, in[ 6], S34, UL(  76029189)); /* 44 */
  251.   HH ( a, b, c, d, in[ 9], S31, UL(3654602809)); /* 45 */
  252.   HH ( d, a, b, c, in[12], S32, UL(3873151461)); /* 46 */
  253.   HH ( c, d, a, b, in[15], S33, UL( 530742520)); /* 47 */
  254.   HH ( b, c, d, a, in[ 2], S34, UL(3299628645)); /* 48 */
  255.   /* Round 4 */
  256. #define S41 6
  257. #define S42 10
  258. #define S43 15
  259. #define S44 21
  260.   II ( a, b, c, d, in[ 0], S41, UL(4096336452)); /* 49 */
  261.   II ( d, a, b, c, in[ 7], S42, UL(1126891415)); /* 50 */
  262.   II ( c, d, a, b, in[14], S43, UL(2878612391)); /* 51 */
  263.   II ( b, c, d, a, in[ 5], S44, UL(4237533241)); /* 52 */
  264.   II ( a, b, c, d, in[12], S41, UL(1700485571)); /* 53 */
  265.   II ( d, a, b, c, in[ 3], S42, UL(2399980690)); /* 54 */
  266.   II ( c, d, a, b, in[10], S43, UL(4293915773)); /* 55 */
  267.   II ( b, c, d, a, in[ 1], S44, UL(2240044497)); /* 56 */
  268.   II ( a, b, c, d, in[ 8], S41, UL(1873313359)); /* 57 */
  269.   II ( d, a, b, c, in[15], S42, UL(4264355552)); /* 58 */
  270.   II ( c, d, a, b, in[ 6], S43, UL(2734768916)); /* 59 */
  271.   II ( b, c, d, a, in[13], S44, UL(1309151649)); /* 60 */
  272.   II ( a, b, c, d, in[ 4], S41, UL(4149444226)); /* 61 */
  273.   II ( d, a, b, c, in[11], S42, UL(3174756917)); /* 62 */
  274.   II ( c, d, a, b, in[ 2], S43, UL( 718787259)); /* 63 */
  275.   II ( b, c, d, a, in[ 9], S44, UL(3951481745)); /* 64 */
  276.   buf[0] += a;
  277.   buf[1] += b;
  278.   buf[2] += c;
  279.   buf[3] += d;
  280. }