blob: 9c75caeec4ae4b608b42cdd4e135b88043313be3 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * RFC 1321 compliant MD5 implementation
3 *
Bence Szépkúti44bfbe32020-08-19 16:54:51 +02004 * Copyright The Mbed TLS Contributors
Bence Szépkúti4e9f7122020-06-05 13:02:18 +02005 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
6 *
7 * This file is provided under the Apache License 2.0, or the
8 * GNU General Public License v2.0 or later.
9 *
10 * **********
11 * Apache License 2.0:
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +020012 *
13 * Licensed under the Apache License, Version 2.0 (the "License"); you may
14 * not use this file except in compliance with the License.
15 * You may obtain a copy of the License at
16 *
17 * http://www.apache.org/licenses/LICENSE-2.0
18 *
19 * Unless required by applicable law or agreed to in writing, software
20 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
21 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * See the License for the specific language governing permissions and
23 * limitations under the License.
Paul Bakkerb96f1542010-07-18 20:36:00 +000024 *
Bence Szépkúti4e9f7122020-06-05 13:02:18 +020025 * **********
26 *
27 * **********
28 * GNU General Public License v2.0 or later:
29 *
30 * This program is free software; you can redistribute it and/or modify
31 * it under the terms of the GNU General Public License as published by
32 * the Free Software Foundation; either version 2 of the License, or
33 * (at your option) any later version.
34 *
35 * This program is distributed in the hope that it will be useful,
36 * but WITHOUT ANY WARRANTY; without even the implied warranty of
37 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 * GNU General Public License for more details.
39 *
40 * You should have received a copy of the GNU General Public License along
41 * with this program; if not, write to the Free Software Foundation, Inc.,
42 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
43 *
44 * **********
Paul Bakker5121ce52009-01-03 21:22:43 +000045 */
46/*
47 * The MD5 algorithm was designed by Ron Rivest in 1991.
48 *
49 * http://www.ietf.org/rfc/rfc1321.txt
50 */
51
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020052#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000053#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020054#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020055#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020056#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000057
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020058#if defined(MBEDTLS_MD5_C)
Paul Bakker5121ce52009-01-03 21:22:43 +000059
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000060#include "mbedtls/md5.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000061
Rich Evans00ab4702015-02-06 13:43:58 +000062#include <string.h>
63
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020064#if defined(MBEDTLS_SELF_TEST)
65#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000066#include "mbedtls/platform.h"
Paul Bakker7dc4c442014-02-01 22:50:26 +010067#else
Rich Evans00ab4702015-02-06 13:43:58 +000068#include <stdio.h>
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020069#define mbedtls_printf printf
70#endif /* MBEDTLS_PLATFORM_C */
71#endif /* MBEDTLS_SELF_TEST */
Paul Bakker7dc4c442014-02-01 22:50:26 +010072
Manuel Pégourié-Gonnard8b2641d2015-08-27 20:03:46 +020073#if !defined(MBEDTLS_MD5_ALT)
74
Paul Bakker34617722014-06-13 17:20:13 +020075/* Implementation that should never be optimized out by the compiler */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020076static void mbedtls_zeroize( void *v, size_t n ) {
Paul Bakker34617722014-06-13 17:20:13 +020077 volatile unsigned char *p = v; while( n-- ) *p++ = 0;
78}
79
Paul Bakker5121ce52009-01-03 21:22:43 +000080/*
81 * 32-bit integer manipulation macros (little endian)
82 */
Paul Bakker5c2364c2012-10-01 14:41:15 +000083#ifndef GET_UINT32_LE
84#define GET_UINT32_LE(n,b,i) \
Paul Bakker5121ce52009-01-03 21:22:43 +000085{ \
Paul Bakker5c2364c2012-10-01 14:41:15 +000086 (n) = ( (uint32_t) (b)[(i) ] ) \
87 | ( (uint32_t) (b)[(i) + 1] << 8 ) \
88 | ( (uint32_t) (b)[(i) + 2] << 16 ) \
89 | ( (uint32_t) (b)[(i) + 3] << 24 ); \
Paul Bakker5121ce52009-01-03 21:22:43 +000090}
91#endif
92
Paul Bakker5c2364c2012-10-01 14:41:15 +000093#ifndef PUT_UINT32_LE
Manuel Pégourié-Gonnardceedb822015-01-23 15:02:43 +000094#define PUT_UINT32_LE(n,b,i) \
95{ \
96 (b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
97 (b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
98 (b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
99 (b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
Paul Bakker5121ce52009-01-03 21:22:43 +0000100}
101#endif
102
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200103void mbedtls_md5_init( mbedtls_md5_context *ctx )
Paul Bakker5b4af392014-06-26 12:09:34 +0200104{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200105 memset( ctx, 0, sizeof( mbedtls_md5_context ) );
Paul Bakker5b4af392014-06-26 12:09:34 +0200106}
107
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200108void mbedtls_md5_free( mbedtls_md5_context *ctx )
Paul Bakker5b4af392014-06-26 12:09:34 +0200109{
110 if( ctx == NULL )
111 return;
112
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200113 mbedtls_zeroize( ctx, sizeof( mbedtls_md5_context ) );
Paul Bakker5b4af392014-06-26 12:09:34 +0200114}
115
Manuel Pégourié-Gonnard16d412f2015-07-06 15:26:26 +0200116void mbedtls_md5_clone( mbedtls_md5_context *dst,
117 const mbedtls_md5_context *src )
118{
119 *dst = *src;
120}
121
Paul Bakker5121ce52009-01-03 21:22:43 +0000122/*
123 * MD5 context setup
124 */
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100125int mbedtls_md5_starts_ret( mbedtls_md5_context *ctx )
Paul Bakker5121ce52009-01-03 21:22:43 +0000126{
127 ctx->total[0] = 0;
128 ctx->total[1] = 0;
129
130 ctx->state[0] = 0x67452301;
131 ctx->state[1] = 0xEFCDAB89;
132 ctx->state[2] = 0x98BADCFE;
133 ctx->state[3] = 0x10325476;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100134
135 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000136}
137
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000138#if !defined(MBEDTLS_DEPRECATED_REMOVED)
139void mbedtls_md5_starts( mbedtls_md5_context *ctx )
140{
141 mbedtls_md5_starts_ret( ctx );
142}
143#endif
144
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200145#if !defined(MBEDTLS_MD5_PROCESS_ALT)
Andres Amaya Garciacccfe082017-06-28 10:36:39 +0100146int mbedtls_internal_md5_process( mbedtls_md5_context *ctx,
147 const unsigned char data[64] )
Paul Bakker5121ce52009-01-03 21:22:43 +0000148{
Paul Bakker5c2364c2012-10-01 14:41:15 +0000149 uint32_t X[16], A, B, C, D;
Paul Bakker5121ce52009-01-03 21:22:43 +0000150
Paul Bakker5c2364c2012-10-01 14:41:15 +0000151 GET_UINT32_LE( X[ 0], data, 0 );
152 GET_UINT32_LE( X[ 1], data, 4 );
153 GET_UINT32_LE( X[ 2], data, 8 );
154 GET_UINT32_LE( X[ 3], data, 12 );
155 GET_UINT32_LE( X[ 4], data, 16 );
156 GET_UINT32_LE( X[ 5], data, 20 );
157 GET_UINT32_LE( X[ 6], data, 24 );
158 GET_UINT32_LE( X[ 7], data, 28 );
159 GET_UINT32_LE( X[ 8], data, 32 );
160 GET_UINT32_LE( X[ 9], data, 36 );
161 GET_UINT32_LE( X[10], data, 40 );
162 GET_UINT32_LE( X[11], data, 44 );
163 GET_UINT32_LE( X[12], data, 48 );
164 GET_UINT32_LE( X[13], data, 52 );
165 GET_UINT32_LE( X[14], data, 56 );
166 GET_UINT32_LE( X[15], data, 60 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000167
168#define S(x,n) ((x << n) | ((x & 0xFFFFFFFF) >> (32 - n)))
169
170#define P(a,b,c,d,k,s,t) \
171{ \
172 a += F(b,c,d) + X[k] + t; a = S(a,s) + b; \
173}
174
175 A = ctx->state[0];
176 B = ctx->state[1];
177 C = ctx->state[2];
178 D = ctx->state[3];
179
180#define F(x,y,z) (z ^ (x & (y ^ z)))
181
182 P( A, B, C, D, 0, 7, 0xD76AA478 );
183 P( D, A, B, C, 1, 12, 0xE8C7B756 );
184 P( C, D, A, B, 2, 17, 0x242070DB );
185 P( B, C, D, A, 3, 22, 0xC1BDCEEE );
186 P( A, B, C, D, 4, 7, 0xF57C0FAF );
187 P( D, A, B, C, 5, 12, 0x4787C62A );
188 P( C, D, A, B, 6, 17, 0xA8304613 );
189 P( B, C, D, A, 7, 22, 0xFD469501 );
190 P( A, B, C, D, 8, 7, 0x698098D8 );
191 P( D, A, B, C, 9, 12, 0x8B44F7AF );
192 P( C, D, A, B, 10, 17, 0xFFFF5BB1 );
193 P( B, C, D, A, 11, 22, 0x895CD7BE );
194 P( A, B, C, D, 12, 7, 0x6B901122 );
195 P( D, A, B, C, 13, 12, 0xFD987193 );
196 P( C, D, A, B, 14, 17, 0xA679438E );
197 P( B, C, D, A, 15, 22, 0x49B40821 );
198
199#undef F
200
201#define F(x,y,z) (y ^ (z & (x ^ y)))
202
203 P( A, B, C, D, 1, 5, 0xF61E2562 );
204 P( D, A, B, C, 6, 9, 0xC040B340 );
205 P( C, D, A, B, 11, 14, 0x265E5A51 );
206 P( B, C, D, A, 0, 20, 0xE9B6C7AA );
207 P( A, B, C, D, 5, 5, 0xD62F105D );
208 P( D, A, B, C, 10, 9, 0x02441453 );
209 P( C, D, A, B, 15, 14, 0xD8A1E681 );
210 P( B, C, D, A, 4, 20, 0xE7D3FBC8 );
211 P( A, B, C, D, 9, 5, 0x21E1CDE6 );
212 P( D, A, B, C, 14, 9, 0xC33707D6 );
213 P( C, D, A, B, 3, 14, 0xF4D50D87 );
214 P( B, C, D, A, 8, 20, 0x455A14ED );
215 P( A, B, C, D, 13, 5, 0xA9E3E905 );
216 P( D, A, B, C, 2, 9, 0xFCEFA3F8 );
217 P( C, D, A, B, 7, 14, 0x676F02D9 );
218 P( B, C, D, A, 12, 20, 0x8D2A4C8A );
219
220#undef F
Paul Bakker9af723c2014-05-01 13:03:14 +0200221
Paul Bakker5121ce52009-01-03 21:22:43 +0000222#define F(x,y,z) (x ^ y ^ z)
223
224 P( A, B, C, D, 5, 4, 0xFFFA3942 );
225 P( D, A, B, C, 8, 11, 0x8771F681 );
226 P( C, D, A, B, 11, 16, 0x6D9D6122 );
227 P( B, C, D, A, 14, 23, 0xFDE5380C );
228 P( A, B, C, D, 1, 4, 0xA4BEEA44 );
229 P( D, A, B, C, 4, 11, 0x4BDECFA9 );
230 P( C, D, A, B, 7, 16, 0xF6BB4B60 );
231 P( B, C, D, A, 10, 23, 0xBEBFBC70 );
232 P( A, B, C, D, 13, 4, 0x289B7EC6 );
233 P( D, A, B, C, 0, 11, 0xEAA127FA );
234 P( C, D, A, B, 3, 16, 0xD4EF3085 );
235 P( B, C, D, A, 6, 23, 0x04881D05 );
236 P( A, B, C, D, 9, 4, 0xD9D4D039 );
237 P( D, A, B, C, 12, 11, 0xE6DB99E5 );
238 P( C, D, A, B, 15, 16, 0x1FA27CF8 );
239 P( B, C, D, A, 2, 23, 0xC4AC5665 );
240
241#undef F
242
243#define F(x,y,z) (y ^ (x | ~z))
244
245 P( A, B, C, D, 0, 6, 0xF4292244 );
246 P( D, A, B, C, 7, 10, 0x432AFF97 );
247 P( C, D, A, B, 14, 15, 0xAB9423A7 );
248 P( B, C, D, A, 5, 21, 0xFC93A039 );
249 P( A, B, C, D, 12, 6, 0x655B59C3 );
250 P( D, A, B, C, 3, 10, 0x8F0CCC92 );
251 P( C, D, A, B, 10, 15, 0xFFEFF47D );
252 P( B, C, D, A, 1, 21, 0x85845DD1 );
253 P( A, B, C, D, 8, 6, 0x6FA87E4F );
254 P( D, A, B, C, 15, 10, 0xFE2CE6E0 );
255 P( C, D, A, B, 6, 15, 0xA3014314 );
256 P( B, C, D, A, 13, 21, 0x4E0811A1 );
257 P( A, B, C, D, 4, 6, 0xF7537E82 );
258 P( D, A, B, C, 11, 10, 0xBD3AF235 );
259 P( C, D, A, B, 2, 15, 0x2AD7D2BB );
260 P( B, C, D, A, 9, 21, 0xEB86D391 );
261
262#undef F
263
264 ctx->state[0] += A;
265 ctx->state[1] += B;
266 ctx->state[2] += C;
267 ctx->state[3] += D;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100268
gabor-mezei-armcb3a7422020-08-19 14:03:06 +0200269 /* Zeroise variables to clear sensitive data from memory. */
270 mbedtls_zeroize( &X, sizeof( X ) );
271 mbedtls_zeroize( &A, sizeof( A ) );
272 mbedtls_zeroize( &B, sizeof( B ) );
273 mbedtls_zeroize( &C, sizeof( C ) );
274 mbedtls_zeroize( &D, sizeof( D ) );
275
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100276 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000277}
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000278
279#if !defined(MBEDTLS_DEPRECATED_REMOVED)
280void mbedtls_md5_process( mbedtls_md5_context *ctx,
281 const unsigned char data[64] )
282{
283 mbedtls_internal_md5_process( ctx, data );
284}
285#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200286#endif /* !MBEDTLS_MD5_PROCESS_ALT */
Paul Bakker5121ce52009-01-03 21:22:43 +0000287
288/*
289 * MD5 process buffer
290 */
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100291int mbedtls_md5_update_ret( mbedtls_md5_context *ctx,
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100292 const unsigned char *input,
293 size_t ilen )
Paul Bakker5121ce52009-01-03 21:22:43 +0000294{
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100295 int ret;
Paul Bakker23986e52011-04-24 08:57:21 +0000296 size_t fill;
Paul Bakker5c2364c2012-10-01 14:41:15 +0000297 uint32_t left;
Paul Bakker5121ce52009-01-03 21:22:43 +0000298
Brian White12895d12014-04-11 11:29:42 -0400299 if( ilen == 0 )
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100300 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000301
302 left = ctx->total[0] & 0x3F;
303 fill = 64 - left;
304
Paul Bakker5c2364c2012-10-01 14:41:15 +0000305 ctx->total[0] += (uint32_t) ilen;
Paul Bakker5121ce52009-01-03 21:22:43 +0000306 ctx->total[0] &= 0xFFFFFFFF;
307
Paul Bakker5c2364c2012-10-01 14:41:15 +0000308 if( ctx->total[0] < (uint32_t) ilen )
Paul Bakker5121ce52009-01-03 21:22:43 +0000309 ctx->total[1]++;
310
311 if( left && ilen >= fill )
312 {
Paul Bakker3c2122f2013-06-24 19:03:14 +0200313 memcpy( (void *) (ctx->buffer + left), input, fill );
Andres Amaya Garciacccfe082017-06-28 10:36:39 +0100314 if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 )
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100315 return( ret );
316
Paul Bakker5121ce52009-01-03 21:22:43 +0000317 input += fill;
318 ilen -= fill;
319 left = 0;
320 }
321
322 while( ilen >= 64 )
323 {
Andres Amaya Garciacccfe082017-06-28 10:36:39 +0100324 if( ( ret = mbedtls_internal_md5_process( ctx, input ) ) != 0 )
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100325 return( ret );
326
Paul Bakker5121ce52009-01-03 21:22:43 +0000327 input += 64;
328 ilen -= 64;
329 }
330
331 if( ilen > 0 )
332 {
Paul Bakker3c2122f2013-06-24 19:03:14 +0200333 memcpy( (void *) (ctx->buffer + left), input, ilen );
Paul Bakker5121ce52009-01-03 21:22:43 +0000334 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100335
336 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000337}
338
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000339#if !defined(MBEDTLS_DEPRECATED_REMOVED)
340void mbedtls_md5_update( mbedtls_md5_context *ctx,
341 const unsigned char *input,
342 size_t ilen )
343{
344 mbedtls_md5_update_ret( ctx, input, ilen );
345}
346#endif
347
Paul Bakker5121ce52009-01-03 21:22:43 +0000348/*
349 * MD5 final digest
350 */
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100351int mbedtls_md5_finish_ret( mbedtls_md5_context *ctx,
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100352 unsigned char output[16] )
Paul Bakker5121ce52009-01-03 21:22:43 +0000353{
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100354 int ret;
Manuel Pégourié-Gonnard5fcfd032018-06-28 12:10:27 +0200355 uint32_t used;
Paul Bakker5c2364c2012-10-01 14:41:15 +0000356 uint32_t high, low;
Paul Bakker5121ce52009-01-03 21:22:43 +0000357
Manuel Pégourié-Gonnard5fcfd032018-06-28 12:10:27 +0200358 /*
359 * Add padding: 0x80 then 0x00 until 8 bytes remain for the length
360 */
361 used = ctx->total[0] & 0x3F;
362
363 ctx->buffer[used++] = 0x80;
364
365 if( used <= 56 )
366 {
367 /* Enough room for padding + length in current block */
368 memset( ctx->buffer + used, 0, 56 - used );
369 }
370 else
371 {
372 /* We'll need an extra block */
373 memset( ctx->buffer + used, 0, 64 - used );
374
375 if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 )
376 return( ret );
377
378 memset( ctx->buffer, 0, 56 );
379 }
380
381 /*
382 * Add message length
383 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000384 high = ( ctx->total[0] >> 29 )
385 | ( ctx->total[1] << 3 );
386 low = ( ctx->total[0] << 3 );
387
Manuel Pégourié-Gonnard5fcfd032018-06-28 12:10:27 +0200388 PUT_UINT32_LE( low, ctx->buffer, 56 );
389 PUT_UINT32_LE( high, ctx->buffer, 60 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000390
Manuel Pégourié-Gonnard5fcfd032018-06-28 12:10:27 +0200391 if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 )
392 return( ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000393
Manuel Pégourié-Gonnard5fcfd032018-06-28 12:10:27 +0200394 /*
395 * Output final state
396 */
Paul Bakker5c2364c2012-10-01 14:41:15 +0000397 PUT_UINT32_LE( ctx->state[0], output, 0 );
398 PUT_UINT32_LE( ctx->state[1], output, 4 );
399 PUT_UINT32_LE( ctx->state[2], output, 8 );
400 PUT_UINT32_LE( ctx->state[3], output, 12 );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100401
402 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000403}
404
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000405#if !defined(MBEDTLS_DEPRECATED_REMOVED)
406void mbedtls_md5_finish( mbedtls_md5_context *ctx,
407 unsigned char output[16] )
408{
409 mbedtls_md5_finish_ret( ctx, output );
410}
411#endif
412
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200413#endif /* !MBEDTLS_MD5_ALT */
Paul Bakker90995b52013-06-24 19:20:35 +0200414
Paul Bakker5121ce52009-01-03 21:22:43 +0000415/*
416 * output = MD5( input buffer )
417 */
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100418int mbedtls_md5_ret( const unsigned char *input,
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100419 size_t ilen,
420 unsigned char output[16] )
Paul Bakker5121ce52009-01-03 21:22:43 +0000421{
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100422 int ret;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200423 mbedtls_md5_context ctx;
Paul Bakker5121ce52009-01-03 21:22:43 +0000424
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200425 mbedtls_md5_init( &ctx );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100426
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100427 if( ( ret = mbedtls_md5_starts_ret( &ctx ) ) != 0 )
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100428 goto exit;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100429
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100430 if( ( ret = mbedtls_md5_update_ret( &ctx, input, ilen ) ) != 0 )
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100431 goto exit;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100432
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100433 if( ( ret = mbedtls_md5_finish_ret( &ctx, output ) ) != 0 )
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100434 goto exit;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100435
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100436exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200437 mbedtls_md5_free( &ctx );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100438
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100439 return( ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000440}
441
Jaeden Ameroa53ff8d2018-02-19 15:28:08 +0000442#if !defined(MBEDTLS_DEPRECATED_REMOVED)
443void mbedtls_md5( const unsigned char *input,
444 size_t ilen,
445 unsigned char output[16] )
446{
447 mbedtls_md5_ret( input, ilen, output );
448}
449#endif
450
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200451#if defined(MBEDTLS_SELF_TEST)
Paul Bakker5121ce52009-01-03 21:22:43 +0000452/*
453 * RFC 1321 test vectors
454 */
Manuel Pégourié-Gonnard28122e42015-03-11 09:13:42 +0000455static const unsigned char md5_test_buf[7][81] =
Paul Bakker5121ce52009-01-03 21:22:43 +0000456{
Paul Bakker9af723c2014-05-01 13:03:14 +0200457 { "" },
Paul Bakker5121ce52009-01-03 21:22:43 +0000458 { "a" },
459 { "abc" },
460 { "message digest" },
461 { "abcdefghijklmnopqrstuvwxyz" },
462 { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" },
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100463 { "12345678901234567890123456789012345678901234567890123456789012"
Paul Bakker5121ce52009-01-03 21:22:43 +0000464 "345678901234567890" }
465};
466
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100467static const size_t md5_test_buflen[7] =
Paul Bakker5121ce52009-01-03 21:22:43 +0000468{
469 0, 1, 3, 14, 26, 62, 80
470};
471
472static const unsigned char md5_test_sum[7][16] =
473{
474 { 0xD4, 0x1D, 0x8C, 0xD9, 0x8F, 0x00, 0xB2, 0x04,
475 0xE9, 0x80, 0x09, 0x98, 0xEC, 0xF8, 0x42, 0x7E },
476 { 0x0C, 0xC1, 0x75, 0xB9, 0xC0, 0xF1, 0xB6, 0xA8,
477 0x31, 0xC3, 0x99, 0xE2, 0x69, 0x77, 0x26, 0x61 },
478 { 0x90, 0x01, 0x50, 0x98, 0x3C, 0xD2, 0x4F, 0xB0,
479 0xD6, 0x96, 0x3F, 0x7D, 0x28, 0xE1, 0x7F, 0x72 },
480 { 0xF9, 0x6B, 0x69, 0x7D, 0x7C, 0xB7, 0x93, 0x8D,
481 0x52, 0x5A, 0x2F, 0x31, 0xAA, 0xF1, 0x61, 0xD0 },
482 { 0xC3, 0xFC, 0xD3, 0xD7, 0x61, 0x92, 0xE4, 0x00,
483 0x7D, 0xFB, 0x49, 0x6C, 0xCA, 0x67, 0xE1, 0x3B },
484 { 0xD1, 0x74, 0xAB, 0x98, 0xD2, 0x77, 0xD9, 0xF5,
485 0xA5, 0x61, 0x1C, 0x2C, 0x9F, 0x41, 0x9D, 0x9F },
486 { 0x57, 0xED, 0xF4, 0xA2, 0x2B, 0xE3, 0xC9, 0x55,
487 0xAC, 0x49, 0xDA, 0x2E, 0x21, 0x07, 0xB6, 0x7A }
488};
489
490/*
Paul Bakker5121ce52009-01-03 21:22:43 +0000491 * Checkup routine
492 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200493int mbedtls_md5_self_test( int verbose )
Paul Bakker5121ce52009-01-03 21:22:43 +0000494{
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100495 int i, ret = 0;
Paul Bakker5121ce52009-01-03 21:22:43 +0000496 unsigned char md5sum[16];
Paul Bakker5121ce52009-01-03 21:22:43 +0000497
498 for( i = 0; i < 7; i++ )
499 {
500 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200501 mbedtls_printf( " MD5 test #%d: ", i + 1 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000502
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100503 ret = mbedtls_md5_ret( md5_test_buf[i], md5_test_buflen[i], md5sum );
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100504 if( ret != 0 )
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100505 goto fail;
Paul Bakker5121ce52009-01-03 21:22:43 +0000506
507 if( memcmp( md5sum, md5_test_sum[i], 16 ) != 0 )
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100508 {
509 ret = 1;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100510 goto fail;
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100511 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000512
513 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200514 mbedtls_printf( "passed\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000515 }
516
517 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200518 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000519
Paul Bakker5121ce52009-01-03 21:22:43 +0000520 return( 0 );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100521
522fail:
523 if( verbose != 0 )
524 mbedtls_printf( "failed\n" );
525
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100526 return( ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000527}
528
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200529#endif /* MBEDTLS_SELF_TEST */
Paul Bakker5121ce52009-01-03 21:22:43 +0000530
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200531#endif /* MBEDTLS_MD5_C */