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