blob: e11e0780958d5e529c5cc0cfa228db3843b46797 [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
Dave Rodgman16799db2023-11-02 19:47:20 +00005 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Paul Bakker5121ce52009-01-03 21:22:43 +00006 */
7/*
8 * The MD5 algorithm was designed by Ron Rivest in 1991.
9 *
10 * http://www.ietf.org/rfc/rfc1321.txt
11 */
12
Gilles Peskinedb09ef62020-06-03 01:43:33 +020013#include "common.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000014
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020015#if defined(MBEDTLS_MD5_C)
Paul Bakker5121ce52009-01-03 21:22:43 +000016
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000017#include "mbedtls/md5.h"
Andres Amaya Garcia1f6301b2018-04-17 09:51:09 -050018#include "mbedtls/platform_util.h"
Janos Follath24eed8d2019-11-22 13:21:35 +000019#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000020
Rich Evans00ab4702015-02-06 13:43:58 +000021#include <string.h>
22
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/platform.h"
Paul Bakker7dc4c442014-02-01 22:50:26 +010024
Gilles Peskine449bd832023-01-11 14:50:10 +010025void mbedtls_md5_init(mbedtls_md5_context *ctx)
Paul Bakker5b4af392014-06-26 12:09:34 +020026{
Gilles Peskine449bd832023-01-11 14:50:10 +010027 memset(ctx, 0, sizeof(mbedtls_md5_context));
Paul Bakker5b4af392014-06-26 12:09:34 +020028}
29
Gilles Peskine449bd832023-01-11 14:50:10 +010030void mbedtls_md5_free(mbedtls_md5_context *ctx)
Paul Bakker5b4af392014-06-26 12:09:34 +020031{
Gilles Peskine449bd832023-01-11 14:50:10 +010032 if (ctx == NULL) {
Paul Bakker5b4af392014-06-26 12:09:34 +020033 return;
Gilles Peskine449bd832023-01-11 14:50:10 +010034 }
Paul Bakker5b4af392014-06-26 12:09:34 +020035
Gilles Peskine449bd832023-01-11 14:50:10 +010036 mbedtls_platform_zeroize(ctx, sizeof(mbedtls_md5_context));
Paul Bakker5b4af392014-06-26 12:09:34 +020037}
38
Gilles Peskine449bd832023-01-11 14:50:10 +010039void mbedtls_md5_clone(mbedtls_md5_context *dst,
40 const mbedtls_md5_context *src)
Manuel Pégourié-Gonnard16d412f2015-07-06 15:26:26 +020041{
42 *dst = *src;
43}
44
Paul Bakker5121ce52009-01-03 21:22:43 +000045/*
46 * MD5 context setup
47 */
Gilles Peskine449bd832023-01-11 14:50:10 +010048int mbedtls_md5_starts(mbedtls_md5_context *ctx)
Paul Bakker5121ce52009-01-03 21:22:43 +000049{
50 ctx->total[0] = 0;
51 ctx->total[1] = 0;
52
53 ctx->state[0] = 0x67452301;
54 ctx->state[1] = 0xEFCDAB89;
55 ctx->state[2] = 0x98BADCFE;
56 ctx->state[3] = 0x10325476;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +010057
Gilles Peskine449bd832023-01-11 14:50:10 +010058 return 0;
Paul Bakker5121ce52009-01-03 21:22:43 +000059}
60
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020061#if !defined(MBEDTLS_MD5_PROCESS_ALT)
Gilles Peskine449bd832023-01-11 14:50:10 +010062int mbedtls_internal_md5_process(mbedtls_md5_context *ctx,
63 const unsigned char data[64])
Paul Bakker5121ce52009-01-03 21:22:43 +000064{
Gilles Peskine449bd832023-01-11 14:50:10 +010065 struct {
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +020066 uint32_t X[16], A, B, C, D;
67 } local;
Paul Bakker5121ce52009-01-03 21:22:43 +000068
Gilles Peskine449bd832023-01-11 14:50:10 +010069 local.X[0] = MBEDTLS_GET_UINT32_LE(data, 0);
70 local.X[1] = MBEDTLS_GET_UINT32_LE(data, 4);
71 local.X[2] = MBEDTLS_GET_UINT32_LE(data, 8);
72 local.X[3] = MBEDTLS_GET_UINT32_LE(data, 12);
73 local.X[4] = MBEDTLS_GET_UINT32_LE(data, 16);
74 local.X[5] = MBEDTLS_GET_UINT32_LE(data, 20);
75 local.X[6] = MBEDTLS_GET_UINT32_LE(data, 24);
76 local.X[7] = MBEDTLS_GET_UINT32_LE(data, 28);
77 local.X[8] = MBEDTLS_GET_UINT32_LE(data, 32);
78 local.X[9] = MBEDTLS_GET_UINT32_LE(data, 36);
79 local.X[10] = MBEDTLS_GET_UINT32_LE(data, 40);
80 local.X[11] = MBEDTLS_GET_UINT32_LE(data, 44);
81 local.X[12] = MBEDTLS_GET_UINT32_LE(data, 48);
82 local.X[13] = MBEDTLS_GET_UINT32_LE(data, 52);
83 local.X[14] = MBEDTLS_GET_UINT32_LE(data, 56);
84 local.X[15] = MBEDTLS_GET_UINT32_LE(data, 60);
Paul Bakker5121ce52009-01-03 21:22:43 +000085
Gilles Peskine449bd832023-01-11 14:50:10 +010086#define S(x, n) \
87 (((x) << (n)) | (((x) & 0xFFFFFFFF) >> (32 - (n))))
Paul Bakker5121ce52009-01-03 21:22:43 +000088
Gilles Peskine449bd832023-01-11 14:50:10 +010089#define P(a, b, c, d, k, s, t) \
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +020090 do \
91 { \
Gilles Peskine449bd832023-01-11 14:50:10 +010092 (a) += F((b), (c), (d)) + local.X[(k)] + (t); \
93 (a) = S((a), (s)) + (b); \
94 } while (0)
Paul Bakker5121ce52009-01-03 21:22:43 +000095
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +020096 local.A = ctx->state[0];
97 local.B = ctx->state[1];
98 local.C = ctx->state[2];
99 local.D = ctx->state[3];
Paul Bakker5121ce52009-01-03 21:22:43 +0000100
Gilles Peskine449bd832023-01-11 14:50:10 +0100101#define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
Paul Bakker5121ce52009-01-03 21:22:43 +0000102
Gilles Peskine449bd832023-01-11 14:50:10 +0100103 P(local.A, local.B, local.C, local.D, 0, 7, 0xD76AA478);
104 P(local.D, local.A, local.B, local.C, 1, 12, 0xE8C7B756);
105 P(local.C, local.D, local.A, local.B, 2, 17, 0x242070DB);
106 P(local.B, local.C, local.D, local.A, 3, 22, 0xC1BDCEEE);
107 P(local.A, local.B, local.C, local.D, 4, 7, 0xF57C0FAF);
108 P(local.D, local.A, local.B, local.C, 5, 12, 0x4787C62A);
109 P(local.C, local.D, local.A, local.B, 6, 17, 0xA8304613);
110 P(local.B, local.C, local.D, local.A, 7, 22, 0xFD469501);
111 P(local.A, local.B, local.C, local.D, 8, 7, 0x698098D8);
112 P(local.D, local.A, local.B, local.C, 9, 12, 0x8B44F7AF);
113 P(local.C, local.D, local.A, local.B, 10, 17, 0xFFFF5BB1);
114 P(local.B, local.C, local.D, local.A, 11, 22, 0x895CD7BE);
115 P(local.A, local.B, local.C, local.D, 12, 7, 0x6B901122);
116 P(local.D, local.A, local.B, local.C, 13, 12, 0xFD987193);
117 P(local.C, local.D, local.A, local.B, 14, 17, 0xA679438E);
118 P(local.B, local.C, local.D, local.A, 15, 22, 0x49B40821);
Paul Bakker5121ce52009-01-03 21:22:43 +0000119
120#undef F
121
Gilles Peskine449bd832023-01-11 14:50:10 +0100122#define F(x, y, z) ((y) ^ ((z) & ((x) ^ (y))))
Paul Bakker5121ce52009-01-03 21:22:43 +0000123
Gilles Peskine449bd832023-01-11 14:50:10 +0100124 P(local.A, local.B, local.C, local.D, 1, 5, 0xF61E2562);
125 P(local.D, local.A, local.B, local.C, 6, 9, 0xC040B340);
126 P(local.C, local.D, local.A, local.B, 11, 14, 0x265E5A51);
127 P(local.B, local.C, local.D, local.A, 0, 20, 0xE9B6C7AA);
128 P(local.A, local.B, local.C, local.D, 5, 5, 0xD62F105D);
129 P(local.D, local.A, local.B, local.C, 10, 9, 0x02441453);
130 P(local.C, local.D, local.A, local.B, 15, 14, 0xD8A1E681);
131 P(local.B, local.C, local.D, local.A, 4, 20, 0xE7D3FBC8);
132 P(local.A, local.B, local.C, local.D, 9, 5, 0x21E1CDE6);
133 P(local.D, local.A, local.B, local.C, 14, 9, 0xC33707D6);
134 P(local.C, local.D, local.A, local.B, 3, 14, 0xF4D50D87);
135 P(local.B, local.C, local.D, local.A, 8, 20, 0x455A14ED);
136 P(local.A, local.B, local.C, local.D, 13, 5, 0xA9E3E905);
137 P(local.D, local.A, local.B, local.C, 2, 9, 0xFCEFA3F8);
138 P(local.C, local.D, local.A, local.B, 7, 14, 0x676F02D9);
139 P(local.B, local.C, local.D, local.A, 12, 20, 0x8D2A4C8A);
Paul Bakker5121ce52009-01-03 21:22:43 +0000140
141#undef F
Paul Bakker9af723c2014-05-01 13:03:14 +0200142
Gilles Peskine449bd832023-01-11 14:50:10 +0100143#define F(x, y, z) ((x) ^ (y) ^ (z))
Paul Bakker5121ce52009-01-03 21:22:43 +0000144
Gilles Peskine449bd832023-01-11 14:50:10 +0100145 P(local.A, local.B, local.C, local.D, 5, 4, 0xFFFA3942);
146 P(local.D, local.A, local.B, local.C, 8, 11, 0x8771F681);
147 P(local.C, local.D, local.A, local.B, 11, 16, 0x6D9D6122);
148 P(local.B, local.C, local.D, local.A, 14, 23, 0xFDE5380C);
149 P(local.A, local.B, local.C, local.D, 1, 4, 0xA4BEEA44);
150 P(local.D, local.A, local.B, local.C, 4, 11, 0x4BDECFA9);
151 P(local.C, local.D, local.A, local.B, 7, 16, 0xF6BB4B60);
152 P(local.B, local.C, local.D, local.A, 10, 23, 0xBEBFBC70);
153 P(local.A, local.B, local.C, local.D, 13, 4, 0x289B7EC6);
154 P(local.D, local.A, local.B, local.C, 0, 11, 0xEAA127FA);
155 P(local.C, local.D, local.A, local.B, 3, 16, 0xD4EF3085);
156 P(local.B, local.C, local.D, local.A, 6, 23, 0x04881D05);
157 P(local.A, local.B, local.C, local.D, 9, 4, 0xD9D4D039);
158 P(local.D, local.A, local.B, local.C, 12, 11, 0xE6DB99E5);
159 P(local.C, local.D, local.A, local.B, 15, 16, 0x1FA27CF8);
160 P(local.B, local.C, local.D, local.A, 2, 23, 0xC4AC5665);
Paul Bakker5121ce52009-01-03 21:22:43 +0000161
162#undef F
163
Gilles Peskine449bd832023-01-11 14:50:10 +0100164#define F(x, y, z) ((y) ^ ((x) | ~(z)))
Paul Bakker5121ce52009-01-03 21:22:43 +0000165
Gilles Peskine449bd832023-01-11 14:50:10 +0100166 P(local.A, local.B, local.C, local.D, 0, 6, 0xF4292244);
167 P(local.D, local.A, local.B, local.C, 7, 10, 0x432AFF97);
168 P(local.C, local.D, local.A, local.B, 14, 15, 0xAB9423A7);
169 P(local.B, local.C, local.D, local.A, 5, 21, 0xFC93A039);
170 P(local.A, local.B, local.C, local.D, 12, 6, 0x655B59C3);
171 P(local.D, local.A, local.B, local.C, 3, 10, 0x8F0CCC92);
172 P(local.C, local.D, local.A, local.B, 10, 15, 0xFFEFF47D);
173 P(local.B, local.C, local.D, local.A, 1, 21, 0x85845DD1);
174 P(local.A, local.B, local.C, local.D, 8, 6, 0x6FA87E4F);
175 P(local.D, local.A, local.B, local.C, 15, 10, 0xFE2CE6E0);
176 P(local.C, local.D, local.A, local.B, 6, 15, 0xA3014314);
177 P(local.B, local.C, local.D, local.A, 13, 21, 0x4E0811A1);
178 P(local.A, local.B, local.C, local.D, 4, 6, 0xF7537E82);
179 P(local.D, local.A, local.B, local.C, 11, 10, 0xBD3AF235);
180 P(local.C, local.D, local.A, local.B, 2, 15, 0x2AD7D2BB);
181 P(local.B, local.C, local.D, local.A, 9, 21, 0xEB86D391);
Paul Bakker5121ce52009-01-03 21:22:43 +0000182
183#undef F
184
gabor-mezei-arm4cb56f82020-08-25 19:12:01 +0200185 ctx->state[0] += local.A;
186 ctx->state[1] += local.B;
187 ctx->state[2] += local.C;
188 ctx->state[3] += local.D;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100189
gabor-mezei-armd1c98fc2020-08-19 14:03:06 +0200190 /* Zeroise variables to clear sensitive data from memory. */
Gilles Peskine449bd832023-01-11 14:50:10 +0100191 mbedtls_platform_zeroize(&local, sizeof(local));
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100192
Gilles Peskine449bd832023-01-11 14:50:10 +0100193 return 0;
Paul Bakker5121ce52009-01-03 21:22:43 +0000194}
Jaeden Amero041039f2018-02-19 15:28:08 +0000195
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200196#endif /* !MBEDTLS_MD5_PROCESS_ALT */
Paul Bakker5121ce52009-01-03 21:22:43 +0000197
198/*
199 * MD5 process buffer
200 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100201int mbedtls_md5_update(mbedtls_md5_context *ctx,
202 const unsigned char *input,
203 size_t ilen)
Paul Bakker5121ce52009-01-03 21:22:43 +0000204{
Janos Follath24eed8d2019-11-22 13:21:35 +0000205 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Paul Bakker23986e52011-04-24 08:57:21 +0000206 size_t fill;
Paul Bakker5c2364c2012-10-01 14:41:15 +0000207 uint32_t left;
Paul Bakker5121ce52009-01-03 21:22:43 +0000208
Gilles Peskine449bd832023-01-11 14:50:10 +0100209 if (ilen == 0) {
210 return 0;
211 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000212
213 left = ctx->total[0] & 0x3F;
214 fill = 64 - left;
215
Paul Bakker5c2364c2012-10-01 14:41:15 +0000216 ctx->total[0] += (uint32_t) ilen;
Paul Bakker5121ce52009-01-03 21:22:43 +0000217 ctx->total[0] &= 0xFFFFFFFF;
218
Gilles Peskine449bd832023-01-11 14:50:10 +0100219 if (ctx->total[0] < (uint32_t) ilen) {
Paul Bakker5121ce52009-01-03 21:22:43 +0000220 ctx->total[1]++;
Gilles Peskine449bd832023-01-11 14:50:10 +0100221 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000222
Gilles Peskine449bd832023-01-11 14:50:10 +0100223 if (left && ilen >= fill) {
224 memcpy((void *) (ctx->buffer + left), input, fill);
225 if ((ret = mbedtls_internal_md5_process(ctx, ctx->buffer)) != 0) {
226 return ret;
227 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100228
Paul Bakker5121ce52009-01-03 21:22:43 +0000229 input += fill;
230 ilen -= fill;
231 left = 0;
232 }
233
Gilles Peskine449bd832023-01-11 14:50:10 +0100234 while (ilen >= 64) {
235 if ((ret = mbedtls_internal_md5_process(ctx, input)) != 0) {
236 return ret;
237 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100238
Paul Bakker5121ce52009-01-03 21:22:43 +0000239 input += 64;
240 ilen -= 64;
241 }
242
Gilles Peskine449bd832023-01-11 14:50:10 +0100243 if (ilen > 0) {
244 memcpy((void *) (ctx->buffer + left), input, ilen);
Paul Bakker5121ce52009-01-03 21:22:43 +0000245 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100246
Gilles Peskine449bd832023-01-11 14:50:10 +0100247 return 0;
Paul Bakker5121ce52009-01-03 21:22:43 +0000248}
249
Paul Bakker5121ce52009-01-03 21:22:43 +0000250/*
251 * MD5 final digest
252 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100253int mbedtls_md5_finish(mbedtls_md5_context *ctx,
254 unsigned char output[16])
Paul Bakker5121ce52009-01-03 21:22:43 +0000255{
Janos Follath24eed8d2019-11-22 13:21:35 +0000256 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200257 uint32_t used;
Paul Bakker5c2364c2012-10-01 14:41:15 +0000258 uint32_t high, low;
Paul Bakker5121ce52009-01-03 21:22:43 +0000259
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200260 /*
261 * Add padding: 0x80 then 0x00 until 8 bytes remain for the length
262 */
263 used = ctx->total[0] & 0x3F;
264
265 ctx->buffer[used++] = 0x80;
266
Gilles Peskine449bd832023-01-11 14:50:10 +0100267 if (used <= 56) {
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200268 /* Enough room for padding + length in current block */
Gilles Peskine449bd832023-01-11 14:50:10 +0100269 memset(ctx->buffer + used, 0, 56 - used);
270 } else {
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200271 /* We'll need an extra block */
Gilles Peskine449bd832023-01-11 14:50:10 +0100272 memset(ctx->buffer + used, 0, 64 - used);
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200273
Gilles Peskine449bd832023-01-11 14:50:10 +0100274 if ((ret = mbedtls_internal_md5_process(ctx, ctx->buffer)) != 0) {
Dave Rodgmanaafd1e02023-09-11 12:59:36 +0100275 goto exit;
Gilles Peskine449bd832023-01-11 14:50:10 +0100276 }
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200277
Gilles Peskine449bd832023-01-11 14:50:10 +0100278 memset(ctx->buffer, 0, 56);
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200279 }
280
281 /*
282 * Add message length
283 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100284 high = (ctx->total[0] >> 29)
285 | (ctx->total[1] << 3);
286 low = (ctx->total[0] << 3);
Paul Bakker5121ce52009-01-03 21:22:43 +0000287
Gilles Peskine449bd832023-01-11 14:50:10 +0100288 MBEDTLS_PUT_UINT32_LE(low, ctx->buffer, 56);
289 MBEDTLS_PUT_UINT32_LE(high, ctx->buffer, 60);
Paul Bakker5121ce52009-01-03 21:22:43 +0000290
Gilles Peskine449bd832023-01-11 14:50:10 +0100291 if ((ret = mbedtls_internal_md5_process(ctx, ctx->buffer)) != 0) {
Dave Rodgmanaafd1e02023-09-11 12:59:36 +0100292 goto exit;
Gilles Peskine449bd832023-01-11 14:50:10 +0100293 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000294
Manuel Pégourié-Gonnard1cc1fb02018-06-28 12:10:27 +0200295 /*
296 * Output final state
297 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100298 MBEDTLS_PUT_UINT32_LE(ctx->state[0], output, 0);
299 MBEDTLS_PUT_UINT32_LE(ctx->state[1], output, 4);
300 MBEDTLS_PUT_UINT32_LE(ctx->state[2], output, 8);
301 MBEDTLS_PUT_UINT32_LE(ctx->state[3], output, 12);
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100302
Dave Rodgmanaafd1e02023-09-11 12:59:36 +0100303 ret = 0;
304
305exit:
306 mbedtls_md5_free(ctx);
307 return ret;
Paul Bakker5121ce52009-01-03 21:22:43 +0000308}
309
310/*
311 * output = MD5( input buffer )
312 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100313int mbedtls_md5(const unsigned char *input,
314 size_t ilen,
315 unsigned char output[16])
Paul Bakker5121ce52009-01-03 21:22:43 +0000316{
Janos Follath24eed8d2019-11-22 13:21:35 +0000317 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200318 mbedtls_md5_context ctx;
Paul Bakker5121ce52009-01-03 21:22:43 +0000319
Gilles Peskine449bd832023-01-11 14:50:10 +0100320 mbedtls_md5_init(&ctx);
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100321
Gilles Peskine449bd832023-01-11 14:50:10 +0100322 if ((ret = mbedtls_md5_starts(&ctx)) != 0) {
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100323 goto exit;
Gilles Peskine449bd832023-01-11 14:50:10 +0100324 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100325
Gilles Peskine449bd832023-01-11 14:50:10 +0100326 if ((ret = mbedtls_md5_update(&ctx, input, ilen)) != 0) {
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100327 goto exit;
Gilles Peskine449bd832023-01-11 14:50:10 +0100328 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100329
Gilles Peskine449bd832023-01-11 14:50:10 +0100330 if ((ret = mbedtls_md5_finish(&ctx, output)) != 0) {
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100331 goto exit;
Gilles Peskine449bd832023-01-11 14:50:10 +0100332 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100333
Andres Amaya Garcia0963e6c2017-07-20 14:34:08 +0100334exit:
Gilles Peskine449bd832023-01-11 14:50:10 +0100335 mbedtls_md5_free(&ctx);
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100336
Gilles Peskine449bd832023-01-11 14:50:10 +0100337 return ret;
Paul Bakker5121ce52009-01-03 21:22:43 +0000338}
339
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200340#if defined(MBEDTLS_SELF_TEST)
Paul Bakker5121ce52009-01-03 21:22:43 +0000341/*
342 * RFC 1321 test vectors
343 */
Manuel Pégourié-Gonnard28122e42015-03-11 09:13:42 +0000344static const unsigned char md5_test_buf[7][81] =
Paul Bakker5121ce52009-01-03 21:22:43 +0000345{
Paul Bakker9af723c2014-05-01 13:03:14 +0200346 { "" },
Paul Bakker5121ce52009-01-03 21:22:43 +0000347 { "a" },
348 { "abc" },
349 { "message digest" },
350 { "abcdefghijklmnopqrstuvwxyz" },
351 { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" },
Guido Vranken962e4ee2020-08-21 21:08:56 +0200352 { "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }
Paul Bakker5121ce52009-01-03 21:22:43 +0000353};
354
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100355static const size_t md5_test_buflen[7] =
Paul Bakker5121ce52009-01-03 21:22:43 +0000356{
357 0, 1, 3, 14, 26, 62, 80
358};
359
360static const unsigned char md5_test_sum[7][16] =
361{
362 { 0xD4, 0x1D, 0x8C, 0xD9, 0x8F, 0x00, 0xB2, 0x04,
363 0xE9, 0x80, 0x09, 0x98, 0xEC, 0xF8, 0x42, 0x7E },
364 { 0x0C, 0xC1, 0x75, 0xB9, 0xC0, 0xF1, 0xB6, 0xA8,
365 0x31, 0xC3, 0x99, 0xE2, 0x69, 0x77, 0x26, 0x61 },
366 { 0x90, 0x01, 0x50, 0x98, 0x3C, 0xD2, 0x4F, 0xB0,
367 0xD6, 0x96, 0x3F, 0x7D, 0x28, 0xE1, 0x7F, 0x72 },
368 { 0xF9, 0x6B, 0x69, 0x7D, 0x7C, 0xB7, 0x93, 0x8D,
369 0x52, 0x5A, 0x2F, 0x31, 0xAA, 0xF1, 0x61, 0xD0 },
370 { 0xC3, 0xFC, 0xD3, 0xD7, 0x61, 0x92, 0xE4, 0x00,
371 0x7D, 0xFB, 0x49, 0x6C, 0xCA, 0x67, 0xE1, 0x3B },
372 { 0xD1, 0x74, 0xAB, 0x98, 0xD2, 0x77, 0xD9, 0xF5,
373 0xA5, 0x61, 0x1C, 0x2C, 0x9F, 0x41, 0x9D, 0x9F },
374 { 0x57, 0xED, 0xF4, 0xA2, 0x2B, 0xE3, 0xC9, 0x55,
375 0xAC, 0x49, 0xDA, 0x2E, 0x21, 0x07, 0xB6, 0x7A }
376};
377
378/*
Paul Bakker5121ce52009-01-03 21:22:43 +0000379 * Checkup routine
380 */
Gilles Peskine449bd832023-01-11 14:50:10 +0100381int mbedtls_md5_self_test(int verbose)
Paul Bakker5121ce52009-01-03 21:22:43 +0000382{
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100383 int i, ret = 0;
Paul Bakker5121ce52009-01-03 21:22:43 +0000384 unsigned char md5sum[16];
Paul Bakker5121ce52009-01-03 21:22:43 +0000385
Gilles Peskine449bd832023-01-11 14:50:10 +0100386 for (i = 0; i < 7; i++) {
387 if (verbose != 0) {
388 mbedtls_printf(" MD5 test #%d: ", i + 1);
389 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000390
Gilles Peskine449bd832023-01-11 14:50:10 +0100391 ret = mbedtls_md5(md5_test_buf[i], md5_test_buflen[i], md5sum);
392 if (ret != 0) {
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100393 goto fail;
Gilles Peskine449bd832023-01-11 14:50:10 +0100394 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000395
Gilles Peskine449bd832023-01-11 14:50:10 +0100396 if (memcmp(md5sum, md5_test_sum[i], 16) != 0) {
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100397 ret = 1;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100398 goto fail;
Andres Amaya Garcia2d0aa8b2017-07-21 14:57:26 +0100399 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000400
Gilles Peskine449bd832023-01-11 14:50:10 +0100401 if (verbose != 0) {
402 mbedtls_printf("passed\n");
403 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000404 }
405
Gilles Peskine449bd832023-01-11 14:50:10 +0100406 if (verbose != 0) {
407 mbedtls_printf("\n");
408 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000409
Gilles Peskine449bd832023-01-11 14:50:10 +0100410 return 0;
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100411
412fail:
Gilles Peskine449bd832023-01-11 14:50:10 +0100413 if (verbose != 0) {
414 mbedtls_printf("failed\n");
415 }
Andres Amaya Garcia2cfd7a92017-05-02 10:19:27 +0100416
Gilles Peskine449bd832023-01-11 14:50:10 +0100417 return ret;
Paul Bakker5121ce52009-01-03 21:22:43 +0000418}
419
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200420#endif /* MBEDTLS_SELF_TEST */
Paul Bakker5121ce52009-01-03 21:22:43 +0000421
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200422#endif /* MBEDTLS_MD5_C */