xref: /btstack/3rd-party/md5/md5.c (revision 9201a494d123d302028720935d5a7154c1951713)
1*9201a494SMatthias Ringwald /*
2*9201a494SMatthias Ringwald  * This is an OpenSSL-compatible implementation of the RSA Data Security, Inc.
3*9201a494SMatthias Ringwald  * MD5 Message-Digest Algorithm (RFC 1321).
4*9201a494SMatthias Ringwald  *
5*9201a494SMatthias Ringwald  * Homepage:
6*9201a494SMatthias Ringwald  * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
7*9201a494SMatthias Ringwald  *
8*9201a494SMatthias Ringwald  * Author:
9*9201a494SMatthias Ringwald  * Alexander Peslyak, better known as Solar Designer <solar at openwall.com>
10*9201a494SMatthias Ringwald  *
11*9201a494SMatthias Ringwald  * This software was written by Alexander Peslyak in 2001.  No copyright is
12*9201a494SMatthias Ringwald  * claimed, and the software is hereby placed in the public domain.
13*9201a494SMatthias Ringwald  * In case this attempt to disclaim copyright and place the software in the
14*9201a494SMatthias Ringwald  * public domain is deemed null and void, then the software is
15*9201a494SMatthias Ringwald  * Copyright (c) 2001 Alexander Peslyak and it is hereby released to the
16*9201a494SMatthias Ringwald  * general public under the following terms:
17*9201a494SMatthias Ringwald  *
18*9201a494SMatthias Ringwald  * Redistribution and use in source and binary forms, with or without
19*9201a494SMatthias Ringwald  * modification, are permitted.
20*9201a494SMatthias Ringwald  *
21*9201a494SMatthias Ringwald  * There's ABSOLUTELY NO WARRANTY, express or implied.
22*9201a494SMatthias Ringwald  *
23*9201a494SMatthias Ringwald  * (This is a heavily cut-down "BSD license".)
24*9201a494SMatthias Ringwald  *
25*9201a494SMatthias Ringwald  * This differs from Colin Plumb's older public domain implementation in that
26*9201a494SMatthias Ringwald  * no exactly 32-bit integer data type is required (any 32-bit or wider
27*9201a494SMatthias Ringwald  * unsigned integer data type will do), there's no compile-time endianness
28*9201a494SMatthias Ringwald  * configuration, and the function prototypes match OpenSSL's.  No code from
29*9201a494SMatthias Ringwald  * Colin Plumb's implementation has been reused; this comment merely compares
30*9201a494SMatthias Ringwald  * the properties of the two independent implementations.
31*9201a494SMatthias Ringwald  *
32*9201a494SMatthias Ringwald  * The primary goals of this implementation are portability and ease of use.
33*9201a494SMatthias Ringwald  * It is meant to be fast, but not as fast as possible.  Some known
34*9201a494SMatthias Ringwald  * optimizations are not included to reduce source code size and avoid
35*9201a494SMatthias Ringwald  * compile-time configuration.
36*9201a494SMatthias Ringwald  */
37*9201a494SMatthias Ringwald 
38*9201a494SMatthias Ringwald #ifndef HAVE_OPENSSL
39*9201a494SMatthias Ringwald 
40*9201a494SMatthias Ringwald #include <string.h>
41*9201a494SMatthias Ringwald 
42*9201a494SMatthias Ringwald #include "md5.h"
43*9201a494SMatthias Ringwald 
44*9201a494SMatthias Ringwald /*
45*9201a494SMatthias Ringwald  * The basic MD5 functions.
46*9201a494SMatthias Ringwald  *
47*9201a494SMatthias Ringwald  * F and G are optimized compared to their RFC 1321 definitions for
48*9201a494SMatthias Ringwald  * architectures that lack an AND-NOT instruction, just like in Colin Plumb's
49*9201a494SMatthias Ringwald  * implementation.
50*9201a494SMatthias Ringwald  */
51*9201a494SMatthias Ringwald #define F(x, y, z)			((z) ^ ((x) & ((y) ^ (z))))
52*9201a494SMatthias Ringwald #define G(x, y, z)			((y) ^ ((z) & ((x) ^ (y))))
53*9201a494SMatthias Ringwald #define H(x, y, z)			(((x) ^ (y)) ^ (z))
54*9201a494SMatthias Ringwald #define H2(x, y, z)			((x) ^ ((y) ^ (z)))
55*9201a494SMatthias Ringwald #define I(x, y, z)			((y) ^ ((x) | ~(z)))
56*9201a494SMatthias Ringwald 
57*9201a494SMatthias Ringwald /*
58*9201a494SMatthias Ringwald  * The MD5 transformation for all four rounds.
59*9201a494SMatthias Ringwald  */
60*9201a494SMatthias Ringwald #define STEP(f, a, b, c, d, x, t, s) \
61*9201a494SMatthias Ringwald 	(a) += f((b), (c), (d)) + (x) + (t); \
62*9201a494SMatthias Ringwald 	(a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s)))); \
63*9201a494SMatthias Ringwald 	(a) += (b);
64*9201a494SMatthias Ringwald 
65*9201a494SMatthias Ringwald /*
66*9201a494SMatthias Ringwald  * SET reads 4 input bytes in little-endian byte order and stores them in a
67*9201a494SMatthias Ringwald  * properly aligned word in host byte order.
68*9201a494SMatthias Ringwald  *
69*9201a494SMatthias Ringwald  * The check for little-endian architectures that tolerate unaligned memory
70*9201a494SMatthias Ringwald  * accesses is just an optimization.  Nothing will break if it fails to detect
71*9201a494SMatthias Ringwald  * a suitable architecture.
72*9201a494SMatthias Ringwald  *
73*9201a494SMatthias Ringwald  * Unfortunately, this optimization may be a C strict aliasing rules violation
74*9201a494SMatthias Ringwald  * if the caller's data buffer has effective type that cannot be aliased by
75*9201a494SMatthias Ringwald  * MD5_u32plus.  In practice, this problem may occur if these MD5 routines are
76*9201a494SMatthias Ringwald  * inlined into a calling function, or with future and dangerously advanced
77*9201a494SMatthias Ringwald  * link-time optimizations.  For the time being, keeping these MD5 routines in
78*9201a494SMatthias Ringwald  * their own translation unit avoids the problem.
79*9201a494SMatthias Ringwald  */
80*9201a494SMatthias Ringwald #if defined(__i386__) || defined(__x86_64__) || defined(__vax__)
81*9201a494SMatthias Ringwald #define SET(n) \
82*9201a494SMatthias Ringwald 	(*(MD5_u32plus *)&ptr[(n) * 4])
83*9201a494SMatthias Ringwald #define GET(n) \
84*9201a494SMatthias Ringwald 	SET(n)
85*9201a494SMatthias Ringwald #else
86*9201a494SMatthias Ringwald #define SET(n) \
87*9201a494SMatthias Ringwald 	(ctx->block[(n)] = \
88*9201a494SMatthias Ringwald 	(MD5_u32plus)ptr[(n) * 4] | \
89*9201a494SMatthias Ringwald 	((MD5_u32plus)ptr[(n) * 4 + 1] << 8) | \
90*9201a494SMatthias Ringwald 	((MD5_u32plus)ptr[(n) * 4 + 2] << 16) | \
91*9201a494SMatthias Ringwald 	((MD5_u32plus)ptr[(n) * 4 + 3] << 24))
92*9201a494SMatthias Ringwald #define GET(n) \
93*9201a494SMatthias Ringwald 	(ctx->block[(n)])
94*9201a494SMatthias Ringwald #endif
95*9201a494SMatthias Ringwald 
96*9201a494SMatthias Ringwald /*
97*9201a494SMatthias Ringwald  * This processes one or more 64-byte data blocks, but does NOT update the bit
98*9201a494SMatthias Ringwald  * counters.  There are no alignment requirements.
99*9201a494SMatthias Ringwald  */
body(MD5_CTX * ctx,const void * data,unsigned long size)100*9201a494SMatthias Ringwald static const void *body(MD5_CTX *ctx, const void *data, unsigned long size)
101*9201a494SMatthias Ringwald {
102*9201a494SMatthias Ringwald 	const unsigned char *ptr;
103*9201a494SMatthias Ringwald 	MD5_u32plus a, b, c, d;
104*9201a494SMatthias Ringwald 	MD5_u32plus saved_a, saved_b, saved_c, saved_d;
105*9201a494SMatthias Ringwald 
106*9201a494SMatthias Ringwald 	ptr = (const unsigned char *)data;
107*9201a494SMatthias Ringwald 
108*9201a494SMatthias Ringwald 	a = ctx->a;
109*9201a494SMatthias Ringwald 	b = ctx->b;
110*9201a494SMatthias Ringwald 	c = ctx->c;
111*9201a494SMatthias Ringwald 	d = ctx->d;
112*9201a494SMatthias Ringwald 
113*9201a494SMatthias Ringwald 	do {
114*9201a494SMatthias Ringwald 		saved_a = a;
115*9201a494SMatthias Ringwald 		saved_b = b;
116*9201a494SMatthias Ringwald 		saved_c = c;
117*9201a494SMatthias Ringwald 		saved_d = d;
118*9201a494SMatthias Ringwald 
119*9201a494SMatthias Ringwald /* Round 1 */
120*9201a494SMatthias Ringwald 		STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
121*9201a494SMatthias Ringwald 		STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
122*9201a494SMatthias Ringwald 		STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
123*9201a494SMatthias Ringwald 		STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
124*9201a494SMatthias Ringwald 		STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
125*9201a494SMatthias Ringwald 		STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
126*9201a494SMatthias Ringwald 		STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
127*9201a494SMatthias Ringwald 		STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
128*9201a494SMatthias Ringwald 		STEP(F, a, b, c, d, SET(8), 0x698098d8, 7)
129*9201a494SMatthias Ringwald 		STEP(F, d, a, b, c, SET(9), 0x8b44f7af, 12)
130*9201a494SMatthias Ringwald 		STEP(F, c, d, a, b, SET(10), 0xffff5bb1, 17)
131*9201a494SMatthias Ringwald 		STEP(F, b, c, d, a, SET(11), 0x895cd7be, 22)
132*9201a494SMatthias Ringwald 		STEP(F, a, b, c, d, SET(12), 0x6b901122, 7)
133*9201a494SMatthias Ringwald 		STEP(F, d, a, b, c, SET(13), 0xfd987193, 12)
134*9201a494SMatthias Ringwald 		STEP(F, c, d, a, b, SET(14), 0xa679438e, 17)
135*9201a494SMatthias Ringwald 		STEP(F, b, c, d, a, SET(15), 0x49b40821, 22)
136*9201a494SMatthias Ringwald 
137*9201a494SMatthias Ringwald /* Round 2 */
138*9201a494SMatthias Ringwald 		STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
139*9201a494SMatthias Ringwald 		STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
140*9201a494SMatthias Ringwald 		STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
141*9201a494SMatthias Ringwald 		STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
142*9201a494SMatthias Ringwald 		STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
143*9201a494SMatthias Ringwald 		STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
144*9201a494SMatthias Ringwald 		STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
145*9201a494SMatthias Ringwald 		STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20)
146*9201a494SMatthias Ringwald 		STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5)
147*9201a494SMatthias Ringwald 		STEP(G, d, a, b, c, GET(14), 0xc33707d6, 9)
148*9201a494SMatthias Ringwald 		STEP(G, c, d, a, b, GET(3), 0xf4d50d87, 14)
149*9201a494SMatthias Ringwald 		STEP(G, b, c, d, a, GET(8), 0x455a14ed, 20)
150*9201a494SMatthias Ringwald 		STEP(G, a, b, c, d, GET(13), 0xa9e3e905, 5)
151*9201a494SMatthias Ringwald 		STEP(G, d, a, b, c, GET(2), 0xfcefa3f8, 9)
152*9201a494SMatthias Ringwald 		STEP(G, c, d, a, b, GET(7), 0x676f02d9, 14)
153*9201a494SMatthias Ringwald 		STEP(G, b, c, d, a, GET(12), 0x8d2a4c8a, 20)
154*9201a494SMatthias Ringwald 
155*9201a494SMatthias Ringwald /* Round 3 */
156*9201a494SMatthias Ringwald 		STEP(H, a, b, c, d, GET(5), 0xfffa3942, 4)
157*9201a494SMatthias Ringwald 		STEP(H2, d, a, b, c, GET(8), 0x8771f681, 11)
158*9201a494SMatthias Ringwald 		STEP(H, c, d, a, b, GET(11), 0x6d9d6122, 16)
159*9201a494SMatthias Ringwald 		STEP(H2, b, c, d, a, GET(14), 0xfde5380c, 23)
160*9201a494SMatthias Ringwald 		STEP(H, a, b, c, d, GET(1), 0xa4beea44, 4)
161*9201a494SMatthias Ringwald 		STEP(H2, d, a, b, c, GET(4), 0x4bdecfa9, 11)
162*9201a494SMatthias Ringwald 		STEP(H, c, d, a, b, GET(7), 0xf6bb4b60, 16)
163*9201a494SMatthias Ringwald 		STEP(H2, b, c, d, a, GET(10), 0xbebfbc70, 23)
164*9201a494SMatthias Ringwald 		STEP(H, a, b, c, d, GET(13), 0x289b7ec6, 4)
165*9201a494SMatthias Ringwald 		STEP(H2, d, a, b, c, GET(0), 0xeaa127fa, 11)
166*9201a494SMatthias Ringwald 		STEP(H, c, d, a, b, GET(3), 0xd4ef3085, 16)
167*9201a494SMatthias Ringwald 		STEP(H2, b, c, d, a, GET(6), 0x04881d05, 23)
168*9201a494SMatthias Ringwald 		STEP(H, a, b, c, d, GET(9), 0xd9d4d039, 4)
169*9201a494SMatthias Ringwald 		STEP(H2, d, a, b, c, GET(12), 0xe6db99e5, 11)
170*9201a494SMatthias Ringwald 		STEP(H, c, d, a, b, GET(15), 0x1fa27cf8, 16)
171*9201a494SMatthias Ringwald 		STEP(H2, b, c, d, a, GET(2), 0xc4ac5665, 23)
172*9201a494SMatthias Ringwald 
173*9201a494SMatthias Ringwald /* Round 4 */
174*9201a494SMatthias Ringwald 		STEP(I, a, b, c, d, GET(0), 0xf4292244, 6)
175*9201a494SMatthias Ringwald 		STEP(I, d, a, b, c, GET(7), 0x432aff97, 10)
176*9201a494SMatthias Ringwald 		STEP(I, c, d, a, b, GET(14), 0xab9423a7, 15)
177*9201a494SMatthias Ringwald 		STEP(I, b, c, d, a, GET(5), 0xfc93a039, 21)
178*9201a494SMatthias Ringwald 		STEP(I, a, b, c, d, GET(12), 0x655b59c3, 6)
179*9201a494SMatthias Ringwald 		STEP(I, d, a, b, c, GET(3), 0x8f0ccc92, 10)
180*9201a494SMatthias Ringwald 		STEP(I, c, d, a, b, GET(10), 0xffeff47d, 15)
181*9201a494SMatthias Ringwald 		STEP(I, b, c, d, a, GET(1), 0x85845dd1, 21)
182*9201a494SMatthias Ringwald 		STEP(I, a, b, c, d, GET(8), 0x6fa87e4f, 6)
183*9201a494SMatthias Ringwald 		STEP(I, d, a, b, c, GET(15), 0xfe2ce6e0, 10)
184*9201a494SMatthias Ringwald 		STEP(I, c, d, a, b, GET(6), 0xa3014314, 15)
185*9201a494SMatthias Ringwald 		STEP(I, b, c, d, a, GET(13), 0x4e0811a1, 21)
186*9201a494SMatthias Ringwald 		STEP(I, a, b, c, d, GET(4), 0xf7537e82, 6)
187*9201a494SMatthias Ringwald 		STEP(I, d, a, b, c, GET(11), 0xbd3af235, 10)
188*9201a494SMatthias Ringwald 		STEP(I, c, d, a, b, GET(2), 0x2ad7d2bb, 15)
189*9201a494SMatthias Ringwald 		STEP(I, b, c, d, a, GET(9), 0xeb86d391, 21)
190*9201a494SMatthias Ringwald 
191*9201a494SMatthias Ringwald 		a += saved_a;
192*9201a494SMatthias Ringwald 		b += saved_b;
193*9201a494SMatthias Ringwald 		c += saved_c;
194*9201a494SMatthias Ringwald 		d += saved_d;
195*9201a494SMatthias Ringwald 
196*9201a494SMatthias Ringwald 		ptr += 64;
197*9201a494SMatthias Ringwald 	} while (size -= 64);
198*9201a494SMatthias Ringwald 
199*9201a494SMatthias Ringwald 	ctx->a = a;
200*9201a494SMatthias Ringwald 	ctx->b = b;
201*9201a494SMatthias Ringwald 	ctx->c = c;
202*9201a494SMatthias Ringwald 	ctx->d = d;
203*9201a494SMatthias Ringwald 
204*9201a494SMatthias Ringwald 	return ptr;
205*9201a494SMatthias Ringwald }
206*9201a494SMatthias Ringwald 
MD5_Init(MD5_CTX * ctx)207*9201a494SMatthias Ringwald void MD5_Init(MD5_CTX *ctx)
208*9201a494SMatthias Ringwald {
209*9201a494SMatthias Ringwald 	ctx->a = 0x67452301;
210*9201a494SMatthias Ringwald 	ctx->b = 0xefcdab89;
211*9201a494SMatthias Ringwald 	ctx->c = 0x98badcfe;
212*9201a494SMatthias Ringwald 	ctx->d = 0x10325476;
213*9201a494SMatthias Ringwald 
214*9201a494SMatthias Ringwald 	ctx->lo = 0;
215*9201a494SMatthias Ringwald 	ctx->hi = 0;
216*9201a494SMatthias Ringwald }
217*9201a494SMatthias Ringwald 
MD5_Update(MD5_CTX * ctx,const void * data,unsigned long size)218*9201a494SMatthias Ringwald void MD5_Update(MD5_CTX *ctx, const void *data, unsigned long size)
219*9201a494SMatthias Ringwald {
220*9201a494SMatthias Ringwald 	MD5_u32plus saved_lo;
221*9201a494SMatthias Ringwald 	unsigned long used, available;
222*9201a494SMatthias Ringwald 
223*9201a494SMatthias Ringwald 	saved_lo = ctx->lo;
224*9201a494SMatthias Ringwald 	if ((ctx->lo = (saved_lo + size) & 0x1fffffff) < saved_lo)
225*9201a494SMatthias Ringwald 		ctx->hi++;
226*9201a494SMatthias Ringwald 	ctx->hi += size >> 29;
227*9201a494SMatthias Ringwald 
228*9201a494SMatthias Ringwald 	used = saved_lo & 0x3f;
229*9201a494SMatthias Ringwald 
230*9201a494SMatthias Ringwald 	if (used) {
231*9201a494SMatthias Ringwald 		available = 64 - used;
232*9201a494SMatthias Ringwald 
233*9201a494SMatthias Ringwald 		if (size < available) {
234*9201a494SMatthias Ringwald 			memcpy(&ctx->buffer[used], data, size);
235*9201a494SMatthias Ringwald 			return;
236*9201a494SMatthias Ringwald 		}
237*9201a494SMatthias Ringwald 
238*9201a494SMatthias Ringwald 		memcpy(&ctx->buffer[used], data, available);
239*9201a494SMatthias Ringwald 		data = (const unsigned char *)data + available;
240*9201a494SMatthias Ringwald 		size -= available;
241*9201a494SMatthias Ringwald 		body(ctx, ctx->buffer, 64);
242*9201a494SMatthias Ringwald 	}
243*9201a494SMatthias Ringwald 
244*9201a494SMatthias Ringwald 	if (size >= 64) {
245*9201a494SMatthias Ringwald 		data = body(ctx, data, size & ~(unsigned long)0x3f);
246*9201a494SMatthias Ringwald 		size &= 0x3f;
247*9201a494SMatthias Ringwald 	}
248*9201a494SMatthias Ringwald 
249*9201a494SMatthias Ringwald 	memcpy(ctx->buffer, data, size);
250*9201a494SMatthias Ringwald }
251*9201a494SMatthias Ringwald 
252*9201a494SMatthias Ringwald #define OUT(dst, src) \
253*9201a494SMatthias Ringwald 	(dst)[0] = (unsigned char)(src); \
254*9201a494SMatthias Ringwald 	(dst)[1] = (unsigned char)((src) >> 8); \
255*9201a494SMatthias Ringwald 	(dst)[2] = (unsigned char)((src) >> 16); \
256*9201a494SMatthias Ringwald 	(dst)[3] = (unsigned char)((src) >> 24);
257*9201a494SMatthias Ringwald 
MD5_Final(unsigned char * result,MD5_CTX * ctx)258*9201a494SMatthias Ringwald void MD5_Final(unsigned char *result, MD5_CTX *ctx)
259*9201a494SMatthias Ringwald {
260*9201a494SMatthias Ringwald 	unsigned long used, available;
261*9201a494SMatthias Ringwald 
262*9201a494SMatthias Ringwald 	used = ctx->lo & 0x3f;
263*9201a494SMatthias Ringwald 
264*9201a494SMatthias Ringwald 	ctx->buffer[used++] = 0x80;
265*9201a494SMatthias Ringwald 
266*9201a494SMatthias Ringwald 	available = 64 - used;
267*9201a494SMatthias Ringwald 
268*9201a494SMatthias Ringwald 	if (available < 8) {
269*9201a494SMatthias Ringwald 		memset(&ctx->buffer[used], 0, available);
270*9201a494SMatthias Ringwald 		body(ctx, ctx->buffer, 64);
271*9201a494SMatthias Ringwald 		used = 0;
272*9201a494SMatthias Ringwald 		available = 64;
273*9201a494SMatthias Ringwald 	}
274*9201a494SMatthias Ringwald 
275*9201a494SMatthias Ringwald 	memset(&ctx->buffer[used], 0, available - 8);
276*9201a494SMatthias Ringwald 
277*9201a494SMatthias Ringwald 	ctx->lo <<= 3;
278*9201a494SMatthias Ringwald 	OUT(&ctx->buffer[56], ctx->lo)
279*9201a494SMatthias Ringwald 	OUT(&ctx->buffer[60], ctx->hi)
280*9201a494SMatthias Ringwald 
281*9201a494SMatthias Ringwald 	body(ctx, ctx->buffer, 64);
282*9201a494SMatthias Ringwald 
283*9201a494SMatthias Ringwald 	OUT(&result[0], ctx->a)
284*9201a494SMatthias Ringwald 	OUT(&result[4], ctx->b)
285*9201a494SMatthias Ringwald 	OUT(&result[8], ctx->c)
286*9201a494SMatthias Ringwald 	OUT(&result[12], ctx->d)
287*9201a494SMatthias Ringwald 
288*9201a494SMatthias Ringwald 	memset(ctx, 0, sizeof(*ctx));
289*9201a494SMatthias Ringwald }
290*9201a494SMatthias Ringwald 
291*9201a494SMatthias Ringwald #endif
292