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