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