Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 1 | /* |
| 2 | * CTR_DRBG implementation based on AES-256 (NIST SP 800-90) |
| 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 | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 18 | */ |
| 19 | /* |
Paul Sokolovsky | 8d6d8c8 | 2018-02-10 11:11:41 +0200 | [diff] [blame] | 20 | * The NIST SP 800-90 DRBGs are described in the following publication. |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 21 | * |
| 22 | * http://csrc.nist.gov/publications/nistpubs/800-90/SP800-90revised_March2007.pdf |
| 23 | */ |
| 24 | |
Gilles Peskine | db09ef6 | 2020-06-03 01:43:33 +0200 | [diff] [blame] | 25 | #include "common.h" |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 26 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 27 | #if defined(MBEDTLS_CTR_DRBG_C) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 28 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 29 | #include "mbedtls/ctr_drbg.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 | 0e04d0e | 2011-11-27 14:46:59 +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 | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 35 | #if defined(MBEDTLS_FS_IO) |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 36 | #include <stdio.h> |
| 37 | #endif |
| 38 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 39 | #if defined(MBEDTLS_SELF_TEST) |
| 40 | #if defined(MBEDTLS_PLATFORM_C) |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 41 | #include "mbedtls/platform.h" |
Paul Bakker | 7dc4c44 | 2014-02-01 22:50:26 +0100 | [diff] [blame] | 42 | #else |
Rich Evans | 00ab470 | 2015-02-06 13:43:58 +0000 | [diff] [blame] | 43 | #include <stdio.h> |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 44 | #define mbedtls_printf printf |
| 45 | #endif /* MBEDTLS_PLATFORM_C */ |
| 46 | #endif /* MBEDTLS_SELF_TEST */ |
Paul Bakker | 7dc4c44 | 2014-02-01 22:50:26 +0100 | [diff] [blame] | 47 | |
Paul Bakker | 18d3291 | 2011-12-10 21:42:49 +0000 | [diff] [blame] | 48 | /* |
Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 49 | * CTR_DRBG context initialization |
| 50 | */ |
| 51 | void mbedtls_ctr_drbg_init( mbedtls_ctr_drbg_context *ctx ) |
| 52 | { |
| 53 | memset( ctx, 0, sizeof( mbedtls_ctr_drbg_context ) ); |
Gilles Peskine | e9a3454 | 2019-10-22 20:43:24 +0200 | [diff] [blame] | 54 | /* Indicate that the entropy nonce length is not set explicitly. |
| 55 | * See mbedtls_ctr_drbg_set_nonce_len(). */ |
| 56 | ctx->reseed_counter = -1; |
Manuel Pégourié-Gonnard | 0a4fb09 | 2015-05-07 12:50:31 +0100 | [diff] [blame] | 57 | |
Gavin Acquroff | 6aceb51 | 2020-03-01 17:06:11 -0800 | [diff] [blame] | 58 | ctx->reseed_interval = MBEDTLS_CTR_DRBG_RESEED_INTERVAL; |
Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 59 | } |
| 60 | |
Gavin Acquroff | 6aceb51 | 2020-03-01 17:06:11 -0800 | [diff] [blame] | 61 | /* |
| 62 | * This function resets CTR_DRBG context to the state immediately |
| 63 | * after initial call of mbedtls_ctr_drbg_init(). |
| 64 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 65 | void mbedtls_ctr_drbg_free( mbedtls_ctr_drbg_context *ctx ) |
Paul Bakker | fff0366 | 2014-06-18 16:21:25 +0200 | [diff] [blame] | 66 | { |
| 67 | if( ctx == NULL ) |
| 68 | return; |
| 69 | |
Manuel Pégourié-Gonnard | 0a4fb09 | 2015-05-07 12:50:31 +0100 | [diff] [blame] | 70 | #if defined(MBEDTLS_THREADING_C) |
Gilles Peskine | f4b3429 | 2021-01-30 13:05:32 +0100 | [diff] [blame^] | 71 | if( ctx->f_entropy != NULL ) |
| 72 | mbedtls_mutex_free( &ctx->mutex ); |
Manuel Pégourié-Gonnard | 0a4fb09 | 2015-05-07 12:50:31 +0100 | [diff] [blame] | 73 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 74 | mbedtls_aes_free( &ctx->aes_ctx ); |
Andres Amaya Garcia | 1f6301b | 2018-04-17 09:51:09 -0500 | [diff] [blame] | 75 | mbedtls_platform_zeroize( ctx, sizeof( mbedtls_ctr_drbg_context ) ); |
Gavin Acquroff | 6aceb51 | 2020-03-01 17:06:11 -0800 | [diff] [blame] | 76 | ctx->reseed_interval = MBEDTLS_CTR_DRBG_RESEED_INTERVAL; |
| 77 | ctx->reseed_counter = -1; |
Paul Bakker | fff0366 | 2014-06-18 16:21:25 +0200 | [diff] [blame] | 78 | } |
| 79 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 80 | void mbedtls_ctr_drbg_set_prediction_resistance( mbedtls_ctr_drbg_context *ctx, |
| 81 | int resistance ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 82 | { |
| 83 | ctx->prediction_resistance = resistance; |
| 84 | } |
| 85 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 86 | void mbedtls_ctr_drbg_set_entropy_len( mbedtls_ctr_drbg_context *ctx, |
| 87 | size_t len ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 88 | { |
| 89 | ctx->entropy_len = len; |
| 90 | } |
Paul Bakker | b6c5d2e | 2013-06-25 16:25:17 +0200 | [diff] [blame] | 91 | |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 92 | int mbedtls_ctr_drbg_set_nonce_len( mbedtls_ctr_drbg_context *ctx, |
| 93 | size_t len ) |
| 94 | { |
| 95 | /* If mbedtls_ctr_drbg_seed() has already been called, it's |
| 96 | * too late. Return the error code that's closest to making sense. */ |
| 97 | if( ctx->f_entropy != NULL ) |
| 98 | return( MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED ); |
| 99 | |
| 100 | if( len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT ) |
| 101 | return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG ); |
| 102 | #if SIZE_MAX > INT_MAX |
| 103 | /* This shouldn't be an issue because |
| 104 | * MBEDTLS_CTR_DRBG_MAX_SEED_INPUT < INT_MAX in any sensible |
| 105 | * configuration, but make sure anyway. */ |
| 106 | if( len > INT_MAX ) |
| 107 | return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG ); |
| 108 | #endif |
| 109 | |
| 110 | /* For backward compatibility with Mbed TLS <= 2.19, store the |
| 111 | * entropy nonce length in a field that already exists, but isn't |
| 112 | * used until after the initial seeding. */ |
| 113 | /* Due to the capping of len above, the value fits in an int. */ |
| 114 | ctx->reseed_counter = (int) len; |
| 115 | return( 0 ); |
| 116 | } |
| 117 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 118 | void mbedtls_ctr_drbg_set_reseed_interval( mbedtls_ctr_drbg_context *ctx, |
| 119 | int interval ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 120 | { |
| 121 | ctx->reseed_interval = interval; |
| 122 | } |
Paul Bakker | b6c5d2e | 2013-06-25 16:25:17 +0200 | [diff] [blame] | 123 | |
| 124 | static int block_cipher_df( unsigned char *output, |
| 125 | const unsigned char *data, size_t data_len ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 126 | { |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 127 | unsigned char buf[MBEDTLS_CTR_DRBG_MAX_SEED_INPUT + |
| 128 | MBEDTLS_CTR_DRBG_BLOCKSIZE + 16]; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 129 | unsigned char tmp[MBEDTLS_CTR_DRBG_SEEDLEN]; |
| 130 | unsigned char key[MBEDTLS_CTR_DRBG_KEYSIZE]; |
| 131 | unsigned char chain[MBEDTLS_CTR_DRBG_BLOCKSIZE]; |
Manuel Pégourié-Gonnard | 7c59363 | 2014-01-20 10:27:13 +0100 | [diff] [blame] | 132 | unsigned char *p, *iv; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 133 | mbedtls_aes_context aes_ctx; |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 134 | int ret = 0; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 135 | |
Paul Bakker | b9cfaa0 | 2013-10-11 18:58:55 +0200 | [diff] [blame] | 136 | int i, j; |
| 137 | size_t buf_len, use_len; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 138 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 139 | if( data_len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT ) |
| 140 | return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG ); |
Manuel Pégourié-Gonnard | 5cb4b31 | 2014-11-25 17:41:50 +0100 | [diff] [blame] | 141 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 142 | memset( buf, 0, MBEDTLS_CTR_DRBG_MAX_SEED_INPUT + |
| 143 | MBEDTLS_CTR_DRBG_BLOCKSIZE + 16 ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 144 | mbedtls_aes_init( &aes_ctx ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 145 | |
| 146 | /* |
| 147 | * Construct IV (16 bytes) and S in buffer |
| 148 | * IV = Counter (in 32-bits) padded to 16 with zeroes |
| 149 | * S = Length input string (in 32-bits) || Length of output (in 32-bits) || |
| 150 | * data || 0x80 |
| 151 | * (Total is padded to a multiple of 16-bytes with zeroes) |
| 152 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 153 | p = buf + MBEDTLS_CTR_DRBG_BLOCKSIZE; |
Paul Bakker | 2bc7cf1 | 2011-11-29 10:50:51 +0000 | [diff] [blame] | 154 | *p++ = ( data_len >> 24 ) & 0xff; |
| 155 | *p++ = ( data_len >> 16 ) & 0xff; |
| 156 | *p++ = ( data_len >> 8 ) & 0xff; |
| 157 | *p++ = ( data_len ) & 0xff; |
| 158 | p += 3; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 159 | *p++ = MBEDTLS_CTR_DRBG_SEEDLEN; |
Paul Bakker | 2bc7cf1 | 2011-11-29 10:50:51 +0000 | [diff] [blame] | 160 | memcpy( p, data, data_len ); |
| 161 | p[data_len] = 0x80; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 162 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 163 | buf_len = MBEDTLS_CTR_DRBG_BLOCKSIZE + 8 + data_len + 1; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 164 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 165 | for( i = 0; i < MBEDTLS_CTR_DRBG_KEYSIZE; i++ ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 166 | key[i] = i; |
| 167 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 168 | if( ( ret = mbedtls_aes_setkey_enc( &aes_ctx, key, |
| 169 | MBEDTLS_CTR_DRBG_KEYBITS ) ) != 0 ) |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 170 | { |
| 171 | goto exit; |
| 172 | } |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 173 | |
| 174 | /* |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 175 | * Reduce data to MBEDTLS_CTR_DRBG_SEEDLEN bytes of data |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 176 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 177 | for( j = 0; j < MBEDTLS_CTR_DRBG_SEEDLEN; j += MBEDTLS_CTR_DRBG_BLOCKSIZE ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 178 | { |
| 179 | p = buf; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 180 | memset( chain, 0, MBEDTLS_CTR_DRBG_BLOCKSIZE ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 181 | use_len = buf_len; |
| 182 | |
| 183 | while( use_len > 0 ) |
| 184 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 185 | for( i = 0; i < MBEDTLS_CTR_DRBG_BLOCKSIZE; i++ ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 186 | chain[i] ^= p[i]; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 187 | p += MBEDTLS_CTR_DRBG_BLOCKSIZE; |
| 188 | use_len -= ( use_len >= MBEDTLS_CTR_DRBG_BLOCKSIZE ) ? |
| 189 | MBEDTLS_CTR_DRBG_BLOCKSIZE : use_len; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 190 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 191 | if( ( ret = mbedtls_aes_crypt_ecb( &aes_ctx, MBEDTLS_AES_ENCRYPT, |
| 192 | chain, chain ) ) != 0 ) |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 193 | { |
| 194 | goto exit; |
| 195 | } |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 196 | } |
Paul Bakker | b9cfaa0 | 2013-10-11 18:58:55 +0200 | [diff] [blame] | 197 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 198 | memcpy( tmp + j, chain, MBEDTLS_CTR_DRBG_BLOCKSIZE ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 199 | |
| 200 | /* |
| 201 | * Update IV |
| 202 | */ |
| 203 | buf[3]++; |
| 204 | } |
| 205 | |
| 206 | /* |
| 207 | * Do final encryption with reduced data |
| 208 | */ |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 209 | if( ( ret = mbedtls_aes_setkey_enc( &aes_ctx, tmp, |
| 210 | MBEDTLS_CTR_DRBG_KEYBITS ) ) != 0 ) |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 211 | { |
| 212 | goto exit; |
| 213 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 214 | iv = tmp + MBEDTLS_CTR_DRBG_KEYSIZE; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 215 | p = output; |
| 216 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 217 | for( j = 0; j < MBEDTLS_CTR_DRBG_SEEDLEN; j += MBEDTLS_CTR_DRBG_BLOCKSIZE ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 218 | { |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 219 | if( ( ret = mbedtls_aes_crypt_ecb( &aes_ctx, MBEDTLS_AES_ENCRYPT, |
| 220 | iv, iv ) ) != 0 ) |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 221 | { |
| 222 | goto exit; |
| 223 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 224 | memcpy( p, iv, MBEDTLS_CTR_DRBG_BLOCKSIZE ); |
| 225 | p += MBEDTLS_CTR_DRBG_BLOCKSIZE; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 226 | } |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 227 | exit: |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 228 | mbedtls_aes_free( &aes_ctx ); |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 229 | /* |
| 230 | * tidy up the stack |
| 231 | */ |
Andres Amaya Garcia | 1f6301b | 2018-04-17 09:51:09 -0500 | [diff] [blame] | 232 | mbedtls_platform_zeroize( buf, sizeof( buf ) ); |
| 233 | mbedtls_platform_zeroize( tmp, sizeof( tmp ) ); |
| 234 | mbedtls_platform_zeroize( key, sizeof( key ) ); |
| 235 | mbedtls_platform_zeroize( chain, sizeof( chain ) ); |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 236 | if( 0 != ret ) |
| 237 | { |
| 238 | /* |
| 239 | * wipe partial seed from memory |
| 240 | */ |
Andres Amaya Garcia | 1f6301b | 2018-04-17 09:51:09 -0500 | [diff] [blame] | 241 | mbedtls_platform_zeroize( output, MBEDTLS_CTR_DRBG_SEEDLEN ); |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 242 | } |
Paul Bakker | c7ea99a | 2014-06-18 11:12:03 +0200 | [diff] [blame] | 243 | |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 244 | return( ret ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 245 | } |
| 246 | |
Gilles Peskine | ed7da59 | 2018-08-03 20:16:52 +0200 | [diff] [blame] | 247 | /* CTR_DRBG_Update (SP 800-90A §10.2.1.2) |
| 248 | * ctr_drbg_update_internal(ctx, provided_data) |
| 249 | * implements |
| 250 | * CTR_DRBG_Update(provided_data, Key, V) |
| 251 | * with inputs and outputs |
| 252 | * ctx->aes_ctx = Key |
| 253 | * ctx->counter = V |
| 254 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 255 | static int ctr_drbg_update_internal( mbedtls_ctr_drbg_context *ctx, |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 256 | const unsigned char data[MBEDTLS_CTR_DRBG_SEEDLEN] ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 257 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 258 | unsigned char tmp[MBEDTLS_CTR_DRBG_SEEDLEN]; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 259 | unsigned char *p = tmp; |
Paul Bakker | 369e14b | 2012-04-18 14:16:09 +0000 | [diff] [blame] | 260 | int i, j; |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 261 | int ret = 0; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 262 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 263 | memset( tmp, 0, MBEDTLS_CTR_DRBG_SEEDLEN ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 264 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 265 | for( j = 0; j < MBEDTLS_CTR_DRBG_SEEDLEN; j += MBEDTLS_CTR_DRBG_BLOCKSIZE ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 266 | { |
| 267 | /* |
| 268 | * Increase counter |
| 269 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 270 | for( i = MBEDTLS_CTR_DRBG_BLOCKSIZE; i > 0; i-- ) |
Paul Bakker | 369e14b | 2012-04-18 14:16:09 +0000 | [diff] [blame] | 271 | if( ++ctx->counter[i - 1] != 0 ) |
| 272 | break; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 273 | |
| 274 | /* |
| 275 | * Crypt counter block |
| 276 | */ |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 277 | if( ( ret = mbedtls_aes_crypt_ecb( &ctx->aes_ctx, MBEDTLS_AES_ENCRYPT, |
| 278 | ctx->counter, p ) ) != 0 ) |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 279 | { |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 280 | goto exit; |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 281 | } |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 282 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 283 | p += MBEDTLS_CTR_DRBG_BLOCKSIZE; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 284 | } |
| 285 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 286 | for( i = 0; i < MBEDTLS_CTR_DRBG_SEEDLEN; i++ ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 287 | tmp[i] ^= data[i]; |
| 288 | |
| 289 | /* |
| 290 | * Update key and counter |
| 291 | */ |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 292 | if( ( ret = mbedtls_aes_setkey_enc( &ctx->aes_ctx, tmp, |
| 293 | MBEDTLS_CTR_DRBG_KEYBITS ) ) != 0 ) |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 294 | { |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 295 | goto exit; |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 296 | } |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 297 | memcpy( ctx->counter, tmp + MBEDTLS_CTR_DRBG_KEYSIZE, |
| 298 | MBEDTLS_CTR_DRBG_BLOCKSIZE ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 299 | |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 300 | exit: |
| 301 | mbedtls_platform_zeroize( tmp, sizeof( tmp ) ); |
| 302 | return( ret ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 303 | } |
| 304 | |
Gilles Peskine | ed7da59 | 2018-08-03 20:16:52 +0200 | [diff] [blame] | 305 | /* CTR_DRBG_Instantiate with derivation function (SP 800-90A §10.2.1.3.2) |
| 306 | * mbedtls_ctr_drbg_update(ctx, additional, add_len) |
| 307 | * implements |
| 308 | * CTR_DRBG_Instantiate(entropy_input, nonce, personalization_string, |
| 309 | * security_strength) -> initial_working_state |
| 310 | * with inputs |
| 311 | * ctx->counter = all-bits-0 |
| 312 | * ctx->aes_ctx = context from all-bits-0 key |
| 313 | * additional[:add_len] = entropy_input || nonce || personalization_string |
| 314 | * and with outputs |
| 315 | * ctx = initial_working_state |
| 316 | */ |
Gilles Peskine | d919993 | 2018-09-11 16:41:54 +0200 | [diff] [blame] | 317 | int mbedtls_ctr_drbg_update_ret( mbedtls_ctr_drbg_context *ctx, |
| 318 | const unsigned char *additional, |
| 319 | size_t add_len ) |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 320 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 321 | unsigned char add_input[MBEDTLS_CTR_DRBG_SEEDLEN]; |
Janos Follath | 24eed8d | 2019-11-22 13:21:35 +0000 | [diff] [blame] | 322 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 323 | |
Gilles Peskine | d919993 | 2018-09-11 16:41:54 +0200 | [diff] [blame] | 324 | if( add_len == 0 ) |
| 325 | return( 0 ); |
Manuel Pégourié-Gonnard | 5cb4b31 | 2014-11-25 17:41:50 +0100 | [diff] [blame] | 326 | |
Gilles Peskine | d919993 | 2018-09-11 16:41:54 +0200 | [diff] [blame] | 327 | if( ( ret = block_cipher_df( add_input, additional, add_len ) ) != 0 ) |
| 328 | goto exit; |
| 329 | if( ( ret = ctr_drbg_update_internal( ctx, add_input ) ) != 0 ) |
| 330 | goto exit; |
| 331 | |
| 332 | exit: |
| 333 | mbedtls_platform_zeroize( add_input, sizeof( add_input ) ); |
| 334 | return( ret ); |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Gilles Peskine | d919993 | 2018-09-11 16:41:54 +0200 | [diff] [blame] | 337 | #if !defined(MBEDTLS_DEPRECATED_REMOVED) |
| 338 | void mbedtls_ctr_drbg_update( mbedtls_ctr_drbg_context *ctx, |
| 339 | const unsigned char *additional, |
| 340 | size_t add_len ) |
| 341 | { |
| 342 | /* MAX_INPUT would be more logical here, but we have to match |
| 343 | * block_cipher_df()'s limits since we can't propagate errors */ |
| 344 | if( add_len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT ) |
| 345 | add_len = MBEDTLS_CTR_DRBG_MAX_SEED_INPUT; |
| 346 | (void) mbedtls_ctr_drbg_update_ret( ctx, additional, add_len ); |
| 347 | } |
| 348 | #endif /* MBEDTLS_DEPRECATED_REMOVED */ |
| 349 | |
Gilles Peskine | ed7da59 | 2018-08-03 20:16:52 +0200 | [diff] [blame] | 350 | /* CTR_DRBG_Reseed with derivation function (SP 800-90A §10.2.1.4.2) |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 351 | * mbedtls_ctr_drbg_reseed(ctx, additional, len, nonce_len) |
Gilles Peskine | ed7da59 | 2018-08-03 20:16:52 +0200 | [diff] [blame] | 352 | * implements |
| 353 | * CTR_DRBG_Reseed(working_state, entropy_input, additional_input) |
| 354 | * -> new_working_state |
| 355 | * with inputs |
| 356 | * ctx contains working_state |
| 357 | * additional[:len] = additional_input |
| 358 | * and entropy_input comes from calling ctx->f_entropy |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 359 | * for (ctx->entropy_len + nonce_len) bytes |
Gilles Peskine | ed7da59 | 2018-08-03 20:16:52 +0200 | [diff] [blame] | 360 | * and with output |
| 361 | * ctx contains new_working_state |
| 362 | */ |
Gilles Peskine | 97f59ab | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 363 | static int mbedtls_ctr_drbg_reseed_internal( mbedtls_ctr_drbg_context *ctx, |
| 364 | const unsigned char *additional, |
| 365 | size_t len, |
| 366 | size_t nonce_len ) |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 367 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 368 | unsigned char seed[MBEDTLS_CTR_DRBG_MAX_SEED_INPUT]; |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 369 | size_t seedlen = 0; |
Janos Follath | 24eed8d | 2019-11-22 13:21:35 +0000 | [diff] [blame] | 370 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 371 | |
Gilles Peskine | dbd3f7c | 2019-10-22 17:25:30 +0200 | [diff] [blame] | 372 | if( ctx->entropy_len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT ) |
| 373 | return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG ); |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 374 | if( nonce_len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT - ctx->entropy_len ) |
| 375 | return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG ); |
| 376 | if( len > MBEDTLS_CTR_DRBG_MAX_SEED_INPUT - ctx->entropy_len - nonce_len ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 377 | return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG ); |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 378 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 379 | memset( seed, 0, MBEDTLS_CTR_DRBG_MAX_SEED_INPUT ); |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 380 | |
Gilles Peskine | dbd3f7c | 2019-10-22 17:25:30 +0200 | [diff] [blame] | 381 | /* Gather entropy_len bytes of entropy to seed state. */ |
| 382 | if( 0 != ctx->f_entropy( ctx->p_entropy, seed, ctx->entropy_len ) ) |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 383 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 384 | return( MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED ); |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 385 | } |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 386 | seedlen += ctx->entropy_len; |
| 387 | |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 388 | /* Gather entropy for a nonce if requested. */ |
| 389 | if( nonce_len != 0 ) |
| 390 | { |
ENT\stroej1 | 4b91986 | 2020-12-23 17:28:33 -0600 | [diff] [blame] | 391 | if( 0 != ctx->f_entropy( ctx->p_entropy, seed + seedlen, nonce_len ) ) |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 392 | { |
| 393 | return( MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED ); |
| 394 | } |
| 395 | seedlen += nonce_len; |
| 396 | } |
| 397 | |
Gilles Peskine | dbd3f7c | 2019-10-22 17:25:30 +0200 | [diff] [blame] | 398 | /* Add additional data if provided. */ |
| 399 | if( additional != NULL && len != 0 ) |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 400 | { |
| 401 | memcpy( seed + seedlen, additional, len ); |
| 402 | seedlen += len; |
| 403 | } |
| 404 | |
Gilles Peskine | dbd3f7c | 2019-10-22 17:25:30 +0200 | [diff] [blame] | 405 | /* Reduce to 384 bits. */ |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 406 | if( ( ret = block_cipher_df( seed, seed, seedlen ) ) != 0 ) |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 407 | goto exit; |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 408 | |
Gilles Peskine | dbd3f7c | 2019-10-22 17:25:30 +0200 | [diff] [blame] | 409 | /* Update state. */ |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 410 | if( ( ret = ctr_drbg_update_internal( ctx, seed ) ) != 0 ) |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 411 | goto exit; |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 412 | ctx->reseed_counter = 1; |
| 413 | |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 414 | exit: |
| 415 | mbedtls_platform_zeroize( seed, sizeof( seed ) ); |
| 416 | return( ret ); |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 417 | } |
Paul Bakker | 9af723c | 2014-05-01 13:03:14 +0200 | [diff] [blame] | 418 | |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 419 | int mbedtls_ctr_drbg_reseed( mbedtls_ctr_drbg_context *ctx, |
| 420 | const unsigned char *additional, size_t len ) |
| 421 | { |
| 422 | return( mbedtls_ctr_drbg_reseed_internal( ctx, additional, len, 0 ) ); |
| 423 | } |
| 424 | |
Gilles Peskine | e9a3454 | 2019-10-22 20:43:24 +0200 | [diff] [blame] | 425 | /* Return a "good" nonce length for CTR_DRBG. The chosen nonce length |
| 426 | * is sufficient to achieve the maximum security strength given the key |
| 427 | * size and entropy length. If there is enough entropy in the initial |
| 428 | * call to the entropy function to serve as both the entropy input and |
| 429 | * the nonce, don't make a second call to get a nonce. */ |
| 430 | static size_t good_nonce_len( size_t entropy_len ) |
| 431 | { |
| 432 | if( entropy_len >= MBEDTLS_CTR_DRBG_KEYSIZE * 3 / 2 ) |
| 433 | return( 0 ); |
| 434 | else |
| 435 | return( ( entropy_len + 1 ) / 2 ); |
| 436 | } |
| 437 | |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 438 | /* CTR_DRBG_Instantiate with derivation function (SP 800-90A §10.2.1.3.2) |
Gilles Peskine | 379561f | 2019-10-18 16:57:48 +0200 | [diff] [blame] | 439 | * mbedtls_ctr_drbg_seed(ctx, f_entropy, p_entropy, custom, len) |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 440 | * implements |
| 441 | * CTR_DRBG_Instantiate(entropy_input, nonce, personalization_string, |
| 442 | * security_strength) -> initial_working_state |
| 443 | * with inputs |
| 444 | * custom[:len] = nonce || personalization_string |
Gilles Peskine | 379561f | 2019-10-18 16:57:48 +0200 | [diff] [blame] | 445 | * where entropy_input comes from f_entropy for ctx->entropy_len bytes |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 446 | * and with outputs |
| 447 | * ctx = initial_working_state |
| 448 | */ |
Gilles Peskine | 50ed86b | 2019-10-04 12:15:55 +0200 | [diff] [blame] | 449 | int mbedtls_ctr_drbg_seed( mbedtls_ctr_drbg_context *ctx, |
| 450 | int (*f_entropy)(void *, unsigned char *, size_t), |
| 451 | void *p_entropy, |
| 452 | const unsigned char *custom, |
| 453 | size_t len ) |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 454 | { |
Janos Follath | 24eed8d | 2019-11-22 13:21:35 +0000 | [diff] [blame] | 455 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 456 | unsigned char key[MBEDTLS_CTR_DRBG_KEYSIZE]; |
Gilles Peskine | e9a3454 | 2019-10-22 20:43:24 +0200 | [diff] [blame] | 457 | size_t nonce_len; |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 458 | |
| 459 | memset( key, 0, MBEDTLS_CTR_DRBG_KEYSIZE ); |
| 460 | |
Gilles Peskine | f4b3429 | 2021-01-30 13:05:32 +0100 | [diff] [blame^] | 461 | #if defined(MBEDTLS_THREADING_C) |
| 462 | mbedtls_mutex_init( &ctx->mutex ); |
| 463 | #endif |
| 464 | |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 465 | mbedtls_aes_init( &ctx->aes_ctx ); |
| 466 | |
| 467 | ctx->f_entropy = f_entropy; |
| 468 | ctx->p_entropy = p_entropy; |
| 469 | |
Gilles Peskine | 50ed86b | 2019-10-04 12:15:55 +0200 | [diff] [blame] | 470 | if( ctx->entropy_len == 0 ) |
| 471 | ctx->entropy_len = MBEDTLS_CTR_DRBG_ENTROPY_LEN; |
Gilles Peskine | e9a3454 | 2019-10-22 20:43:24 +0200 | [diff] [blame] | 472 | /* ctx->reseed_counter contains the desired amount of entropy to |
| 473 | * grab for a nonce (see mbedtls_ctr_drbg_set_nonce_len()). |
| 474 | * If it's -1, indicating that the entropy nonce length was not set |
| 475 | * explicitly, use a sufficiently large nonce for security. */ |
| 476 | nonce_len = ( ctx->reseed_counter >= 0 ? |
| 477 | (size_t) ctx->reseed_counter : |
| 478 | good_nonce_len( ctx->entropy_len ) ); |
| 479 | |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 480 | /* Initialize with an empty key. */ |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 481 | if( ( ret = mbedtls_aes_setkey_enc( &ctx->aes_ctx, key, |
| 482 | MBEDTLS_CTR_DRBG_KEYBITS ) ) != 0 ) |
| 483 | { |
| 484 | return( ret ); |
| 485 | } |
| 486 | |
Gilles Peskine | e9a3454 | 2019-10-22 20:43:24 +0200 | [diff] [blame] | 487 | /* Do the initial seeding. */ |
Gilles Peskine | 9be5098 | 2019-10-22 18:42:27 +0200 | [diff] [blame] | 488 | if( ( ret = mbedtls_ctr_drbg_reseed_internal( ctx, custom, len, |
Gilles Peskine | e9a3454 | 2019-10-22 20:43:24 +0200 | [diff] [blame] | 489 | nonce_len ) ) != 0 ) |
Gilles Peskine | 8bf5613 | 2019-10-02 20:31:54 +0200 | [diff] [blame] | 490 | { |
| 491 | return( ret ); |
| 492 | } |
| 493 | return( 0 ); |
| 494 | } |
| 495 | |
Gilles Peskine | ed7da59 | 2018-08-03 20:16:52 +0200 | [diff] [blame] | 496 | /* CTR_DRBG_Generate with derivation function (SP 800-90A §10.2.1.5.2) |
| 497 | * mbedtls_ctr_drbg_random_with_add(ctx, output, output_len, additional, add_len) |
| 498 | * implements |
| 499 | * CTR_DRBG_Reseed(working_state, entropy_input, additional[:add_len]) |
| 500 | * -> working_state_after_reseed |
| 501 | * if required, then |
| 502 | * CTR_DRBG_Generate(working_state_after_reseed, |
| 503 | * requested_number_of_bits, additional_input) |
| 504 | * -> status, returned_bits, new_working_state |
| 505 | * with inputs |
| 506 | * ctx contains working_state |
| 507 | * requested_number_of_bits = 8 * output_len |
| 508 | * additional[:add_len] = additional_input |
| 509 | * and entropy_input comes from calling ctx->f_entropy |
| 510 | * and with outputs |
| 511 | * status = SUCCESS (this function does the reseed internally) |
| 512 | * returned_bits = output[:output_len] |
| 513 | * ctx contains new_working_state |
| 514 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 515 | int mbedtls_ctr_drbg_random_with_add( void *p_rng, |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 516 | unsigned char *output, size_t output_len, |
Paul Bakker | 1bc9efc | 2011-12-03 11:29:32 +0000 | [diff] [blame] | 517 | const unsigned char *additional, size_t add_len ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 518 | { |
| 519 | int ret = 0; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 520 | mbedtls_ctr_drbg_context *ctx = (mbedtls_ctr_drbg_context *) p_rng; |
| 521 | unsigned char add_input[MBEDTLS_CTR_DRBG_SEEDLEN]; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 522 | unsigned char *p = output; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 523 | unsigned char tmp[MBEDTLS_CTR_DRBG_BLOCKSIZE]; |
Paul Bakker | 369e14b | 2012-04-18 14:16:09 +0000 | [diff] [blame] | 524 | int i; |
Paul Bakker | 23fd5ea | 2011-11-29 15:56:12 +0000 | [diff] [blame] | 525 | size_t use_len; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 526 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 527 | if( output_len > MBEDTLS_CTR_DRBG_MAX_REQUEST ) |
| 528 | return( MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 529 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 530 | if( add_len > MBEDTLS_CTR_DRBG_MAX_INPUT ) |
| 531 | return( MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 532 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 533 | memset( add_input, 0, MBEDTLS_CTR_DRBG_SEEDLEN ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 534 | |
| 535 | if( ctx->reseed_counter > ctx->reseed_interval || |
| 536 | ctx->prediction_resistance ) |
| 537 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 538 | if( ( ret = mbedtls_ctr_drbg_reseed( ctx, additional, add_len ) ) != 0 ) |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 539 | { |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 540 | return( ret ); |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 541 | } |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 542 | add_len = 0; |
| 543 | } |
| 544 | |
| 545 | if( add_len > 0 ) |
| 546 | { |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 547 | if( ( ret = block_cipher_df( add_input, additional, add_len ) ) != 0 ) |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 548 | goto exit; |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 549 | if( ( ret = ctr_drbg_update_internal( ctx, add_input ) ) != 0 ) |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 550 | goto exit; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 551 | } |
| 552 | |
| 553 | while( output_len > 0 ) |
| 554 | { |
| 555 | /* |
| 556 | * Increase counter |
| 557 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 558 | for( i = MBEDTLS_CTR_DRBG_BLOCKSIZE; i > 0; i-- ) |
Paul Bakker | 369e14b | 2012-04-18 14:16:09 +0000 | [diff] [blame] | 559 | if( ++ctx->counter[i - 1] != 0 ) |
| 560 | break; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 561 | |
| 562 | /* |
| 563 | * Crypt counter block |
| 564 | */ |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 565 | if( ( ret = mbedtls_aes_crypt_ecb( &ctx->aes_ctx, MBEDTLS_AES_ENCRYPT, |
| 566 | ctx->counter, tmp ) ) != 0 ) |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 567 | { |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 568 | goto exit; |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 569 | } |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 570 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 571 | use_len = ( output_len > MBEDTLS_CTR_DRBG_BLOCKSIZE ) |
| 572 | ? MBEDTLS_CTR_DRBG_BLOCKSIZE : output_len; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 573 | /* |
| 574 | * Copy random block to destination |
| 575 | */ |
Paul Bakker | 23fd5ea | 2011-11-29 15:56:12 +0000 | [diff] [blame] | 576 | memcpy( p, tmp, use_len ); |
| 577 | p += use_len; |
| 578 | output_len -= use_len; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 579 | } |
| 580 | |
Dvir Markovich | 1b36499 | 2017-06-26 13:43:34 +0300 | [diff] [blame] | 581 | if( ( ret = ctr_drbg_update_internal( ctx, add_input ) ) != 0 ) |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 582 | goto exit; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 583 | |
| 584 | ctx->reseed_counter++; |
| 585 | |
Gilles Peskine | d9aa84d | 2018-09-11 15:34:17 +0200 | [diff] [blame] | 586 | exit: |
| 587 | mbedtls_platform_zeroize( add_input, sizeof( add_input ) ); |
| 588 | mbedtls_platform_zeroize( tmp, sizeof( tmp ) ); |
Gilles Peskine | afaee1c | 2019-11-28 09:45:32 +0100 | [diff] [blame] | 589 | return( ret ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 590 | } |
| 591 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 592 | int mbedtls_ctr_drbg_random( void *p_rng, unsigned char *output, |
| 593 | size_t output_len ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 594 | { |
Janos Follath | 24eed8d | 2019-11-22 13:21:35 +0000 | [diff] [blame] | 595 | int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; |
Manuel Pégourié-Gonnard | 0a4fb09 | 2015-05-07 12:50:31 +0100 | [diff] [blame] | 596 | mbedtls_ctr_drbg_context *ctx = (mbedtls_ctr_drbg_context *) p_rng; |
| 597 | |
| 598 | #if defined(MBEDTLS_THREADING_C) |
| 599 | if( ( ret = mbedtls_mutex_lock( &ctx->mutex ) ) != 0 ) |
| 600 | return( ret ); |
| 601 | #endif |
| 602 | |
| 603 | ret = mbedtls_ctr_drbg_random_with_add( ctx, output, output_len, NULL, 0 ); |
| 604 | |
| 605 | #if defined(MBEDTLS_THREADING_C) |
| 606 | if( mbedtls_mutex_unlock( &ctx->mutex ) != 0 ) |
| 607 | return( MBEDTLS_ERR_THREADING_MUTEX_ERROR ); |
| 608 | #endif |
| 609 | |
| 610 | return( ret ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 611 | } |
| 612 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 613 | #if defined(MBEDTLS_FS_IO) |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 614 | int mbedtls_ctr_drbg_write_seed_file( mbedtls_ctr_drbg_context *ctx, |
| 615 | const char *path ) |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 616 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 617 | int ret = MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR; |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 618 | FILE *f; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 619 | unsigned char buf[ MBEDTLS_CTR_DRBG_MAX_INPUT ]; |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 620 | |
| 621 | if( ( f = fopen( path, "wb" ) ) == NULL ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 622 | return( MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR ); |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 623 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 624 | if( ( ret = mbedtls_ctr_drbg_random( ctx, buf, |
| 625 | MBEDTLS_CTR_DRBG_MAX_INPUT ) ) != 0 ) |
Paul Bakker | c72d3f7 | 2013-05-14 13:22:41 +0200 | [diff] [blame] | 626 | goto exit; |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 627 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 628 | if( fwrite( buf, 1, MBEDTLS_CTR_DRBG_MAX_INPUT, f ) != |
| 629 | MBEDTLS_CTR_DRBG_MAX_INPUT ) |
| 630 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 631 | ret = MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR; |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 632 | } |
Andres Amaya Garcia | 13f41e1 | 2017-06-26 10:56:58 +0100 | [diff] [blame] | 633 | else |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 634 | { |
Andres Amaya Garcia | 13f41e1 | 2017-06-26 10:56:58 +0100 | [diff] [blame] | 635 | ret = 0; |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 636 | } |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 637 | |
Andres Amaya Garcia | 4e2c07c | 2017-06-27 16:57:26 +0100 | [diff] [blame] | 638 | exit: |
Andres Amaya Garcia | 1f6301b | 2018-04-17 09:51:09 -0500 | [diff] [blame] | 639 | mbedtls_platform_zeroize( buf, sizeof( buf ) ); |
Paul Bakker | c72d3f7 | 2013-05-14 13:22:41 +0200 | [diff] [blame] | 640 | |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 641 | fclose( f ); |
Paul Bakker | c72d3f7 | 2013-05-14 13:22:41 +0200 | [diff] [blame] | 642 | return( ret ); |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Hanno Becker | a08651f | 2018-10-05 09:38:59 +0100 | [diff] [blame] | 645 | int mbedtls_ctr_drbg_update_seed_file( mbedtls_ctr_drbg_context *ctx, |
| 646 | const char *path ) |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 647 | { |
Andres Amaya Garcia | 13f41e1 | 2017-06-26 10:56:58 +0100 | [diff] [blame] | 648 | int ret = 0; |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 649 | FILE *f = NULL; |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 650 | size_t n; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 651 | unsigned char buf[ MBEDTLS_CTR_DRBG_MAX_INPUT ]; |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 652 | unsigned char c; |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 653 | |
| 654 | if( ( f = fopen( path, "rb" ) ) == NULL ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 655 | return( MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR ); |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 656 | |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 657 | n = fread( buf, 1, sizeof( buf ), f ); |
| 658 | if( fread( &c, 1, 1, f ) != 0 ) |
Andres Amaya Garcia | 4e2c07c | 2017-06-27 16:57:26 +0100 | [diff] [blame] | 659 | { |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 660 | ret = MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG; |
| 661 | goto exit; |
Andres Amaya Garcia | 4e2c07c | 2017-06-27 16:57:26 +0100 | [diff] [blame] | 662 | } |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 663 | if( n == 0 || ferror( f ) ) |
| 664 | { |
Andres Amaya Garcia | 13f41e1 | 2017-06-26 10:56:58 +0100 | [diff] [blame] | 665 | ret = MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR; |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 666 | goto exit; |
| 667 | } |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 668 | fclose( f ); |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 669 | f = NULL; |
Paul Bakker | c72d3f7 | 2013-05-14 13:22:41 +0200 | [diff] [blame] | 670 | |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 671 | ret = mbedtls_ctr_drbg_update_ret( ctx, buf, n ); |
| 672 | |
| 673 | exit: |
Andres Amaya Garcia | 1f6301b | 2018-04-17 09:51:09 -0500 | [diff] [blame] | 674 | mbedtls_platform_zeroize( buf, sizeof( buf ) ); |
Gilles Peskine | 8220466 | 2018-09-11 18:43:09 +0200 | [diff] [blame] | 675 | if( f != NULL ) |
| 676 | fclose( f ); |
Andres Amaya Garcia | 13f41e1 | 2017-06-26 10:56:58 +0100 | [diff] [blame] | 677 | if( ret != 0 ) |
| 678 | return( ret ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 679 | return( mbedtls_ctr_drbg_write_seed_file( ctx, path ) ); |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 680 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 681 | #endif /* MBEDTLS_FS_IO */ |
Paul Bakker | fc754a9 | 2011-12-05 13:23:51 +0000 | [diff] [blame] | 682 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 683 | #if defined(MBEDTLS_SELF_TEST) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 684 | |
ENT\stroej1 | 70f63d0 | 2020-12-28 08:50:23 -0600 | [diff] [blame] | 685 | /* The CTR_DRBG NIST test vectors used here are available at |
| 686 | * https://csrc.nist.gov/CSRC/media/Projects/Cryptographic-Algorithm-Validation-Program/documents/drbg/drbgtestvectors.zip |
| 687 | * |
| 688 | * The parameters used to derive the test data are: |
| 689 | * |
| 690 | * [AES-128 use df] |
| 691 | * [PredictionResistance = True/False] |
| 692 | * [EntropyInputLen = 128] |
| 693 | * [NonceLen = 64] |
| 694 | * [PersonalizationStringLen = 128] |
| 695 | * [AdditionalInputLen = 0] |
| 696 | * [ReturnedBitsLen = 512] |
| 697 | * |
| 698 | * [AES-256 use df] |
| 699 | * [PredictionResistance = True/False] |
| 700 | * [EntropyInputLen = 256] |
| 701 | * [NonceLen = 128] |
| 702 | * [PersonalizationStringLen = 256] |
| 703 | * [AdditionalInputLen = 0] |
| 704 | * [ReturnedBitsLen = 512] |
| 705 | * |
| 706 | */ |
| 707 | |
Gilles Peskine | 02e79a4 | 2019-10-07 17:06:06 +0200 | [diff] [blame] | 708 | #if defined(MBEDTLS_CTR_DRBG_USE_128_BIT_KEY) |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 709 | static const unsigned char entropy_source_pr[] = |
| 710 | { 0x04, 0xd9, 0x49, 0xa6, 0xdc, 0xe8, 0x6e, 0xbb, |
| 711 | 0xf1, 0x08, 0x77, 0x2b, 0x9e, 0x08, 0xca, 0x92, |
| 712 | 0x65, 0x16, 0xda, 0x99, 0xa2, 0x59, 0xf3, 0xe8, |
| 713 | 0x38, 0x7e, 0x3f, 0x6b, 0x51, 0x70, 0x7b, 0x20, |
| 714 | 0xec, 0x53, 0xd0, 0x66, 0xc3, 0x0f, 0xe3, 0xb0, |
| 715 | 0xe0, 0x86, 0xa6, 0xaa, 0x5f, 0x72, 0x2f, 0xad, |
| 716 | 0xf7, 0xef, 0x06, 0xb8, 0xd6, 0x9c, 0x9d, 0xe8 }; |
Gilles Peskine | 02e79a4 | 2019-10-07 17:06:06 +0200 | [diff] [blame] | 717 | |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 718 | static const unsigned char entropy_source_nopr[] = |
| 719 | { 0x07, 0x0d, 0x59, 0x63, 0x98, 0x73, 0xa5, 0x45, |
| 720 | 0x27, 0x38, 0x22, 0x7b, 0x76, 0x85, 0xd1, 0xa9, |
| 721 | 0x74, 0x18, 0x1f, 0x3c, 0x22, 0xf6, 0x49, 0x20, |
| 722 | 0x4a, 0x47, 0xc2, 0xf3, 0x85, 0x16, 0xb4, 0x6f, |
| 723 | 0x00, 0x2e, 0x71, 0xda, 0xed, 0x16, 0x9b, 0x5c }; |
| 724 | |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 725 | static const unsigned char pers_pr[] = |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 726 | { 0xbf, 0xa4, 0x9a, 0x8f, 0x7b, 0xd8, 0xb1, 0x7a, |
| 727 | 0x9d, 0xfa, 0x45, 0xed, 0x21, 0x52, 0xb3, 0xad }; |
| 728 | |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 729 | static const unsigned char pers_nopr[] = |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 730 | { 0x4e, 0x61, 0x79, 0xd4, 0xc2, 0x72, 0xa1, 0x4c, |
| 731 | 0xf1, 0x3d, 0xf6, 0x5e, 0xa3, 0xa6, 0xe5, 0x0f }; |
| 732 | |
| 733 | static const unsigned char result_pr[] = |
| 734 | { 0xc9, 0x0a, 0xaf, 0x85, 0x89, 0x71, 0x44, 0x66, |
| 735 | 0x4f, 0x25, 0x0b, 0x2b, 0xde, 0xd8, 0xfa, 0xff, |
| 736 | 0x52, 0x5a, 0x1b, 0x32, 0x5e, 0x41, 0x7a, 0x10, |
| 737 | 0x1f, 0xef, 0x1e, 0x62, 0x23, 0xe9, 0x20, 0x30, |
| 738 | 0xc9, 0x0d, 0xad, 0x69, 0xb4, 0x9c, 0x5b, 0xf4, |
| 739 | 0x87, 0x42, 0xd5, 0xae, 0x5e, 0x5e, 0x43, 0xcc, |
| 740 | 0xd9, 0xfd, 0x0b, 0x93, 0x4a, 0xe3, 0xd4, 0x06, |
| 741 | 0x37, 0x36, 0x0f, 0x3f, 0x72, 0x82, 0x0c, 0xcf }; |
| 742 | |
| 743 | static const unsigned char result_nopr[] = |
| 744 | { 0x31, 0xc9, 0x91, 0x09, 0xf8, 0xc5, 0x10, 0x13, |
| 745 | 0x3c, 0xd3, 0x96, 0xf9, 0xbc, 0x2c, 0x12, 0xc0, |
| 746 | 0x7c, 0xc1, 0x61, 0x5f, 0xa3, 0x09, 0x99, 0xaf, |
| 747 | 0xd7, 0xf2, 0x36, 0xfd, 0x40, 0x1a, 0x8b, 0xf2, |
| 748 | 0x33, 0x38, 0xee, 0x1d, 0x03, 0x5f, 0x83, 0xb7, |
| 749 | 0xa2, 0x53, 0xdc, 0xee, 0x18, 0xfc, 0xa7, 0xf2, |
| 750 | 0xee, 0x96, 0xc6, 0xc2, 0xcd, 0x0c, 0xff, 0x02, |
| 751 | 0x76, 0x70, 0x69, 0xaa, 0x69, 0xd1, 0x3b, 0xe8 }; |
Gilles Peskine | 02e79a4 | 2019-10-07 17:06:06 +0200 | [diff] [blame] | 752 | #else /* MBEDTLS_CTR_DRBG_USE_128_BIT_KEY */ |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 753 | |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 754 | static const unsigned char entropy_source_pr[] = |
| 755 | { 0xca, 0x58, 0xfd, 0xf2, 0xb9, 0x77, 0xcb, 0x49, |
| 756 | 0xd4, 0xe0, 0x5b, 0xe2, 0x39, 0x50, 0xd9, 0x8a, |
| 757 | 0x6a, 0xb3, 0xc5, 0x2f, 0xdf, 0x74, 0xd5, 0x85, |
| 758 | 0x8f, 0xd1, 0xba, 0x64, 0x54, 0x7b, 0xdb, 0x1e, |
| 759 | 0xc5, 0xea, 0x24, 0xc0, 0xfa, 0x0c, 0x90, 0x15, |
| 760 | 0x09, 0x20, 0x92, 0x42, 0x32, 0x36, 0x45, 0x45, |
| 761 | 0x7d, 0x20, 0x76, 0x6b, 0xcf, 0xa2, 0x15, 0xc8, |
| 762 | 0x2f, 0x9f, 0xbc, 0x88, 0x3f, 0x80, 0xd1, 0x2c, |
| 763 | 0xb7, 0x16, 0xd1, 0x80, 0x9e, 0xe1, 0xc9, 0xb3, |
| 764 | 0x88, 0x1b, 0x21, 0x45, 0xef, 0xa1, 0x7f, 0xce, |
| 765 | 0xc8, 0x92, 0x35, 0x55, 0x2a, 0xd9, 0x1d, 0x8e, |
| 766 | 0x12, 0x38, 0xac, 0x01, 0x4e, 0x38, 0x18, 0x76, |
| 767 | 0x9c, 0xf2, 0xb6, 0xd4, 0x13, 0xb6, 0x2c, 0x77, |
| 768 | 0xc0, 0xe7, 0xe6, 0x0c, 0x47, 0x44, 0x95, 0xbe }; |
| 769 | |
| 770 | static const unsigned char entropy_source_nopr[] = |
| 771 | { 0x4c, 0xfb, 0x21, 0x86, 0x73, 0x34, 0x6d, 0x9d, |
| 772 | 0x50, 0xc9, 0x22, 0xe4, 0x9b, 0x0d, 0xfc, 0xd0, |
| 773 | 0x90, 0xad, 0xf0, 0x4f, 0x5c, 0x3b, 0xa4, 0x73, |
| 774 | 0x27, 0xdf, 0xcd, 0x6f, 0xa6, 0x3a, 0x78, 0x5c, |
| 775 | 0x01, 0x69, 0x62, 0xa7, 0xfd, 0x27, 0x87, 0xa2, |
| 776 | 0x4b, 0xf6, 0xbe, 0x47, 0xef, 0x37, 0x83, 0xf1, |
| 777 | 0xb7, 0xec, 0x46, 0x07, 0x23, 0x63, 0x83, 0x4a, |
| 778 | 0x1b, 0x01, 0x33, 0xf2, 0xc2, 0x38, 0x91, 0xdb, |
| 779 | 0x4f, 0x11, 0xa6, 0x86, 0x51, 0xf2, 0x3e, 0x3a, |
| 780 | 0x8b, 0x1f, 0xdc, 0x03, 0xb1, 0x92, 0xc7, 0xe7 }; |
| 781 | |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 782 | static const unsigned char pers_pr[] = |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 783 | { 0x5a, 0x70, 0x95, 0xe9, 0x81, 0x40, 0x52, 0x33, |
| 784 | 0x91, 0x53, 0x7e, 0x75, 0xd6, 0x19, 0x9d, 0x1e, |
| 785 | 0xad, 0x0d, 0xc6, 0xa7, 0xde, 0x6c, 0x1f, 0xe0, |
| 786 | 0xea, 0x18, 0x33, 0xa8, 0x7e, 0x06, 0x20, 0xe9 }; |
| 787 | |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 788 | static const unsigned char pers_nopr[] = |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 789 | { 0x88, 0xee, 0xb8, 0xe0, 0xe8, 0x3b, 0xf3, 0x29, |
| 790 | 0x4b, 0xda, 0xcd, 0x60, 0x99, 0xeb, 0xe4, 0xbf, |
| 791 | 0x55, 0xec, 0xd9, 0x11, 0x3f, 0x71, 0xe5, 0xeb, |
| 792 | 0xcb, 0x45, 0x75, 0xf3, 0xd6, 0xa6, 0x8a, 0x6b }; |
| 793 | |
| 794 | static const unsigned char result_pr[] = |
| 795 | { 0xce, 0x2f, 0xdb, 0xb6, 0xd9, 0xb7, 0x39, 0x85, |
| 796 | 0x04, 0xc5, 0xc0, 0x42, 0xc2, 0x31, 0xc6, 0x1d, |
| 797 | 0x9b, 0x5a, 0x59, 0xf8, 0x7e, 0x0d, 0xcc, 0x62, |
| 798 | 0x7b, 0x65, 0x11, 0x55, 0x10, 0xeb, 0x9e, 0x3d, |
| 799 | 0xa4, 0xfb, 0x1c, 0x6a, 0x18, 0xc0, 0x74, 0xdb, |
| 800 | 0xdd, 0xe7, 0x02, 0x23, 0x63, 0x21, 0xd0, 0x39, |
| 801 | 0xf9, 0xa7, 0xc4, 0x52, 0x84, 0x3b, 0x49, 0x40, |
| 802 | 0x72, 0x2b, 0xb0, 0x6c, 0x9c, 0xdb, 0xc3, 0x43 }; |
| 803 | |
| 804 | static const unsigned char result_nopr[] = |
| 805 | { 0xa5, 0x51, 0x80, 0xa1, 0x90, 0xbe, 0xf3, 0xad, |
| 806 | 0xaf, 0x28, 0xf6, 0xb7, 0x95, 0xe9, 0xf1, 0xf3, |
| 807 | 0xd6, 0xdf, 0xa1, 0xb2, 0x7d, 0xd0, 0x46, 0x7b, |
| 808 | 0x0c, 0x75, 0xf5, 0xfa, 0x93, 0x1e, 0x97, 0x14, |
| 809 | 0x75, 0xb2, 0x7c, 0xae, 0x03, 0xa2, 0x96, 0x54, |
| 810 | 0xe2, 0xf4, 0x09, 0x66, 0xea, 0x33, 0x64, 0x30, |
| 811 | 0x40, 0xd1, 0x40, 0x0f, 0xe6, 0x77, 0x87, 0x3a, |
| 812 | 0xf8, 0x09, 0x7c, 0x1f, 0xe9, 0xf0, 0x02, 0x98 }; |
Gilles Peskine | 02e79a4 | 2019-10-07 17:06:06 +0200 | [diff] [blame] | 813 | #endif /* MBEDTLS_CTR_DRBG_USE_128_BIT_KEY */ |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 814 | |
Manuel Pégourié-Gonnard | 9592485 | 2014-03-21 10:54:55 +0100 | [diff] [blame] | 815 | static size_t test_offset; |
Paul Bakker | b6c5d2e | 2013-06-25 16:25:17 +0200 | [diff] [blame] | 816 | static int ctr_drbg_self_test_entropy( void *data, unsigned char *buf, |
| 817 | size_t len ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 818 | { |
Manuel Pégourié-Gonnard | b3b205e | 2014-01-31 12:04:06 +0100 | [diff] [blame] | 819 | const unsigned char *p = data; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 820 | memcpy( buf, p + test_offset, len ); |
Manuel Pégourié-Gonnard | b3b205e | 2014-01-31 12:04:06 +0100 | [diff] [blame] | 821 | test_offset += len; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 822 | return( 0 ); |
| 823 | } |
| 824 | |
Paul Bakker | 7dc4c44 | 2014-02-01 22:50:26 +0100 | [diff] [blame] | 825 | #define CHK( c ) if( (c) != 0 ) \ |
| 826 | { \ |
| 827 | if( verbose != 0 ) \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 828 | mbedtls_printf( "failed\n" ); \ |
Paul Bakker | 7dc4c44 | 2014-02-01 22:50:26 +0100 | [diff] [blame] | 829 | return( 1 ); \ |
Manuel Pégourié-Gonnard | b3b205e | 2014-01-31 12:04:06 +0100 | [diff] [blame] | 830 | } |
| 831 | |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 832 | #define SELF_TEST_OUPUT_DISCARD_LENGTH 64 |
| 833 | |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 834 | /* |
| 835 | * Checkup routine |
| 836 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 837 | int mbedtls_ctr_drbg_self_test( int verbose ) |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 838 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 839 | mbedtls_ctr_drbg_context ctx; |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 840 | unsigned char buf[ sizeof( result_pr ) ]; |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 841 | |
Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 842 | mbedtls_ctr_drbg_init( &ctx ); |
| 843 | |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 844 | /* |
| 845 | * Based on a NIST CTR_DRBG test vector (PR = True) |
| 846 | */ |
| 847 | if( verbose != 0 ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 848 | mbedtls_printf( " CTR_DRBG (PR = TRUE) : " ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 849 | |
| 850 | test_offset = 0; |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 851 | mbedtls_ctr_drbg_set_entropy_len( &ctx, MBEDTLS_CTR_DRBG_KEYSIZE ); |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 852 | mbedtls_ctr_drbg_set_nonce_len( &ctx, MBEDTLS_CTR_DRBG_KEYSIZE / 2 ); |
Gilles Peskine | 50ed86b | 2019-10-04 12:15:55 +0200 | [diff] [blame] | 853 | CHK( mbedtls_ctr_drbg_seed( &ctx, |
| 854 | ctr_drbg_self_test_entropy, |
| 855 | (void *) entropy_source_pr, |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 856 | pers_pr, MBEDTLS_CTR_DRBG_KEYSIZE ) ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 857 | mbedtls_ctr_drbg_set_prediction_resistance( &ctx, MBEDTLS_CTR_DRBG_PR_ON ); |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 858 | CHK( mbedtls_ctr_drbg_random( &ctx, buf, SELF_TEST_OUPUT_DISCARD_LENGTH ) ); |
| 859 | CHK( mbedtls_ctr_drbg_random( &ctx, buf, sizeof( result_pr ) ) ); |
| 860 | CHK( memcmp( buf, result_pr, sizeof( result_pr ) ) ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 861 | |
Manuel Pégourié-Gonnard | 0a4fb09 | 2015-05-07 12:50:31 +0100 | [diff] [blame] | 862 | mbedtls_ctr_drbg_free( &ctx ); |
| 863 | |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 864 | if( verbose != 0 ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 865 | mbedtls_printf( "passed\n" ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 866 | |
| 867 | /* |
| 868 | * Based on a NIST CTR_DRBG test vector (PR = FALSE) |
| 869 | */ |
| 870 | if( verbose != 0 ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 871 | mbedtls_printf( " CTR_DRBG (PR = FALSE): " ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 872 | |
Manuel Pégourié-Gonnard | 0a4fb09 | 2015-05-07 12:50:31 +0100 | [diff] [blame] | 873 | mbedtls_ctr_drbg_init( &ctx ); |
| 874 | |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 875 | test_offset = 0; |
ENT\stroej1 | df30700 | 2020-12-26 12:41:04 -0600 | [diff] [blame] | 876 | mbedtls_ctr_drbg_set_entropy_len( &ctx, MBEDTLS_CTR_DRBG_KEYSIZE); |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 877 | mbedtls_ctr_drbg_set_nonce_len( &ctx, MBEDTLS_CTR_DRBG_KEYSIZE / 2 ); |
Gilles Peskine | 50ed86b | 2019-10-04 12:15:55 +0200 | [diff] [blame] | 878 | CHK( mbedtls_ctr_drbg_seed( &ctx, |
| 879 | ctr_drbg_self_test_entropy, |
| 880 | (void *) entropy_source_nopr, |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 881 | pers_nopr, MBEDTLS_CTR_DRBG_KEYSIZE ) ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 882 | CHK( mbedtls_ctr_drbg_reseed( &ctx, NULL, 0 ) ); |
stroebeljc | d4de1b5 | 2021-01-04 18:14:32 -0600 | [diff] [blame] | 883 | CHK( mbedtls_ctr_drbg_random( &ctx, buf, SELF_TEST_OUPUT_DISCARD_LENGTH ) ); |
| 884 | CHK( mbedtls_ctr_drbg_random( &ctx, buf, sizeof( result_nopr ) ) ); |
| 885 | CHK( memcmp( buf, result_nopr, sizeof( result_nopr ) ) ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 886 | |
Manuel Pégourié-Gonnard | 0a4fb09 | 2015-05-07 12:50:31 +0100 | [diff] [blame] | 887 | mbedtls_ctr_drbg_free( &ctx ); |
| 888 | |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 889 | if( verbose != 0 ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 890 | mbedtls_printf( "passed\n" ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 891 | |
| 892 | if( verbose != 0 ) |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 893 | mbedtls_printf( "\n" ); |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 894 | |
| 895 | return( 0 ); |
| 896 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 897 | #endif /* MBEDTLS_SELF_TEST */ |
Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 898 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 899 | #endif /* MBEDTLS_CTR_DRBG_C */ |