blob: f7a225c1d3cb778f316c560358ad12220676b27a [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * RFC 1321 compliant MD5 implementation
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker5121ce52009-01-03 21:22:43 +000018 */
19/*
20 * The MD5 algorithm was designed by Ron Rivest in 1991.
21 *
22 * http://www.ietf.org/rfc/rfc1321.txt
23 */
24
Gilles Peskinedb09ef62020-06-03 01:43:33 +020025#include "common.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000026
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020027#if defined(MBEDTLS_MD5_C)
Paul Bakker5121ce52009-01-03 21:22:43 +000028
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000029#include "mbedtls/md5.h"
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -050030#include "mbedtls/platform_util.h"
Janos Follath24eed8d2019-11-22 13:21:35 +000031#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000032
Rich Evans00ab4702015-02-06 13:43:58 +000033#include <string.h>
34
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000035#include "mbedtls/platform.h"
Paul Bakker7dc4c442014-02-01 22:50:26 +010036
Manuel Pégourié-Gonnard8b2641d2015-08-27 20:03:46 +020037#if !defined(MBEDTLS_MD5_ALT)
38
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020039void mbedtls_md5_init( mbedtls_md5_context *ctx )
Paul Bakker5b4af392014-06-26 12:09:34 +020040{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020041 memset( ctx, 0, sizeof( mbedtls_md5_context ) );
Paul Bakker5b4af392014-06-26 12:09:34 +020042}
43
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020044void mbedtls_md5_free( mbedtls_md5_context *ctx )
Paul Bakker5b4af392014-06-26 12:09:34 +020045{
46 if( ctx == NULL )
47 return;
48
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -050049 mbedtls_platform_zeroize( ctx, sizeof( mbedtls_md5_context ) );
Paul Bakker5b4af392014-06-26 12:09:34 +020050}
51
Manuel Pégourié-Gonnard16d412f2015-07-06 15:26:26 +020052void mbedtls_md5_clone( mbedtls_md5_context *dst,
53 const mbedtls_md5_context *src )
54{
55 *dst = *src;
56}
57
Paul Bakker5121ce52009-01-03 21:22:43 +000058/*
59 * MD5 context setup
60 */
TRodziewicz26371e42021-06-08 16:45:41 +020061int mbedtls_md5_starts( mbedtls_md5_context *ctx )
Paul Bakker5121ce52009-01-03 21:22:43 +000062{
63 ctx->total[0] = 0;
64 ctx->total[1] = 0;
65
66 ctx->state[0] = 0x67452301;
67 ctx->state[1] = 0xEFCDAB89;
68 ctx->state[2] = 0x98BADCFE;
69 ctx->state[3] = 0x10325476;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +010070
71 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +000072}
73
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020074#if !defined(MBEDTLS_MD5_PROCESS_ALT)
Andres Amaya Garciacccfe082017-06-28 10:36:39 +010075int mbedtls_internal_md5_process( mbedtls_md5_context *ctx,
76 const unsigned char data[64] )
Paul Bakker5121ce52009-01-03 21:22:43 +000077{
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +020078 struct
79 {
80 uint32_t X[16], A, B, C, D;
81 } local;
Paul Bakker5121ce52009-01-03 21:22:43 +000082
Joe Subbiani6a506312021-07-07 16:56:29 +010083 local.X[ 0] = MBEDTLS_GET_UINT32_LE( data, 0 );
84 local.X[ 1] = MBEDTLS_GET_UINT32_LE( data, 4 );
85 local.X[ 2] = MBEDTLS_GET_UINT32_LE( data, 8 );
86 local.X[ 3] = MBEDTLS_GET_UINT32_LE( data, 12 );
87 local.X[ 4] = MBEDTLS_GET_UINT32_LE( data, 16 );
88 local.X[ 5] = MBEDTLS_GET_UINT32_LE( data, 20 );
89 local.X[ 6] = MBEDTLS_GET_UINT32_LE( data, 24 );
90 local.X[ 7] = MBEDTLS_GET_UINT32_LE( data, 28 );
91 local.X[ 8] = MBEDTLS_GET_UINT32_LE( data, 32 );
92 local.X[ 9] = MBEDTLS_GET_UINT32_LE( data, 36 );
93 local.X[10] = MBEDTLS_GET_UINT32_LE( data, 40 );
94 local.X[11] = MBEDTLS_GET_UINT32_LE( data, 44 );
95 local.X[12] = MBEDTLS_GET_UINT32_LE( data, 48 );
96 local.X[13] = MBEDTLS_GET_UINT32_LE( data, 52 );
97 local.X[14] = MBEDTLS_GET_UINT32_LE( data, 56 );
98 local.X[15] = MBEDTLS_GET_UINT32_LE( data, 60 );
Paul Bakker5121ce52009-01-03 21:22:43 +000099
Hanno Becker1eeca412018-10-15 12:01:35 +0100100#define S(x,n) \
101 ( ( (x) << (n) ) | ( ( (x) & 0xFFFFFFFF) >> ( 32 - (n) ) ) )
Paul Bakker5121ce52009-01-03 21:22:43 +0000102
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200103#define P(a,b,c,d,k,s,t) \
104 do \
105 { \
106 (a) += F((b),(c),(d)) + local.X[(k)] + (t); \
107 (a) = S((a),(s)) + (b); \
Hanno Becker1eeca412018-10-15 12:01:35 +0100108 } while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000109
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200110 local.A = ctx->state[0];
111 local.B = ctx->state[1];
112 local.C = ctx->state[2];
113 local.D = ctx->state[3];
Paul Bakker5121ce52009-01-03 21:22:43 +0000114
Hanno Becker1eeca412018-10-15 12:01:35 +0100115#define F(x,y,z) ((z) ^ ((x) & ((y) ^ (z))))
Paul Bakker5121ce52009-01-03 21:22:43 +0000116
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200117 P( local.A, local.B, local.C, local.D, 0, 7, 0xD76AA478 );
118 P( local.D, local.A, local.B, local.C, 1, 12, 0xE8C7B756 );
119 P( local.C, local.D, local.A, local.B, 2, 17, 0x242070DB );
120 P( local.B, local.C, local.D, local.A, 3, 22, 0xC1BDCEEE );
121 P( local.A, local.B, local.C, local.D, 4, 7, 0xF57C0FAF );
122 P( local.D, local.A, local.B, local.C, 5, 12, 0x4787C62A );
123 P( local.C, local.D, local.A, local.B, 6, 17, 0xA8304613 );
124 P( local.B, local.C, local.D, local.A, 7, 22, 0xFD469501 );
125 P( local.A, local.B, local.C, local.D, 8, 7, 0x698098D8 );
126 P( local.D, local.A, local.B, local.C, 9, 12, 0x8B44F7AF );
127 P( local.C, local.D, local.A, local.B, 10, 17, 0xFFFF5BB1 );
128 P( local.B, local.C, local.D, local.A, 11, 22, 0x895CD7BE );
129 P( local.A, local.B, local.C, local.D, 12, 7, 0x6B901122 );
130 P( local.D, local.A, local.B, local.C, 13, 12, 0xFD987193 );
131 P( local.C, local.D, local.A, local.B, 14, 17, 0xA679438E );
132 P( local.B, local.C, local.D, local.A, 15, 22, 0x49B40821 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000133
134#undef F
135
Hanno Becker1eeca412018-10-15 12:01:35 +0100136#define F(x,y,z) ((y) ^ ((z) & ((x) ^ (y))))
Paul Bakker5121ce52009-01-03 21:22:43 +0000137
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200138 P( local.A, local.B, local.C, local.D, 1, 5, 0xF61E2562 );
139 P( local.D, local.A, local.B, local.C, 6, 9, 0xC040B340 );
140 P( local.C, local.D, local.A, local.B, 11, 14, 0x265E5A51 );
141 P( local.B, local.C, local.D, local.A, 0, 20, 0xE9B6C7AA );
142 P( local.A, local.B, local.C, local.D, 5, 5, 0xD62F105D );
143 P( local.D, local.A, local.B, local.C, 10, 9, 0x02441453 );
144 P( local.C, local.D, local.A, local.B, 15, 14, 0xD8A1E681 );
145 P( local.B, local.C, local.D, local.A, 4, 20, 0xE7D3FBC8 );
146 P( local.A, local.B, local.C, local.D, 9, 5, 0x21E1CDE6 );
147 P( local.D, local.A, local.B, local.C, 14, 9, 0xC33707D6 );
148 P( local.C, local.D, local.A, local.B, 3, 14, 0xF4D50D87 );
149 P( local.B, local.C, local.D, local.A, 8, 20, 0x455A14ED );
150 P( local.A, local.B, local.C, local.D, 13, 5, 0xA9E3E905 );
151 P( local.D, local.A, local.B, local.C, 2, 9, 0xFCEFA3F8 );
152 P( local.C, local.D, local.A, local.B, 7, 14, 0x676F02D9 );
153 P( local.B, local.C, local.D, local.A, 12, 20, 0x8D2A4C8A );
Paul Bakker5121ce52009-01-03 21:22:43 +0000154
155#undef F
Paul Bakker9af723c2014-05-01 13:03:14 +0200156
Hanno Becker1eeca412018-10-15 12:01:35 +0100157#define F(x,y,z) ((x) ^ (y) ^ (z))
Paul Bakker5121ce52009-01-03 21:22:43 +0000158
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200159 P( local.A, local.B, local.C, local.D, 5, 4, 0xFFFA3942 );
160 P( local.D, local.A, local.B, local.C, 8, 11, 0x8771F681 );
161 P( local.C, local.D, local.A, local.B, 11, 16, 0x6D9D6122 );
162 P( local.B, local.C, local.D, local.A, 14, 23, 0xFDE5380C );
163 P( local.A, local.B, local.C, local.D, 1, 4, 0xA4BEEA44 );
164 P( local.D, local.A, local.B, local.C, 4, 11, 0x4BDECFA9 );
165 P( local.C, local.D, local.A, local.B, 7, 16, 0xF6BB4B60 );
166 P( local.B, local.C, local.D, local.A, 10, 23, 0xBEBFBC70 );
167 P( local.A, local.B, local.C, local.D, 13, 4, 0x289B7EC6 );
168 P( local.D, local.A, local.B, local.C, 0, 11, 0xEAA127FA );
169 P( local.C, local.D, local.A, local.B, 3, 16, 0xD4EF3085 );
170 P( local.B, local.C, local.D, local.A, 6, 23, 0x04881D05 );
171 P( local.A, local.B, local.C, local.D, 9, 4, 0xD9D4D039 );
172 P( local.D, local.A, local.B, local.C, 12, 11, 0xE6DB99E5 );
173 P( local.C, local.D, local.A, local.B, 15, 16, 0x1FA27CF8 );
174 P( local.B, local.C, local.D, local.A, 2, 23, 0xC4AC5665 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000175
176#undef F
177
Hanno Becker1eeca412018-10-15 12:01:35 +0100178#define F(x,y,z) ((y) ^ ((x) | ~(z)))
Paul Bakker5121ce52009-01-03 21:22:43 +0000179
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200180 P( local.A, local.B, local.C, local.D, 0, 6, 0xF4292244 );
181 P( local.D, local.A, local.B, local.C, 7, 10, 0x432AFF97 );
182 P( local.C, local.D, local.A, local.B, 14, 15, 0xAB9423A7 );
183 P( local.B, local.C, local.D, local.A, 5, 21, 0xFC93A039 );
184 P( local.A, local.B, local.C, local.D, 12, 6, 0x655B59C3 );
185 P( local.D, local.A, local.B, local.C, 3, 10, 0x8F0CCC92 );
186 P( local.C, local.D, local.A, local.B, 10, 15, 0xFFEFF47D );
187 P( local.B, local.C, local.D, local.A, 1, 21, 0x85845DD1 );
188 P( local.A, local.B, local.C, local.D, 8, 6, 0x6FA87E4F );
189 P( local.D, local.A, local.B, local.C, 15, 10, 0xFE2CE6E0 );
190 P( local.C, local.D, local.A, local.B, 6, 15, 0xA3014314 );
191 P( local.B, local.C, local.D, local.A, 13, 21, 0x4E0811A1 );
192 P( local.A, local.B, local.C, local.D, 4, 6, 0xF7537E82 );
193 P( local.D, local.A, local.B, local.C, 11, 10, 0xBD3AF235 );
194 P( local.C, local.D, local.A, local.B, 2, 15, 0x2AD7D2BB );
195 P( local.B, local.C, local.D, local.A, 9, 21, 0xEB86D391 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000196
197#undef F
198
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200199 ctx->state[0] += local.A;
200 ctx->state[1] += local.B;
201 ctx->state[2] += local.C;
202 ctx->state[3] += local.D;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100203
gabor-mezei-armd1c98fc2020-08-19 14:03:06 +0200204 /* Zeroise variables to clear sensitive data from memory. */
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200205 mbedtls_platform_zeroize( &local, sizeof( local ) );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100206
207 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000208}
Jaeden Amero041039f2018-02-19 15:28:08 +0000209
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200210#endif /* !MBEDTLS_MD5_PROCESS_ALT */
Paul Bakker5121ce52009-01-03 21:22:43 +0000211
212/*
213 * MD5 process buffer
214 */
TRodziewicz26371e42021-06-08 16:45:41 +0200215int mbedtls_md5_update( mbedtls_md5_context *ctx,
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100216 const unsigned char *input,
217 size_t ilen )
Paul Bakker5121ce52009-01-03 21:22:43 +0000218{
Janos Follath24eed8d2019-11-22 13:21:35 +0000219 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker23986e52011-04-24 08:57:21 +0000220 size_t fill;
Paul Bakker5c2364c2012-10-01 14:41:15 +0000221 uint32_t left;
Paul Bakker5121ce52009-01-03 21:22:43 +0000222
Brian White12895d12014-04-11 11:29:42 -0400223 if( ilen == 0 )
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100224 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000225
226 left = ctx->total[0] & 0x3F;
227 fill = 64 - left;
228
Paul Bakker5c2364c2012-10-01 14:41:15 +0000229 ctx->total[0] += (uint32_t) ilen;
Paul Bakker5121ce52009-01-03 21:22:43 +0000230 ctx->total[0] &= 0xFFFFFFFF;
231
Paul Bakker5c2364c2012-10-01 14:41:15 +0000232 if( ctx->total[0] < (uint32_t) ilen )
Paul Bakker5121ce52009-01-03 21:22:43 +0000233 ctx->total[1]++;
234
235 if( left && ilen >= fill )
236 {
Paul Bakker3c2122f2013-06-24 19:03:14 +0200237 memcpy( (void *) (ctx->buffer + left), input, fill );
Andres Amaya Garciacccfe082017-06-28 10:36:39 +0100238 if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 )
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100239 return( ret );
240
Paul Bakker5121ce52009-01-03 21:22:43 +0000241 input += fill;
242 ilen -= fill;
243 left = 0;
244 }
245
246 while( ilen >= 64 )
247 {
Andres Amaya Garciacccfe082017-06-28 10:36:39 +0100248 if( ( ret = mbedtls_internal_md5_process( ctx, input ) ) != 0 )
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100249 return( ret );
250
Paul Bakker5121ce52009-01-03 21:22:43 +0000251 input += 64;
252 ilen -= 64;
253 }
254
255 if( ilen > 0 )
256 {
Paul Bakker3c2122f2013-06-24 19:03:14 +0200257 memcpy( (void *) (ctx->buffer + left), input, ilen );
Paul Bakker5121ce52009-01-03 21:22:43 +0000258 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100259
260 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000261}
262
Paul Bakker5121ce52009-01-03 21:22:43 +0000263/*
264 * MD5 final digest
265 */
TRodziewicz26371e42021-06-08 16:45:41 +0200266int mbedtls_md5_finish( mbedtls_md5_context *ctx,
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100267 unsigned char output[16] )
Paul Bakker5121ce52009-01-03 21:22:43 +0000268{
Janos Follath24eed8d2019-11-22 13:21:35 +0000269 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200270 uint32_t used;
Paul Bakker5c2364c2012-10-01 14:41:15 +0000271 uint32_t high, low;
Paul Bakker5121ce52009-01-03 21:22:43 +0000272
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200273 /*
274 * Add padding: 0x80 then 0x00 until 8 bytes remain for the length
275 */
276 used = ctx->total[0] & 0x3F;
277
278 ctx->buffer[used++] = 0x80;
279
280 if( used <= 56 )
281 {
282 /* Enough room for padding + length in current block */
283 memset( ctx->buffer + used, 0, 56 - used );
284 }
285 else
286 {
287 /* We'll need an extra block */
288 memset( ctx->buffer + used, 0, 64 - used );
289
290 if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 )
291 return( ret );
292
293 memset( ctx->buffer, 0, 56 );
294 }
295
296 /*
297 * Add message length
298 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000299 high = ( ctx->total[0] >> 29 )
300 | ( ctx->total[1] << 3 );
301 low = ( ctx->total[0] << 3 );
302
Joe Subbiani5ecac212021-06-24 13:00:03 +0100303 MBEDTLS_PUT_UINT32_LE( low, ctx->buffer, 56 );
304 MBEDTLS_PUT_UINT32_LE( high, ctx->buffer, 60 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000305
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200306 if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 )
307 return( ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000308
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200309 /*
310 * Output final state
311 */
Joe Subbiani5ecac212021-06-24 13:00:03 +0100312 MBEDTLS_PUT_UINT32_LE( ctx->state[0], output, 0 );
313 MBEDTLS_PUT_UINT32_LE( ctx->state[1], output, 4 );
314 MBEDTLS_PUT_UINT32_LE( ctx->state[2], output, 8 );
315 MBEDTLS_PUT_UINT32_LE( ctx->state[3], output, 12 );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100316
317 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000318}
319
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200320#endif /* !MBEDTLS_MD5_ALT */
Paul Bakker90995b52013-06-24 19:20:35 +0200321
Paul Bakker5121ce52009-01-03 21:22:43 +0000322/*
323 * output = MD5( input buffer )
324 */
TRodziewicz26371e42021-06-08 16:45:41 +0200325int mbedtls_md5( const unsigned char *input,
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100326 size_t ilen,
327 unsigned char output[16] )
Paul Bakker5121ce52009-01-03 21:22:43 +0000328{
Janos Follath24eed8d2019-11-22 13:21:35 +0000329 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200330 mbedtls_md5_context ctx;
Paul Bakker5121ce52009-01-03 21:22:43 +0000331
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200332 mbedtls_md5_init( &ctx );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100333
TRodziewicz26371e42021-06-08 16:45:41 +0200334 if( ( ret = mbedtls_md5_starts( &ctx ) ) != 0 )
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100335 goto exit;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100336
TRodziewicz26371e42021-06-08 16:45:41 +0200337 if( ( ret = mbedtls_md5_update( &ctx, input, ilen ) ) != 0 )
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100338 goto exit;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100339
TRodziewicz26371e42021-06-08 16:45:41 +0200340 if( ( ret = mbedtls_md5_finish( &ctx, output ) ) != 0 )
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100341 goto exit;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100342
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100343exit:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200344 mbedtls_md5_free( &ctx );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100345
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100346 return( ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000347}
348
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200349#if defined(MBEDTLS_SELF_TEST)
Paul Bakker5121ce52009-01-03 21:22:43 +0000350/*
351 * RFC 1321 test vectors
352 */
Manuel Pégourié-Gonnard28122e42015-03-11 09:13:42 +0000353static const unsigned char md5_test_buf[7][81] =
Paul Bakker5121ce52009-01-03 21:22:43 +0000354{
Paul Bakker9af723c2014-05-01 13:03:14 +0200355 { "" },
Paul Bakker5121ce52009-01-03 21:22:43 +0000356 { "a" },
357 { "abc" },
358 { "message digest" },
359 { "abcdefghijklmnopqrstuvwxyz" },
360 { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" },
Guido Vranken962e4ee2020-08-21 21:08:56 +0200361 { "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }
Paul Bakker5121ce52009-01-03 21:22:43 +0000362};
363
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100364static const size_t md5_test_buflen[7] =
Paul Bakker5121ce52009-01-03 21:22:43 +0000365{
366 0, 1, 3, 14, 26, 62, 80
367};
368
369static const unsigned char md5_test_sum[7][16] =
370{
371 { 0xD4, 0x1D, 0x8C, 0xD9, 0x8F, 0x00, 0xB2, 0x04,
372 0xE9, 0x80, 0x09, 0x98, 0xEC, 0xF8, 0x42, 0x7E },
373 { 0x0C, 0xC1, 0x75, 0xB9, 0xC0, 0xF1, 0xB6, 0xA8,
374 0x31, 0xC3, 0x99, 0xE2, 0x69, 0x77, 0x26, 0x61 },
375 { 0x90, 0x01, 0x50, 0x98, 0x3C, 0xD2, 0x4F, 0xB0,
376 0xD6, 0x96, 0x3F, 0x7D, 0x28, 0xE1, 0x7F, 0x72 },
377 { 0xF9, 0x6B, 0x69, 0x7D, 0x7C, 0xB7, 0x93, 0x8D,
378 0x52, 0x5A, 0x2F, 0x31, 0xAA, 0xF1, 0x61, 0xD0 },
379 { 0xC3, 0xFC, 0xD3, 0xD7, 0x61, 0x92, 0xE4, 0x00,
380 0x7D, 0xFB, 0x49, 0x6C, 0xCA, 0x67, 0xE1, 0x3B },
381 { 0xD1, 0x74, 0xAB, 0x98, 0xD2, 0x77, 0xD9, 0xF5,
382 0xA5, 0x61, 0x1C, 0x2C, 0x9F, 0x41, 0x9D, 0x9F },
383 { 0x57, 0xED, 0xF4, 0xA2, 0x2B, 0xE3, 0xC9, 0x55,
384 0xAC, 0x49, 0xDA, 0x2E, 0x21, 0x07, 0xB6, 0x7A }
385};
386
387/*
Paul Bakker5121ce52009-01-03 21:22:43 +0000388 * Checkup routine
389 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200390int mbedtls_md5_self_test( int verbose )
Paul Bakker5121ce52009-01-03 21:22:43 +0000391{
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100392 int i, ret = 0;
Paul Bakker5121ce52009-01-03 21:22:43 +0000393 unsigned char md5sum[16];
Paul Bakker5121ce52009-01-03 21:22:43 +0000394
395 for( i = 0; i < 7; i++ )
396 {
397 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200398 mbedtls_printf( " MD5 test #%d: ", i + 1 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000399
TRodziewicz26371e42021-06-08 16:45:41 +0200400 ret = mbedtls_md5( md5_test_buf[i], md5_test_buflen[i], md5sum );
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100401 if( ret != 0 )
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100402 goto fail;
Paul Bakker5121ce52009-01-03 21:22:43 +0000403
404 if( memcmp( md5sum, md5_test_sum[i], 16 ) != 0 )
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100405 {
406 ret = 1;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100407 goto fail;
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100408 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000409
410 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200411 mbedtls_printf( "passed\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000412 }
413
414 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200415 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000416
Paul Bakker5121ce52009-01-03 21:22:43 +0000417 return( 0 );
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100418
419fail:
420 if( verbose != 0 )
421 mbedtls_printf( "failed\n" );
422
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100423 return( ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000424}
425
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200426#endif /* MBEDTLS_SELF_TEST */
Paul Bakker5121ce52009-01-03 21:22:43 +0000427
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200428#endif /* MBEDTLS_MD5_C */