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