1 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4 // Implementation of MD5 hash function. Originally written by Alexander Peslyak. Modified by WaterJuice retaining
5 // Public Domain license.
7 // This is free and unencumbered software released into the public domain - June 2013 waterjuice.org
8 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
10 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
12 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
17 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
19 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
21 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
24 // The basic MD5 functions. F and G are optimised compared to their RFC 1321 definitions for architectures that lack
25 // an AND-NOT instruction, just like in Colin Plumb's implementation.
26 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
27 #define F( x, y, z ) ( (z) ^ ((x) & ((y) ^ (z))) )
28 #define G( x, y, z ) ( (y) ^ ((z) & ((x) ^ (y))) )
29 #define H( x, y, z ) ( (x) ^ (y) ^ (z) )
30 #define I( x, y, z ) ( (y) ^ ((x) | ~(z)) )
32 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
35 // The MD5 transformation for all four rounds.
36 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
37 #define STEP( f, a, b, c, d, x, t, s ) \
38 (a) += f((b), (c), (d)) + (x) + (t); \
39 (a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s)))); \
42 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
45 // This processes one or more 64-byte data blocks, but does NOT update the bit counters. There are no alignment
47 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
67 #define GET(n) (ctx->block[(n)])
68 #define SET(n) (ctx->block[(n)] = \
69 ((uint32_t)ptr[(n)*4 + 0] << 0 ) \
70 | ((uint32_t)ptr[(n)*4 + 1] << 8 ) \
71 | ((uint32_t)ptr[(n)*4 + 2] << 16) \
72 | ((uint32_t)ptr[(n)*4 + 3] << 24) )
89 STEP( F, a, b, c, d, SET(0), 0xd76aa478, 7 )
90 STEP( F, d, a, b, c, SET(1), 0xe8c7b756, 12 )
91 STEP( F, c, d, a, b, SET(2), 0x242070db, 17 )
92 STEP( F, b, c, d, a, SET(3), 0xc1bdceee, 22 )
93 STEP( F, a, b, c, d, SET(4), 0xf57c0faf, 7 )
94 STEP( F, d, a, b, c, SET(5), 0x4787c62a, 12 )
95 STEP( F, c, d, a, b, SET(6), 0xa8304613, 17 )
96 STEP( F, b, c, d, a, SET(7), 0xfd469501, 22 )
97 STEP( F, a, b, c, d, SET(8 ), 0x698098d8, 7 )
98 STEP( F, d, a, b, c, SET(9 ), 0x8b44f7af, 12 )
99 STEP( F, c, d, a, b, SET(10 ), 0xffff5bb1, 17 )
100 STEP( F, b, c, d, a, SET(11 ), 0x895cd7be, 22 )
101 STEP( F, a, b, c, d, SET(12 ), 0x6b901122, 7 )
102 STEP( F, d, a, b, c, SET(13 ), 0xfd987193, 12 )
103 STEP( F, c, d, a, b, SET(14 ), 0xa679438e, 17 )
104 STEP( F, b, c, d, a, SET(15 ), 0x49b40821, 22 )
107 STEP( G, a, b, c, d, GET(1), 0xf61e2562, 5 )
108 STEP( G, d, a, b, c, GET(6), 0xc040b340, 9 )
109 STEP( G, c, d, a, b, GET(11), 0x265e5a51, 14 )
110 STEP( G, b, c, d, a, GET(0), 0xe9b6c7aa, 20 )
111 STEP( G, a, b, c, d, GET(5), 0xd62f105d, 5 )
112 STEP( G, d, a, b, c, GET(10), 0x02441453, 9 )
113 STEP( G, c, d, a, b, GET(15), 0xd8a1e681, 14 )
114 STEP( G, b, c, d, a, GET(4), 0xe7d3fbc8, 20 )
115 STEP( G, a, b, c, d, GET(9), 0x21e1cde6, 5 )
116 STEP( G, d, a, b, c, GET(14), 0xc33707d6, 9 )
117 STEP( G, c, d, a, b, GET(3), 0xf4d50d87, 14 )
118 STEP( G, b, c, d, a, GET(8), 0x455a14ed, 20 )
119 STEP( G, a, b, c, d, GET(13), 0xa9e3e905, 5 )
120 STEP( G, d, a, b, c, GET(2), 0xfcefa3f8, 9 )
121 STEP( G, c, d, a, b, GET(7), 0x676f02d9, 14 )
122 STEP( G, b, c, d, a, GET(12), 0x8d2a4c8a, 20 )
125 STEP( H, a, b, c, d, GET(5), 0xfffa3942, 4 )
126 STEP( H, d, a, b, c, GET(8), 0x8771f681, 11 )
127 STEP( H, c, d, a, b, GET(11), 0x6d9d6122, 16 )
128 STEP( H, b, c, d, a, GET(14), 0xfde5380c, 23 )
129 STEP( H, a, b, c, d, GET(1), 0xa4beea44, 4 )
130 STEP( H, d, a, b, c, GET(4), 0x4bdecfa9, 11 )
131 STEP( H, c, d, a, b, GET(7), 0xf6bb4b60, 16 )
132 STEP( H, b, c, d, a, GET(10), 0xbebfbc70, 23 )
133 STEP( H, a, b, c, d, GET(13), 0x289b7ec6, 4 )
134 STEP( H, d, a, b, c, GET(0), 0xeaa127fa, 11 )
135 STEP( H, c, d, a, b, GET(3), 0xd4ef3085, 16 )
136 STEP( H, b, c, d, a, GET(6), 0x04881d05, 23 )
137 STEP( H, a, b, c, d, GET(9), 0xd9d4d039, 4 )
138 STEP( H, d, a, b, c, GET(12), 0xe6db99e5, 11 )
139 STEP( H, c, d, a, b, GET(15), 0x1fa27cf8, 16 )
140 STEP( H, b, c, d, a, GET(2), 0xc4ac5665, 23 )
143 STEP( I, a, b, c, d, GET(0), 0xf4292244, 6 )
144 STEP( I, d, a, b, c, GET(7), 0x432aff97, 10 )
145 STEP( I, c, d, a, b, GET(14), 0xab9423a7, 15 )
146 STEP( I, b, c, d, a, GET(5), 0xfc93a039, 21 )
147 STEP( I, a, b, c, d, GET(12), 0x655b59c3, 6 )
148 STEP( I, d, a, b, c, GET(3), 0x8f0ccc92, 10 )
149 STEP( I, c, d, a, b, GET(10), 0xffeff47d, 15 )
150 STEP( I, b, c, d, a, GET(1), 0x85845dd1, 21 )
151 STEP( I, a, b, c, d, GET(8), 0x6fa87e4f, 6 )
152 STEP( I, d, a, b, c, GET(15), 0xfe2ce6e0, 10 )
153 STEP( I, c, d, a, b, GET(6), 0xa3014314, 15 )
154 STEP( I, b, c, d, a, GET(13), 0x4e0811a1, 21 )
155 STEP( I, a, b, c, d, GET(4), 0xf7537e82, 6 )
156 STEP( I, d, a, b, c, GET(11), 0xbd3af235, 10 )
157 STEP( I, c, d, a, b, GET(2), 0x2ad7d2bb, 15 )
158 STEP( I, b, c, d, a, GET(9), 0xeb86d391, 21 )
166 } while( size -= 64 );
179 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
180 // EXPORTED FUNCTIONS
181 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
183 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
186 // Initialises an MD5 Context. Use this to initialise/reset a context.
187 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
191 Md5Context* Context // [out]
194 Context->a = 0x67452301;
195 Context->b = 0xefcdab89;
196 Context->c = 0x98badcfe;
197 Context->d = 0x10325476;
203 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
206 // Adds data to the MD5 context. This will process the data and update the internal state of the context. Keep on
207 // calling this function until all the data has been added. Then call Md5Finalise to calculate the hash.
208 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
212 Md5Context* Context, // [in out]
213 void const* Buffer, // [in]
214 uint32_t BufferSize // [in]
221 saved_lo = Context->lo;
222 if( (Context->lo = (saved_lo + BufferSize) & 0x1fffffff) < saved_lo )
226 Context->hi += (uint32_t)( BufferSize >> 29 );
228 used = saved_lo & 0x3f;
234 if( BufferSize < free )
236 memcpy( &Context->buffer[used], Buffer, BufferSize );
240 memcpy( &Context->buffer[used], Buffer, free );
241 Buffer = (uint8_t*)Buffer + free;
243 TransformFunction(Context, Context->buffer, 64);
246 if( BufferSize >= 64 )
248 Buffer = TransformFunction( Context, Buffer, BufferSize & ~(unsigned long)0x3f );
252 memcpy( Context->buffer, Buffer, BufferSize );
255 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
258 // Performs the final calculation of the hash and returns the digest (16 byte buffer containing 128bit hash). After
259 // calling this, Md5Initialised must be used to reuse the context.
260 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
264 Md5Context* Context, // [in out]
265 MD5_HASH* Digest // [in]
271 used = Context->lo & 0x3f;
273 Context->buffer[used++] = 0x80;
279 memset( &Context->buffer[used], 0, free );
280 TransformFunction( Context, Context->buffer, 64 );
285 memset( &Context->buffer[used], 0, free - 8 );
288 Context->buffer[56] = (uint8_t)( Context->lo );
289 Context->buffer[57] = (uint8_t)( Context->lo >> 8 );
290 Context->buffer[58] = (uint8_t)( Context->lo >> 16 );
291 Context->buffer[59] = (uint8_t)( Context->lo >> 24 );
292 Context->buffer[60] = (uint8_t)( Context->hi );
293 Context->buffer[61] = (uint8_t)( Context->hi >> 8 );
294 Context->buffer[62] = (uint8_t)( Context->hi >> 16 );
295 Context->buffer[63] = (uint8_t)( Context->hi >> 24 );
297 TransformFunction( Context, Context->buffer, 64 );
299 Digest->bytes[0] = (uint8_t)( Context->a );
300 Digest->bytes[1] = (uint8_t)( Context->a >> 8 );
301 Digest->bytes[2] = (uint8_t)( Context->a >> 16 );
302 Digest->bytes[3] = (uint8_t)( Context->a >> 24 );
303 Digest->bytes[4] = (uint8_t)( Context->b );
304 Digest->bytes[5] = (uint8_t)( Context->b >> 8 );
305 Digest->bytes[6] = (uint8_t)( Context->b >> 16 );
306 Digest->bytes[7] = (uint8_t)( Context->b >> 24 );
307 Digest->bytes[8] = (uint8_t)( Context->c );
308 Digest->bytes[9] = (uint8_t)( Context->c >> 8 );
309 Digest->bytes[10] = (uint8_t)( Context->c >> 16 );
310 Digest->bytes[11] = (uint8_t)( Context->c >> 24 );
311 Digest->bytes[12] = (uint8_t)( Context->d );
312 Digest->bytes[13] = (uint8_t)( Context->d >> 8 );
313 Digest->bytes[14] = (uint8_t)( Context->d >> 16 );
314 Digest->bytes[15] = (uint8_t)( Context->d >> 24 );
317 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
320 // Combines Md5Initialise, Md5Update, and Md5Finalise into one function. Calculates the MD5 hash of the buffer.
321 ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
325 void const* Buffer, // [in]
326 uint32_t BufferSize, // [in]
327 MD5_HASH* Digest // [in]
332 Md5Initialise( &context );
333 Md5Update( &context, Buffer, BufferSize );
334 Md5Finalise( &context, Digest );