38 m_hash[0] = 0x67452301;
39 m_hash[1] = 0xefcdab89;
40 m_hash[2] = 0x98badcfe;
41 m_hash[3] = 0x10325476;
48 inline uint32_t f1(uint32_t b, uint32_t c, uint32_t d)
50 return d ^ (b & (c ^ d));
53 inline uint32_t f2(uint32_t b, uint32_t c, uint32_t d)
55 return c ^ (d & (b ^ c));
58 inline uint32_t f3(uint32_t b, uint32_t c, uint32_t d)
63 inline uint32_t f4(uint32_t b, uint32_t c, uint32_t d)
68 inline uint32_t rotate(uint32_t a, uint32_t c)
70 return (a << c) | (a >> (32 - c));
73#if defined(__BYTE_ORDER) && (__BYTE_ORDER != 0) && (__BYTE_ORDER == __BIG_ENDIAN)
74 inline uint32_t swap(uint32_t x)
76#if defined(__GNUC__) || defined(__clang__)
77 return __builtin_bswap32(x);
80 return _byteswap_ulong(x);
84 ((x >> 8) & 0x0000FF00) |
85 ((x << 8) & 0x00FF0000) |
93void MD5::processBlock(
const void* data)
96 uint32_t a = m_hash[0];
97 uint32_t b = m_hash[1];
98 uint32_t c = m_hash[2];
99 uint32_t d = m_hash[3];
102 const uint32_t* words = (uint32_t*) data;
105#if defined(__BYTE_ORDER) && (__BYTE_ORDER != 0) && (__BYTE_ORDER == __BIG_ENDIAN)
106#define LITTLEENDIAN(x) swap(x)
108#define LITTLEENDIAN(x) (x)
113 a = rotate(a + f1(b,c,d) + word0 + 0xd76aa478, 7) + b;
115 d = rotate(d + f1(a,b,c) + word1 + 0xe8c7b756, 12) + a;
117 c = rotate(c + f1(d,a,b) + word2 + 0x242070db, 17) + d;
119 b = rotate(b + f1(c,d,a) + word3 + 0xc1bdceee, 22) + c;
122 a = rotate(a + f1(b,c,d) + word4 + 0xf57c0faf, 7) + b;
124 d = rotate(d + f1(a,b,c) + word5 + 0x4787c62a, 12) + a;
126 c = rotate(c + f1(d,a,b) + word6 + 0xa8304613, 17) + d;
128 b = rotate(b + f1(c,d,a) + word7 + 0xfd469501, 22) + c;
131 a = rotate(a + f1(b,c,d) + word8 + 0x698098d8, 7) + b;
133 d = rotate(d + f1(a,b,c) + word9 + 0x8b44f7af, 12) + a;
135 c = rotate(c + f1(d,a,b) + word10 + 0xffff5bb1, 17) + d;
137 b = rotate(b + f1(c,d,a) + word11 + 0x895cd7be, 22) + c;
140 a = rotate(a + f1(b,c,d) + word12 + 0x6b901122, 7) + b;
142 d = rotate(d + f1(a,b,c) + word13 + 0xfd987193, 12) + a;
144 c = rotate(c + f1(d,a,b) + word14 + 0xa679438e, 17) + d;
146 b = rotate(b + f1(c,d,a) + word15 + 0x49b40821, 22) + c;
149 a = rotate(a + f2(b,c,d) + word1 + 0xf61e2562, 5) + b;
150 d = rotate(d + f2(a,b,c) + word6 + 0xc040b340, 9) + a;
151 c = rotate(c + f2(d,a,b) + word11 + 0x265e5a51, 14) + d;
152 b = rotate(b + f2(c,d,a) + word0 + 0xe9b6c7aa, 20) + c;
154 a = rotate(a + f2(b,c,d) + word5 + 0xd62f105d, 5) + b;
155 d = rotate(d + f2(a,b,c) + word10 + 0x02441453, 9) + a;
156 c = rotate(c + f2(d,a,b) + word15 + 0xd8a1e681, 14) + d;
157 b = rotate(b + f2(c,d,a) + word4 + 0xe7d3fbc8, 20) + c;
159 a = rotate(a + f2(b,c,d) + word9 + 0x21e1cde6, 5) + b;
160 d = rotate(d + f2(a,b,c) + word14 + 0xc33707d6, 9) + a;
161 c = rotate(c + f2(d,a,b) + word3 + 0xf4d50d87, 14) + d;
162 b = rotate(b + f2(c,d,a) + word8 + 0x455a14ed, 20) + c;
164 a = rotate(a + f2(b,c,d) + word13 + 0xa9e3e905, 5) + b;
165 d = rotate(d + f2(a,b,c) + word2 + 0xfcefa3f8, 9) + a;
166 c = rotate(c + f2(d,a,b) + word7 + 0x676f02d9, 14) + d;
167 b = rotate(b + f2(c,d,a) + word12 + 0x8d2a4c8a, 20) + c;
170 a = rotate(a + f3(b,c,d) + word5 + 0xfffa3942, 4) + b;
171 d = rotate(d + f3(a,b,c) + word8 + 0x8771f681, 11) + a;
172 c = rotate(c + f3(d,a,b) + word11 + 0x6d9d6122, 16) + d;
173 b = rotate(b + f3(c,d,a) + word14 + 0xfde5380c, 23) + c;
175 a = rotate(a + f3(b,c,d) + word1 + 0xa4beea44, 4) + b;
176 d = rotate(d + f3(a,b,c) + word4 + 0x4bdecfa9, 11) + a;
177 c = rotate(c + f3(d,a,b) + word7 + 0xf6bb4b60, 16) + d;
178 b = rotate(b + f3(c,d,a) + word10 + 0xbebfbc70, 23) + c;
180 a = rotate(a + f3(b,c,d) + word13 + 0x289b7ec6, 4) + b;
181 d = rotate(d + f3(a,b,c) + word0 + 0xeaa127fa, 11) + a;
182 c = rotate(c + f3(d,a,b) + word3 + 0xd4ef3085, 16) + d;
183 b = rotate(b + f3(c,d,a) + word6 + 0x04881d05, 23) + c;
185 a = rotate(a + f3(b,c,d) + word9 + 0xd9d4d039, 4) + b;
186 d = rotate(d + f3(a,b,c) + word12 + 0xe6db99e5, 11) + a;
187 c = rotate(c + f3(d,a,b) + word15 + 0x1fa27cf8, 16) + d;
188 b = rotate(b + f3(c,d,a) + word2 + 0xc4ac5665, 23) + c;
191 a = rotate(a + f4(b,c,d) + word0 + 0xf4292244, 6) + b;
192 d = rotate(d + f4(a,b,c) + word7 + 0x432aff97, 10) + a;
193 c = rotate(c + f4(d,a,b) + word14 + 0xab9423a7, 15) + d;
194 b = rotate(b + f4(c,d,a) + word5 + 0xfc93a039, 21) + c;
196 a = rotate(a + f4(b,c,d) + word12 + 0x655b59c3, 6) + b;
197 d = rotate(d + f4(a,b,c) + word3 + 0x8f0ccc92, 10) + a;
198 c = rotate(c + f4(d,a,b) + word10 + 0xffeff47d, 15) + d;
199 b = rotate(b + f4(c,d,a) + word1 + 0x85845dd1, 21) + c;
201 a = rotate(a + f4(b,c,d) + word8 + 0x6fa87e4f, 6) + b;
202 d = rotate(d + f4(a,b,c) + word15 + 0xfe2ce6e0, 10) + a;
203 c = rotate(c + f4(d,a,b) + word6 + 0xa3014314, 15) + d;
204 b = rotate(b + f4(c,d,a) + word13 + 0x4e0811a1, 21) + c;
206 a = rotate(a + f4(b,c,d) + word4 + 0xf7537e82, 6) + b;
207 d = rotate(d + f4(a,b,c) + word11 + 0xbd3af235, 10) + a;
208 c = rotate(c + f4(d,a,b) + word2 + 0x2ad7d2bb, 15) + d;
209 b = rotate(b + f4(c,d,a) + word9 + 0xeb86d391, 21) + c;
220void MD5::add(
const void* data,
size_t numBytes)
222 const uint8_t* current = (
const uint8_t*) data;
224 if (m_bufferSize > 0)
226 while (numBytes > 0 && m_bufferSize <
BlockSize)
228 m_buffer[m_bufferSize++] = *current++;
236 processBlock(m_buffer);
248 processBlock(current);
257 m_buffer[m_bufferSize++] = *current++;
264void MD5::processBuffer()
273 size_t paddedLength = m_bufferSize * 8;
279 size_t lower11Bits = paddedLength & 511;
280 if (lower11Bits <= 448)
281 paddedLength += 448 - lower11Bits;
283 paddedLength += 512 + 448 - lower11Bits;
292 m_buffer[m_bufferSize] = 128;
297 for (i = m_bufferSize + 1; i <
BlockSize; i++)
299 for (; i < paddedLength; i++)
303 uint64_t msgBits = 8 * (m_numBytes + m_bufferSize);
305 unsigned char* addLength;
307 addLength = m_buffer + paddedLength;
309 addLength = extra + paddedLength -
BlockSize;
312 *addLength++ = msgBits & 0xFF; msgBits >>= 8;
313 *addLength++ = msgBits & 0xFF; msgBits >>= 8;
314 *addLength++ = msgBits & 0xFF; msgBits >>= 8;
315 *addLength++ = msgBits & 0xFF; msgBits >>= 8;
316 *addLength++ = msgBits & 0xFF; msgBits >>= 8;
317 *addLength++ = msgBits & 0xFF; msgBits >>= 8;
318 *addLength++ = msgBits & 0xFF; msgBits >>= 8;
319 *addLength++ = msgBits & 0xFF;
322 processBlock(m_buffer);
341 static const char dec2hex[16+1] =
"0123456789abcdef";
342 result += dec2hex[(rawHash[i] >> 4) & 15];
343 result += dec2hex[ rawHash[i] & 15];
354 uint32_t oldHash[HashValues];
355 for (
int i = 0; i < HashValues; i++)
356 oldHash[i] = m_hash[i];
361 unsigned char* current = buffer;
362 for (
int i = 0; i < HashValues; i++)
364 *current++ = m_hash[i] & 0xFF;
365 *current++ = (m_hash[i] >> 8) & 0xFF;
366 *current++ = (m_hash[i] >> 16) & 0xFF;
367 *current++ = (m_hash[i] >> 24) & 0xFF;
370 m_hash[i] = oldHash[i];
388 add(text.c_str(), text.size());
std::string operator()(const void *data, size_t numBytes)
compute MD5 of a memory block
void add(const void *data, size_t numBytes)
add arbitrary number of bytes
std::string getHash()
return latest hash as 32 hex characters
Third-party (vendored): MD5 hash from Stephan Brumme's portable hashing library (create....
Usage: std::string msg = "The quick brown fox jumps over the lazy dog"; std::string key = "key"; std:...