Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * RFC 1321 compliant MD5 implementation |
| 3 | * |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 4 | * Copyright The Mbed TLS Contributors |
Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 5 | * 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 Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 18 | */ |
| 19 | /* |
| 20 | * The MD5 algorithm was designed by Ron Rivest in 1991. |
| 21 | * |
| 22 | * http://www.ietf.org/rfc/rfc1321.txt |
| 23 | */ |
| 24 | |
Gilles Peskine | db09ef6 | 2020-06-03 01:43:33 +0200 | [diff] [blame] | 25 | #include "common.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 26 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 27 | #if defined(MBEDTLS_MD5_C) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 28 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 29 | #include "mbedtls/md5.h" |
Andres Amaya Garcia | 1f6301b | 2018-04-17 09:51:09 -0500 | [diff] [blame] | 30 | #include "mbedtls/platform_util.h" |
Janos Follath | 24eed8d | 2019-11-22 13:21:35 +0000 | [diff] [blame] | 31 | #include "mbedtls/error.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 32 | |
Rich Evans | 00ab470 | 2015-02-06 13:43:58 +0000 | [diff] [blame] | 33 | #include <string.h> |
| 34 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 35 | #include "mbedtls/platform.h" |
Paul Bakker | 7dc4c44 | 2014-02-01 22:50:26 +0100 | [diff] [blame] | 36 | |
Manuel Pégourié-Gonnard | 8b2641d | 2015-08-27 20:03:46 +0200 | [diff] [blame] | 37 | #if !defined(MBEDTLS_MD5_ALT) |
| 38 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 39 | void mbedtls_md5_init( mbedtls_md5_context *ctx ) |
Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 40 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 41 | memset( ctx, 0, sizeof( mbedtls_md5_context ) ); |
Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 42 | } |
| 43 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 44 | void mbedtls_md5_free( mbedtls_md5_context *ctx ) |
Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 45 | { |
| 46 | if( ctx == NULL ) |
| 47 | return; |
| 48 | |
Andres Amaya Garcia | 1f6301b | 2018-04-17 09:51:09 -0500 | [diff] [blame] | 49 | mbedtls_platform_zeroize( ctx, sizeof( mbedtls_md5_context ) ); |
Paul Bakker | 5b4af39 | 2014-06-26 12:09:34 +0200 | [diff] [blame] | 50 | } |
| 51 | |
Manuel Pégourié-Gonnard | 16d412f | 2015-07-06 15:26:26 +0200 | [diff] [blame] | 52 | void mbedtls_md5_clone( mbedtls_md5_context *dst, |
| 53 | const mbedtls_md5_context *src ) |
| 54 | { |
| 55 | *dst = *src; |
| 56 | } |
| 57 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 58 | /* |
| 59 | * MD5 context setup |
| 60 | */ |
Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 61 | int mbedtls_md5_starts_ret( mbedtls_md5_context *ctx ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 62 | { |
| 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 Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 70 | |
| 71 | return( 0 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Manuel Pégourié-Gonnard | 93c0847 | 2021-04-15 12:23:55 +0200 | [diff] [blame] | 74 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) |
| 75 | void mbedtls_md5_starts( mbedtls_md5_context *ctx ) |
| 76 | { |
| 77 | mbedtls_md5_starts_ret( ctx ); |
| 78 | } |
| 79 | #endif |
| 80 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 81 | #if !defined(MBEDTLS_MD5_PROCESS_ALT) |
Andres Amaya Garcia | cccfe08 | 2017-06-28 10:36:39 +0100 | [diff] [blame] | 82 | int mbedtls_internal_md5_process( mbedtls_md5_context *ctx, |
| 83 | const unsigned char data[64] ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 84 | { |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 85 | struct |
| 86 | { |
| 87 | uint32_t X[16], A, B, C, D; |
| 88 | } local; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 89 | |
Joe Subbiani | 9231d5f | 2021-07-07 16:56:29 +0100 | [diff] [blame] | 90 | local.X[ 0] = MBEDTLS_GET_UINT32_LE( data, 0 ); |
| 91 | local.X[ 1] = MBEDTLS_GET_UINT32_LE( data, 4 ); |
| 92 | local.X[ 2] = MBEDTLS_GET_UINT32_LE( data, 8 ); |
| 93 | local.X[ 3] = MBEDTLS_GET_UINT32_LE( data, 12 ); |
| 94 | local.X[ 4] = MBEDTLS_GET_UINT32_LE( data, 16 ); |
| 95 | local.X[ 5] = MBEDTLS_GET_UINT32_LE( data, 20 ); |
| 96 | local.X[ 6] = MBEDTLS_GET_UINT32_LE( data, 24 ); |
| 97 | local.X[ 7] = MBEDTLS_GET_UINT32_LE( data, 28 ); |
| 98 | local.X[ 8] = MBEDTLS_GET_UINT32_LE( data, 32 ); |
| 99 | local.X[ 9] = MBEDTLS_GET_UINT32_LE( data, 36 ); |
| 100 | local.X[10] = MBEDTLS_GET_UINT32_LE( data, 40 ); |
| 101 | local.X[11] = MBEDTLS_GET_UINT32_LE( data, 44 ); |
| 102 | local.X[12] = MBEDTLS_GET_UINT32_LE( data, 48 ); |
| 103 | local.X[13] = MBEDTLS_GET_UINT32_LE( data, 52 ); |
| 104 | local.X[14] = MBEDTLS_GET_UINT32_LE( data, 56 ); |
| 105 | local.X[15] = MBEDTLS_GET_UINT32_LE( data, 60 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 106 | |
Hanno Becker | 1eeca41 | 2018-10-15 12:01:35 +0100 | [diff] [blame] | 107 | #define S(x,n) \ |
| 108 | ( ( (x) << (n) ) | ( ( (x) & 0xFFFFFFFF) >> ( 32 - (n) ) ) ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 109 | |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 110 | #define P(a,b,c,d,k,s,t) \ |
| 111 | do \ |
| 112 | { \ |
| 113 | (a) += F((b),(c),(d)) + local.X[(k)] + (t); \ |
| 114 | (a) = S((a),(s)) + (b); \ |
Hanno Becker | 1eeca41 | 2018-10-15 12:01:35 +0100 | [diff] [blame] | 115 | } while( 0 ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 116 | |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 117 | local.A = ctx->state[0]; |
| 118 | local.B = ctx->state[1]; |
| 119 | local.C = ctx->state[2]; |
| 120 | local.D = ctx->state[3]; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 121 | |
Hanno Becker | 1eeca41 | 2018-10-15 12:01:35 +0100 | [diff] [blame] | 122 | #define F(x,y,z) ((z) ^ ((x) & ((y) ^ (z)))) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 123 | |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 124 | P( local.A, local.B, local.C, local.D, 0, 7, 0xD76AA478 ); |
| 125 | P( local.D, local.A, local.B, local.C, 1, 12, 0xE8C7B756 ); |
| 126 | P( local.C, local.D, local.A, local.B, 2, 17, 0x242070DB ); |
| 127 | P( local.B, local.C, local.D, local.A, 3, 22, 0xC1BDCEEE ); |
| 128 | P( local.A, local.B, local.C, local.D, 4, 7, 0xF57C0FAF ); |
| 129 | P( local.D, local.A, local.B, local.C, 5, 12, 0x4787C62A ); |
| 130 | P( local.C, local.D, local.A, local.B, 6, 17, 0xA8304613 ); |
| 131 | P( local.B, local.C, local.D, local.A, 7, 22, 0xFD469501 ); |
| 132 | P( local.A, local.B, local.C, local.D, 8, 7, 0x698098D8 ); |
| 133 | P( local.D, local.A, local.B, local.C, 9, 12, 0x8B44F7AF ); |
| 134 | P( local.C, local.D, local.A, local.B, 10, 17, 0xFFFF5BB1 ); |
| 135 | P( local.B, local.C, local.D, local.A, 11, 22, 0x895CD7BE ); |
| 136 | P( local.A, local.B, local.C, local.D, 12, 7, 0x6B901122 ); |
| 137 | P( local.D, local.A, local.B, local.C, 13, 12, 0xFD987193 ); |
| 138 | P( local.C, local.D, local.A, local.B, 14, 17, 0xA679438E ); |
| 139 | P( local.B, local.C, local.D, local.A, 15, 22, 0x49B40821 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 140 | |
| 141 | #undef F |
| 142 | |
Hanno Becker | 1eeca41 | 2018-10-15 12:01:35 +0100 | [diff] [blame] | 143 | #define F(x,y,z) ((y) ^ ((z) & ((x) ^ (y)))) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 144 | |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 145 | P( local.A, local.B, local.C, local.D, 1, 5, 0xF61E2562 ); |
| 146 | P( local.D, local.A, local.B, local.C, 6, 9, 0xC040B340 ); |
| 147 | P( local.C, local.D, local.A, local.B, 11, 14, 0x265E5A51 ); |
| 148 | P( local.B, local.C, local.D, local.A, 0, 20, 0xE9B6C7AA ); |
| 149 | P( local.A, local.B, local.C, local.D, 5, 5, 0xD62F105D ); |
| 150 | P( local.D, local.A, local.B, local.C, 10, 9, 0x02441453 ); |
| 151 | P( local.C, local.D, local.A, local.B, 15, 14, 0xD8A1E681 ); |
| 152 | P( local.B, local.C, local.D, local.A, 4, 20, 0xE7D3FBC8 ); |
| 153 | P( local.A, local.B, local.C, local.D, 9, 5, 0x21E1CDE6 ); |
| 154 | P( local.D, local.A, local.B, local.C, 14, 9, 0xC33707D6 ); |
| 155 | P( local.C, local.D, local.A, local.B, 3, 14, 0xF4D50D87 ); |
| 156 | P( local.B, local.C, local.D, local.A, 8, 20, 0x455A14ED ); |
| 157 | P( local.A, local.B, local.C, local.D, 13, 5, 0xA9E3E905 ); |
| 158 | P( local.D, local.A, local.B, local.C, 2, 9, 0xFCEFA3F8 ); |
| 159 | P( local.C, local.D, local.A, local.B, 7, 14, 0x676F02D9 ); |
| 160 | P( local.B, local.C, local.D, local.A, 12, 20, 0x8D2A4C8A ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 161 | |
| 162 | #undef F |
Paul Bakker | 9af723c | 2014-05-01 13:03:14 +0200 | [diff] [blame] | 163 | |
Hanno Becker | 1eeca41 | 2018-10-15 12:01:35 +0100 | [diff] [blame] | 164 | #define F(x,y,z) ((x) ^ (y) ^ (z)) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 165 | |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 166 | P( local.A, local.B, local.C, local.D, 5, 4, 0xFFFA3942 ); |
| 167 | P( local.D, local.A, local.B, local.C, 8, 11, 0x8771F681 ); |
| 168 | P( local.C, local.D, local.A, local.B, 11, 16, 0x6D9D6122 ); |
| 169 | P( local.B, local.C, local.D, local.A, 14, 23, 0xFDE5380C ); |
| 170 | P( local.A, local.B, local.C, local.D, 1, 4, 0xA4BEEA44 ); |
| 171 | P( local.D, local.A, local.B, local.C, 4, 11, 0x4BDECFA9 ); |
| 172 | P( local.C, local.D, local.A, local.B, 7, 16, 0xF6BB4B60 ); |
| 173 | P( local.B, local.C, local.D, local.A, 10, 23, 0xBEBFBC70 ); |
| 174 | P( local.A, local.B, local.C, local.D, 13, 4, 0x289B7EC6 ); |
| 175 | P( local.D, local.A, local.B, local.C, 0, 11, 0xEAA127FA ); |
| 176 | P( local.C, local.D, local.A, local.B, 3, 16, 0xD4EF3085 ); |
| 177 | P( local.B, local.C, local.D, local.A, 6, 23, 0x04881D05 ); |
| 178 | P( local.A, local.B, local.C, local.D, 9, 4, 0xD9D4D039 ); |
| 179 | P( local.D, local.A, local.B, local.C, 12, 11, 0xE6DB99E5 ); |
| 180 | P( local.C, local.D, local.A, local.B, 15, 16, 0x1FA27CF8 ); |
| 181 | P( local.B, local.C, local.D, local.A, 2, 23, 0xC4AC5665 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 182 | |
| 183 | #undef F |
| 184 | |
Hanno Becker | 1eeca41 | 2018-10-15 12:01:35 +0100 | [diff] [blame] | 185 | #define F(x,y,z) ((y) ^ ((x) | ~(z))) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 186 | |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 187 | P( local.A, local.B, local.C, local.D, 0, 6, 0xF4292244 ); |
| 188 | P( local.D, local.A, local.B, local.C, 7, 10, 0x432AFF97 ); |
| 189 | P( local.C, local.D, local.A, local.B, 14, 15, 0xAB9423A7 ); |
| 190 | P( local.B, local.C, local.D, local.A, 5, 21, 0xFC93A039 ); |
| 191 | P( local.A, local.B, local.C, local.D, 12, 6, 0x655B59C3 ); |
| 192 | P( local.D, local.A, local.B, local.C, 3, 10, 0x8F0CCC92 ); |
| 193 | P( local.C, local.D, local.A, local.B, 10, 15, 0xFFEFF47D ); |
| 194 | P( local.B, local.C, local.D, local.A, 1, 21, 0x85845DD1 ); |
| 195 | P( local.A, local.B, local.C, local.D, 8, 6, 0x6FA87E4F ); |
| 196 | P( local.D, local.A, local.B, local.C, 15, 10, 0xFE2CE6E0 ); |
| 197 | P( local.C, local.D, local.A, local.B, 6, 15, 0xA3014314 ); |
| 198 | P( local.B, local.C, local.D, local.A, 13, 21, 0x4E0811A1 ); |
| 199 | P( local.A, local.B, local.C, local.D, 4, 6, 0xF7537E82 ); |
| 200 | P( local.D, local.A, local.B, local.C, 11, 10, 0xBD3AF235 ); |
| 201 | P( local.C, local.D, local.A, local.B, 2, 15, 0x2AD7D2BB ); |
| 202 | P( local.B, local.C, local.D, local.A, 9, 21, 0xEB86D391 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 203 | |
| 204 | #undef F |
| 205 | |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 206 | ctx->state[0] += local.A; |
| 207 | ctx->state[1] += local.B; |
| 208 | ctx->state[2] += local.C; |
| 209 | ctx->state[3] += local.D; |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 210 | |
gabor-mezei-arm | d1c98fc | 2020-08-19 14:03:06 +0200 | [diff] [blame] | 211 | /* Zeroise variables to clear sensitive data from memory. */ |
gabor-mezei-arm | 4cb56f8 | 2020-08-25 19:12:01 +0200 | [diff] [blame] | 212 | mbedtls_platform_zeroize( &local, sizeof( local ) ); |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 213 | |
| 214 | return( 0 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 215 | } |
Jaeden Amero | 041039f | 2018-02-19 15:28:08 +0000 | [diff] [blame] | 216 | |
Manuel Pégourié-Gonnard | 93c0847 | 2021-04-15 12:23:55 +0200 | [diff] [blame] | 217 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) |
| 218 | void mbedtls_md5_process( mbedtls_md5_context *ctx, |
| 219 | const unsigned char data[64] ) |
| 220 | { |
| 221 | mbedtls_internal_md5_process( ctx, data ); |
| 222 | } |
| 223 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 224 | #endif /* !MBEDTLS_MD5_PROCESS_ALT */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 225 | |
| 226 | /* |
| 227 | * MD5 process buffer |
| 228 | */ |
Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 229 | int mbedtls_md5_update_ret( mbedtls_md5_context *ctx, |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 230 | const unsigned char *input, |
| 231 | size_t ilen ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 232 | { |
Janos Follath | 24eed8d | 2019-11-22 13:21:35 +0000 | [diff] [blame] | 233 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Paul Bakker | 23986e5 | 2011-04-24 08:57:21 +0000 | [diff] [blame] | 234 | size_t fill; |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 235 | uint32_t left; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 236 | |
Brian White | 12895d1 | 2014-04-11 11:29:42 -0400 | [diff] [blame] | 237 | if( ilen == 0 ) |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 238 | return( 0 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 239 | |
| 240 | left = ctx->total[0] & 0x3F; |
| 241 | fill = 64 - left; |
| 242 | |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 243 | ctx->total[0] += (uint32_t) ilen; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 244 | ctx->total[0] &= 0xFFFFFFFF; |
| 245 | |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 246 | if( ctx->total[0] < (uint32_t) ilen ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 247 | ctx->total[1]++; |
| 248 | |
| 249 | if( left && ilen >= fill ) |
| 250 | { |
Paul Bakker | 3c2122f | 2013-06-24 19:03:14 +0200 | [diff] [blame] | 251 | memcpy( (void *) (ctx->buffer + left), input, fill ); |
Andres Amaya Garcia | cccfe08 | 2017-06-28 10:36:39 +0100 | [diff] [blame] | 252 | if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 ) |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 253 | return( ret ); |
| 254 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 255 | input += fill; |
| 256 | ilen -= fill; |
| 257 | left = 0; |
| 258 | } |
| 259 | |
| 260 | while( ilen >= 64 ) |
| 261 | { |
Andres Amaya Garcia | cccfe08 | 2017-06-28 10:36:39 +0100 | [diff] [blame] | 262 | if( ( ret = mbedtls_internal_md5_process( ctx, input ) ) != 0 ) |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 263 | return( ret ); |
| 264 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 265 | input += 64; |
| 266 | ilen -= 64; |
| 267 | } |
| 268 | |
| 269 | if( ilen > 0 ) |
| 270 | { |
Paul Bakker | 3c2122f | 2013-06-24 19:03:14 +0200 | [diff] [blame] | 271 | memcpy( (void *) (ctx->buffer + left), input, ilen ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 272 | } |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 273 | |
| 274 | return( 0 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 275 | } |
| 276 | |
Manuel Pégourié-Gonnard | 93c0847 | 2021-04-15 12:23:55 +0200 | [diff] [blame] | 277 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) |
| 278 | void mbedtls_md5_update( mbedtls_md5_context *ctx, |
| 279 | const unsigned char *input, |
| 280 | size_t ilen ) |
| 281 | { |
| 282 | mbedtls_md5_update_ret( ctx, input, ilen ); |
| 283 | } |
| 284 | #endif |
| 285 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 286 | /* |
| 287 | * MD5 final digest |
| 288 | */ |
Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 289 | int mbedtls_md5_finish_ret( mbedtls_md5_context *ctx, |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 290 | unsigned char output[16] ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 291 | { |
Janos Follath | 24eed8d | 2019-11-22 13:21:35 +0000 | [diff] [blame] | 292 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Manuel Pégourié-Gonnard | 1cc1fb0 | 2018-06-28 12:10:27 +0200 | [diff] [blame] | 293 | uint32_t used; |
Paul Bakker | 5c2364c | 2012-10-01 14:41:15 +0000 | [diff] [blame] | 294 | uint32_t high, low; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 295 | |
Manuel Pégourié-Gonnard | 1cc1fb0 | 2018-06-28 12:10:27 +0200 | [diff] [blame] | 296 | /* |
| 297 | * Add padding: 0x80 then 0x00 until 8 bytes remain for the length |
| 298 | */ |
| 299 | used = ctx->total[0] & 0x3F; |
| 300 | |
| 301 | ctx->buffer[used++] = 0x80; |
| 302 | |
| 303 | if( used <= 56 ) |
| 304 | { |
| 305 | /* Enough room for padding + length in current block */ |
| 306 | memset( ctx->buffer + used, 0, 56 - used ); |
| 307 | } |
| 308 | else |
| 309 | { |
| 310 | /* We'll need an extra block */ |
| 311 | memset( ctx->buffer + used, 0, 64 - used ); |
| 312 | |
| 313 | if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 ) |
| 314 | return( ret ); |
| 315 | |
| 316 | memset( ctx->buffer, 0, 56 ); |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | * Add message length |
| 321 | */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 322 | high = ( ctx->total[0] >> 29 ) |
| 323 | | ( ctx->total[1] << 3 ); |
| 324 | low = ( ctx->total[0] << 3 ); |
| 325 | |
Joe Subbiani | 2bbafda | 2021-06-24 13:00:03 +0100 | [diff] [blame] | 326 | MBEDTLS_PUT_UINT32_LE( low, ctx->buffer, 56 ); |
| 327 | MBEDTLS_PUT_UINT32_LE( high, ctx->buffer, 60 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 328 | |
Manuel Pégourié-Gonnard | 1cc1fb0 | 2018-06-28 12:10:27 +0200 | [diff] [blame] | 329 | if( ( ret = mbedtls_internal_md5_process( ctx, ctx->buffer ) ) != 0 ) |
| 330 | return( ret ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 331 | |
Manuel Pégourié-Gonnard | 1cc1fb0 | 2018-06-28 12:10:27 +0200 | [diff] [blame] | 332 | /* |
| 333 | * Output final state |
| 334 | */ |
Joe Subbiani | 2bbafda | 2021-06-24 13:00:03 +0100 | [diff] [blame] | 335 | MBEDTLS_PUT_UINT32_LE( ctx->state[0], output, 0 ); |
| 336 | MBEDTLS_PUT_UINT32_LE( ctx->state[1], output, 4 ); |
| 337 | MBEDTLS_PUT_UINT32_LE( ctx->state[2], output, 8 ); |
| 338 | MBEDTLS_PUT_UINT32_LE( ctx->state[3], output, 12 ); |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 339 | |
| 340 | return( 0 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 341 | } |
| 342 | |
Manuel Pégourié-Gonnard | 93c0847 | 2021-04-15 12:23:55 +0200 | [diff] [blame] | 343 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) |
| 344 | void mbedtls_md5_finish( mbedtls_md5_context *ctx, |
| 345 | unsigned char output[16] ) |
| 346 | { |
| 347 | mbedtls_md5_finish_ret( ctx, output ); |
| 348 | } |
| 349 | #endif |
| 350 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 351 | #endif /* !MBEDTLS_MD5_ALT */ |
Paul Bakker | 90995b5 | 2013-06-24 19:20:35 +0200 | [diff] [blame] | 352 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 353 | /* |
| 354 | * output = MD5( input buffer ) |
| 355 | */ |
Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 356 | int mbedtls_md5_ret( const unsigned char *input, |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 357 | size_t ilen, |
| 358 | unsigned char output[16] ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 359 | { |
Janos Follath | 24eed8d | 2019-11-22 13:21:35 +0000 | [diff] [blame] | 360 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 361 | mbedtls_md5_context ctx; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 362 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 363 | mbedtls_md5_init( &ctx ); |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 364 | |
Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 365 | if( ( ret = mbedtls_md5_starts_ret( &ctx ) ) != 0 ) |
Andres Amaya Garcia | 0963e6c | 2017-07-20 14:34:08 +0100 | [diff] [blame] | 366 | goto exit; |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 367 | |
Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 368 | if( ( ret = mbedtls_md5_update_ret( &ctx, input, ilen ) ) != 0 ) |
Andres Amaya Garcia | 0963e6c | 2017-07-20 14:34:08 +0100 | [diff] [blame] | 369 | goto exit; |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 370 | |
Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 371 | if( ( ret = mbedtls_md5_finish_ret( &ctx, output ) ) != 0 ) |
Andres Amaya Garcia | 0963e6c | 2017-07-20 14:34:08 +0100 | [diff] [blame] | 372 | goto exit; |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 373 | |
Andres Amaya Garcia | 0963e6c | 2017-07-20 14:34:08 +0100 | [diff] [blame] | 374 | exit: |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 375 | mbedtls_md5_free( &ctx ); |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 376 | |
Andres Amaya Garcia | 0963e6c | 2017-07-20 14:34:08 +0100 | [diff] [blame] | 377 | return( ret ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 378 | } |
| 379 | |
Manuel Pégourié-Gonnard | 93c0847 | 2021-04-15 12:23:55 +0200 | [diff] [blame] | 380 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) |
| 381 | void mbedtls_md5( const unsigned char *input, |
| 382 | size_t ilen, |
| 383 | unsigned char output[16] ) |
| 384 | { |
| 385 | mbedtls_md5_ret( input, ilen, output ); |
| 386 | } |
| 387 | #endif |
| 388 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 389 | #if defined(MBEDTLS_SELF_TEST) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 390 | /* |
| 391 | * RFC 1321 test vectors |
| 392 | */ |
Manuel Pégourié-Gonnard | 28122e4 | 2015-03-11 09:13:42 +0000 | [diff] [blame] | 393 | static const unsigned char md5_test_buf[7][81] = |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 394 | { |
Paul Bakker | 9af723c | 2014-05-01 13:03:14 +0200 | [diff] [blame] | 395 | { "" }, |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 396 | { "a" }, |
| 397 | { "abc" }, |
| 398 | { "message digest" }, |
| 399 | { "abcdefghijklmnopqrstuvwxyz" }, |
| 400 | { "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, |
Guido Vranken | 962e4ee | 2020-08-21 21:08:56 +0200 | [diff] [blame] | 401 | { "12345678901234567890123456789012345678901234567890123456789012345678901234567890" } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 402 | }; |
| 403 | |
Andres Amaya Garcia | 2d0aa8b | 2017-07-21 14:57:26 +0100 | [diff] [blame] | 404 | static const size_t md5_test_buflen[7] = |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 405 | { |
| 406 | 0, 1, 3, 14, 26, 62, 80 |
| 407 | }; |
| 408 | |
| 409 | static const unsigned char md5_test_sum[7][16] = |
| 410 | { |
| 411 | { 0xD4, 0x1D, 0x8C, 0xD9, 0x8F, 0x00, 0xB2, 0x04, |
| 412 | 0xE9, 0x80, 0x09, 0x98, 0xEC, 0xF8, 0x42, 0x7E }, |
| 413 | { 0x0C, 0xC1, 0x75, 0xB9, 0xC0, 0xF1, 0xB6, 0xA8, |
| 414 | 0x31, 0xC3, 0x99, 0xE2, 0x69, 0x77, 0x26, 0x61 }, |
| 415 | { 0x90, 0x01, 0x50, 0x98, 0x3C, 0xD2, 0x4F, 0xB0, |
| 416 | 0xD6, 0x96, 0x3F, 0x7D, 0x28, 0xE1, 0x7F, 0x72 }, |
| 417 | { 0xF9, 0x6B, 0x69, 0x7D, 0x7C, 0xB7, 0x93, 0x8D, |
| 418 | 0x52, 0x5A, 0x2F, 0x31, 0xAA, 0xF1, 0x61, 0xD0 }, |
| 419 | { 0xC3, 0xFC, 0xD3, 0xD7, 0x61, 0x92, 0xE4, 0x00, |
| 420 | 0x7D, 0xFB, 0x49, 0x6C, 0xCA, 0x67, 0xE1, 0x3B }, |
| 421 | { 0xD1, 0x74, 0xAB, 0x98, 0xD2, 0x77, 0xD9, 0xF5, |
| 422 | 0xA5, 0x61, 0x1C, 0x2C, 0x9F, 0x41, 0x9D, 0x9F }, |
| 423 | { 0x57, 0xED, 0xF4, 0xA2, 0x2B, 0xE3, 0xC9, 0x55, |
| 424 | 0xAC, 0x49, 0xDA, 0x2E, 0x21, 0x07, 0xB6, 0x7A } |
| 425 | }; |
| 426 | |
| 427 | /* |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 428 | * Checkup routine |
| 429 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 430 | int mbedtls_md5_self_test( int verbose ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 431 | { |
Andres Amaya Garcia | 2d0aa8b | 2017-07-21 14:57:26 +0100 | [diff] [blame] | 432 | int i, ret = 0; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 433 | unsigned char md5sum[16]; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 434 | |
| 435 | for( i = 0; i < 7; i++ ) |
| 436 | { |
| 437 | if( verbose != 0 ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 438 | mbedtls_printf( " MD5 test #%d: ", i + 1 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 439 | |
Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 440 | ret = mbedtls_md5_ret( md5_test_buf[i], md5_test_buflen[i], md5sum ); |
Andres Amaya Garcia | 2d0aa8b | 2017-07-21 14:57:26 +0100 | [diff] [blame] | 441 | if( ret != 0 ) |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 442 | goto fail; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 443 | |
| 444 | if( memcmp( md5sum, md5_test_sum[i], 16 ) != 0 ) |
Andres Amaya Garcia | 2d0aa8b | 2017-07-21 14:57:26 +0100 | [diff] [blame] | 445 | { |
| 446 | ret = 1; |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 447 | goto fail; |
Andres Amaya Garcia | 2d0aa8b | 2017-07-21 14:57:26 +0100 | [diff] [blame] | 448 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 449 | |
| 450 | if( verbose != 0 ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 451 | mbedtls_printf( "passed\n" ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | if( verbose != 0 ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 455 | mbedtls_printf( "\n" ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 456 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 457 | return( 0 ); |
Andres Amaya Garcia | 2cfd7a9 | 2017-05-02 10:19:27 +0100 | [diff] [blame] | 458 | |
| 459 | fail: |
| 460 | if( verbose != 0 ) |
| 461 | mbedtls_printf( "failed\n" ); |
| 462 | |
Andres Amaya Garcia | 2d0aa8b | 2017-07-21 14:57:26 +0100 | [diff] [blame] | 463 | return( ret ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 464 | } |
| 465 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 466 | #endif /* MBEDTLS_SELF_TEST */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 467 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 468 | #endif /* MBEDTLS_MD5_C */ |