32 #include <sys/cdefs.h>
35 #include <sys/types.h>
38 #include <sys/systm.h>
43 #include <machine/endian.h>
44 #include <sys/endian.h>
47 static void MD5Transform(u_int32_t [4],
const unsigned char [64]);
49 #if (BYTE_ORDER == LITTLE_ENDIAN)
60 Encode (
unsigned char *output, u_int32_t *input,
unsigned int len)
65 for (i = 0; i < len / 4; i++) {
80 Decode (u_int32_t *output,
const unsigned char *input,
unsigned int len)
84 for (i = 0; i < len; i += 4) {
85 *output++ = input[i] | (input[i+1] << 8) | (input[i+2] << 16) |
92 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
93 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
94 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
98 #define F(x, y, z) (((x) & (y)) | ((~x) & (z)))
99 #define G(x, y, z) (((x) & (z)) | ((y) & (~z)))
100 #define H(x, y, z) ((x) ^ (y) ^ (z))
101 #define I(x, y, z) ((y) ^ ((x) | (~z)))
104 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
110 #define FF(a, b, c, d, x, s, ac) { \
111 (a) += F ((b), (c), (d)) + (x) + (u_int32_t)(ac); \
112 (a) = ROTATE_LEFT ((a), (s)); \
115 #define GG(a, b, c, d, x, s, ac) { \
116 (a) += G ((b), (c), (d)) + (x) + (u_int32_t)(ac); \
117 (a) = ROTATE_LEFT ((a), (s)); \
120 #define HH(a, b, c, d, x, s, ac) { \
121 (a) += H ((b), (c), (d)) + (x) + (u_int32_t)(ac); \
122 (a) = ROTATE_LEFT ((a), (s)); \
125 #define II(a, b, c, d, x, s, ac) { \
126 (a) += I ((b), (c), (d)) + (x) + (u_int32_t)(ac); \
127 (a) = ROTATE_LEFT ((a), (s)); \
138 context->count[0] = context->count[1] = 0;
141 context->state[0] = 0x67452301;
142 context->state[1] = 0xefcdab89;
143 context->state[2] = 0x98badcfe;
144 context->state[3] = 0x10325476;
157 unsigned int inputLen;
159 unsigned int i, index, partLen;
160 const unsigned char *input = in;
163 index = (
unsigned int)((context->count[0] >> 3) & 0x3F);
166 if ((context->count[0] += ((u_int32_t)inputLen << 3))
167 < ((u_int32_t)inputLen << 3))
169 context->count[1] += ((u_int32_t)inputLen >> 29);
171 partLen = 64 - index;
174 if (inputLen >= partLen) {
175 memcpy((
void *)&context->buffer[index], (
const void *)input,
179 for (i = partLen; i + 63 < inputLen; i += 64)
188 memcpy ((
void *)&context->buffer[index], (
const void *)&input[i],
199 unsigned char bits[8];
200 unsigned int index, padLen;
203 Encode (bits, context->count, 8);
206 index = (
unsigned int)((context->count[0] >> 3) & 0x3f);
207 padLen = (index < 56) ? (56 - index) : (120 - index);
221 unsigned
char digest[16];
228 Encode (digest, context->state, 16);
231 memset ((
void *)context, 0,
sizeof (*context));
239 const
unsigned char block[64];
241 u_int32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16];
250 FF (a, b, c, d, x[ 0],
S11, 0xd76aa478);
251 FF (d, a, b, c, x[ 1],
S12, 0xe8c7b756);
252 FF (c, d, a, b, x[ 2],
S13, 0x242070db);
253 FF (b, c, d, a, x[ 3],
S14, 0xc1bdceee);
254 FF (a, b, c, d, x[ 4],
S11, 0xf57c0faf);
255 FF (d, a, b, c, x[ 5],
S12, 0x4787c62a);
256 FF (c, d, a, b, x[ 6],
S13, 0xa8304613);
257 FF (b, c, d, a, x[ 7],
S14, 0xfd469501);
258 FF (a, b, c, d, x[ 8],
S11, 0x698098d8);
259 FF (d, a, b, c, x[ 9],
S12, 0x8b44f7af);
260 FF (c, d, a, b, x[10],
S13, 0xffff5bb1);
261 FF (b, c, d, a, x[11],
S14, 0x895cd7be);
262 FF (a, b, c, d, x[12],
S11, 0x6b901122);
263 FF (d, a, b, c, x[13],
S12, 0xfd987193);
264 FF (c, d, a, b, x[14],
S13, 0xa679438e);
265 FF (b, c, d, a, x[15],
S14, 0x49b40821);
272 GG (a, b, c, d, x[ 1],
S21, 0xf61e2562);
273 GG (d, a, b, c, x[ 6],
S22, 0xc040b340);
274 GG (c, d, a, b, x[11],
S23, 0x265e5a51);
275 GG (b, c, d, a, x[ 0],
S24, 0xe9b6c7aa);
276 GG (a, b, c, d, x[ 5],
S21, 0xd62f105d);
277 GG (d, a, b, c, x[10],
S22, 0x2441453);
278 GG (c, d, a, b, x[15],
S23, 0xd8a1e681);
279 GG (b, c, d, a, x[ 4],
S24, 0xe7d3fbc8);
280 GG (a, b, c, d, x[ 9],
S21, 0x21e1cde6);
281 GG (d, a, b, c, x[14],
S22, 0xc33707d6);
282 GG (c, d, a, b, x[ 3],
S23, 0xf4d50d87);
283 GG (b, c, d, a, x[ 8],
S24, 0x455a14ed);
284 GG (a, b, c, d, x[13],
S21, 0xa9e3e905);
285 GG (d, a, b, c, x[ 2],
S22, 0xfcefa3f8);
286 GG (c, d, a, b, x[ 7],
S23, 0x676f02d9);
287 GG (b, c, d, a, x[12],
S24, 0x8d2a4c8a);
294 HH (a, b, c, d, x[ 5],
S31, 0xfffa3942);
295 HH (d, a, b, c, x[ 8],
S32, 0x8771f681);
296 HH (c, d, a, b, x[11],
S33, 0x6d9d6122);
297 HH (b, c, d, a, x[14],
S34, 0xfde5380c);
298 HH (a, b, c, d, x[ 1],
S31, 0xa4beea44);
299 HH (d, a, b, c, x[ 4],
S32, 0x4bdecfa9);
300 HH (c, d, a, b, x[ 7],
S33, 0xf6bb4b60);
301 HH (b, c, d, a, x[10],
S34, 0xbebfbc70);
302 HH (a, b, c, d, x[13],
S31, 0x289b7ec6);
303 HH (d, a, b, c, x[ 0],
S32, 0xeaa127fa);
304 HH (c, d, a, b, x[ 3],
S33, 0xd4ef3085);
305 HH (b, c, d, a, x[ 6],
S34, 0x4881d05);
306 HH (a, b, c, d, x[ 9],
S31, 0xd9d4d039);
307 HH (d, a, b, c, x[12],
S32, 0xe6db99e5);
308 HH (c, d, a, b, x[15],
S33, 0x1fa27cf8);
309 HH (b, c, d, a, x[ 2],
S34, 0xc4ac5665);
316 II (a, b, c, d, x[ 0],
S41, 0xf4292244);
317 II (d, a, b, c, x[ 7],
S42, 0x432aff97);
318 II (c, d, a, b, x[14],
S43, 0xab9423a7);
319 II (b, c, d, a, x[ 5],
S44, 0xfc93a039);
320 II (a, b, c, d, x[12],
S41, 0x655b59c3);
321 II (d, a, b, c, x[ 3],
S42, 0x8f0ccc92);
322 II (c, d, a, b, x[10],
S43, 0xffeff47d);
323 II (b, c, d, a, x[ 1],
S44, 0x85845dd1);
324 II (a, b, c, d, x[ 8],
S41, 0x6fa87e4f);
325 II (d, a, b, c, x[15],
S42, 0xfe2ce6e0);
326 II (c, d, a, b, x[ 6],
S43, 0xa3014314);
327 II (b, c, d, a, x[13],
S44, 0x4e0811a1);
328 II (a, b, c, d, x[ 4],
S41, 0xf7537e82);
329 II (d, a, b, c, x[11],
S42, 0xbd3af235);
330 II (c, d, a, b, x[ 2],
S43, 0x2ad7d2bb);
331 II (b, c, d, a, x[ 9],
S44, 0xeb86d391);
339 memset ((
void *)x, 0,
sizeof (x));
void MD5Init(MD5_CTX *context)
#define GG(a, b, c, d, x, s, ac)
void MD5Final(digest, MD5_CTX *context)
void MD5Update(MD5_CTX *context, const void *in, unsigned int inputLen)
static unsigned char PADDING[64]
#define II(a, b, c, d, x, s, ac)
#define HH(a, b, c, d, x, s, ac)
#define FF(a, b, c, d, x, s, ac)
static void MD5Pad(MD5_CTX *context)
static void MD5Transform(u_int32_t[4], const unsigned char[64])