Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Benchmark demonstration program |
| 3 | * |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 4 | * Copyright The Mbed TLS Contributors |
Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: Apache-2.0 |
| 6 | * |
| 7 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 8 | * not use this file except in compliance with the License. |
| 9 | * You may obtain a copy of the License at |
| 10 | * |
| 11 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | * Unless required by applicable law or agreed to in writing, software |
| 14 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 15 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | * See the License for the specific language governing permissions and |
| 17 | * limitations under the License. |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 20 | #if !defined(MBEDTLS_CONFIG_FILE) |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 21 | #include "mbedtls/config.h" |
Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 22 | #else |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 23 | #include MBEDTLS_CONFIG_FILE |
Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 24 | #endif |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 25 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 26 | #include "mbedtls/platform.h" |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 27 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 28 | #if !defined(MBEDTLS_TIMING_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 29 | int main(void) |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 30 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 31 | mbedtls_printf("MBEDTLS_TIMING_C not defined.\n"); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 32 | mbedtls_exit(0); |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 33 | } |
| 34 | #else |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 35 | |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 36 | #include <string.h> |
Manuel Pégourié-Gonnard | 7551cb9 | 2015-05-26 16:04:06 +0200 | [diff] [blame] | 37 | #include <stdlib.h> |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 38 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 39 | #include "mbedtls/timing.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 40 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 41 | #include "mbedtls/md4.h" |
| 42 | #include "mbedtls/md5.h" |
| 43 | #include "mbedtls/ripemd160.h" |
| 44 | #include "mbedtls/sha1.h" |
| 45 | #include "mbedtls/sha256.h" |
| 46 | #include "mbedtls/sha512.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 47 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 48 | #include "mbedtls/arc4.h" |
| 49 | #include "mbedtls/des.h" |
| 50 | #include "mbedtls/aes.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 51 | #include "mbedtls/aria.h" |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 52 | #include "mbedtls/blowfish.h" |
| 53 | #include "mbedtls/camellia.h" |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 54 | #include "mbedtls/chacha20.h" |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 55 | #include "mbedtls/gcm.h" |
| 56 | #include "mbedtls/ccm.h" |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 57 | #include "mbedtls/chachapoly.h" |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 58 | #include "mbedtls/cmac.h" |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 59 | #include "mbedtls/poly1305.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 60 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 61 | #include "mbedtls/havege.h" |
| 62 | #include "mbedtls/ctr_drbg.h" |
| 63 | #include "mbedtls/hmac_drbg.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 64 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 65 | #include "mbedtls/rsa.h" |
| 66 | #include "mbedtls/dhm.h" |
| 67 | #include "mbedtls/ecdsa.h" |
| 68 | #include "mbedtls/ecdh.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 69 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 70 | #include "mbedtls/error.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 71 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 72 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 73 | #include "mbedtls/memory_buffer_alloc.h" |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 74 | #endif |
| 75 | |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 76 | /* |
| 77 | * For heap usage estimates, we need an estimate of the overhead per allocated |
| 78 | * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block, |
| 79 | * so use that as our baseline. |
| 80 | */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 81 | #define MEM_BLOCK_OVERHEAD (2 * sizeof(size_t)) |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 82 | |
| 83 | /* |
Manuel Pégourié-Gonnard | b2a18a2 | 2015-05-27 16:29:56 +0200 | [diff] [blame] | 84 | * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined. |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 85 | */ |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 86 | #define HEAP_SIZE (1u << 16) /* 64k */ |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 87 | |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 88 | #define BUFSIZE 1024 |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 89 | #define HEADER_FORMAT " %-24s : " |
Gergely Budai | a5d336b | 2014-01-27 23:27:06 +0100 | [diff] [blame] | 90 | #define TITLE_LEN 25 |
Manuel Pégourié-Gonnard | 6c5abfa | 2015-02-13 14:12:07 +0000 | [diff] [blame] | 91 | |
Yanray Wang | c96db3b | 2023-09-12 09:45:37 +0800 | [diff] [blame^] | 92 | #define OPTIONS \ |
| 93 | "md4, md5, ripemd160, sha1, sha256, sha512,\n" \ |
| 94 | "arc4, des3, des, camellia, blowfish, chacha20,\n" \ |
| 95 | "aes_cbc, aes_cfb128, aes_cfb8, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \ |
| 96 | "aes_cmac, des3_cmac, poly1305\n" \ |
| 97 | "havege, ctr_drbg, hmac_drbg\n" \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 98 | "rsa, dhm, ecdsa, ecdh.\n" |
| 99 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 100 | #if defined(MBEDTLS_ERROR_C) |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 101 | #define PRINT_ERROR \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 102 | mbedtls_strerror(ret, (char *) tmp, sizeof(tmp)); \ |
| 103 | mbedtls_printf("FAILED: %s\n", tmp); |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 104 | #else |
| 105 | #define PRINT_ERROR \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 106 | mbedtls_printf("FAILED: -0x%04x\n", (unsigned int) -ret); |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 107 | #endif |
| 108 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 109 | #define TIME_AND_TSC(TITLE, CODE) \ |
| 110 | do { \ |
| 111 | unsigned long ii, jj, tsc; \ |
| 112 | int ret = 0; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 113 | \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 114 | mbedtls_printf(HEADER_FORMAT, TITLE); \ |
| 115 | fflush(stdout); \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 116 | \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 117 | mbedtls_set_alarm(1); \ |
| 118 | for (ii = 1; ret == 0 && !mbedtls_timing_alarmed; ii++) \ |
| 119 | { \ |
| 120 | ret = CODE; \ |
| 121 | } \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 122 | \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 123 | tsc = mbedtls_timing_hardclock(); \ |
| 124 | for (jj = 0; ret == 0 && jj < 1024; jj++) \ |
| 125 | { \ |
| 126 | ret = CODE; \ |
| 127 | } \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 128 | \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 129 | if (ret != 0) \ |
| 130 | { \ |
| 131 | PRINT_ERROR; \ |
| 132 | } \ |
| 133 | else \ |
| 134 | { \ |
| 135 | mbedtls_printf("%9lu KiB/s, %9lu cycles/byte\n", \ |
| 136 | ii * BUFSIZE / 1024, \ |
| 137 | (mbedtls_timing_hardclock() - tsc) \ |
| 138 | / (jj * BUFSIZE)); \ |
| 139 | } \ |
| 140 | } while (0) |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 141 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 142 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG) |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 143 | |
Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 144 | /* How much space to reserve for the title when printing heap usage results. |
| 145 | * Updated manually as the output of the following command: |
| 146 | * |
| 147 | * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c | |
Manuel Pégourié-Gonnard | 6408495 | 2022-01-05 10:34:17 +0100 | [diff] [blame] | 148 | * awk '{print length+3}' | sort -rn | head -n1 |
Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 149 | * |
Manuel Pégourié-Gonnard | 6408495 | 2022-01-05 10:34:17 +0100 | [diff] [blame] | 150 | * This computes the maximum length of a title +3, because we appends "/s" and |
| 151 | * want at least one space. (If the value is too small, the only consequence |
Shaun Case | 0e7791f | 2021-12-20 21:14:10 -0800 | [diff] [blame] | 152 | * is poor alignment.) */ |
Manuel Pégourié-Gonnard | 6408495 | 2022-01-05 10:34:17 +0100 | [diff] [blame] | 153 | #define TITLE_SPACE 17 |
Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 154 | |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 155 | #define MEMORY_MEASURE_INIT \ |
| 156 | size_t max_used, max_blocks, max_bytes; \ |
| 157 | size_t prv_used, prv_blocks; \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 158 | mbedtls_memory_buffer_alloc_cur_get(&prv_used, &prv_blocks); \ |
| 159 | mbedtls_memory_buffer_alloc_max_reset(); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 160 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 161 | #define MEMORY_MEASURE_PRINT(title_len) \ |
| 162 | mbedtls_memory_buffer_alloc_max_get(&max_used, &max_blocks); \ |
Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 163 | ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 164 | while (ii--) mbedtls_printf(" "); \ |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 165 | max_used -= prv_used; \ |
| 166 | max_blocks -= prv_blocks; \ |
| 167 | max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 168 | mbedtls_printf("%6u heap bytes", (unsigned) max_bytes); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 169 | |
| 170 | #else |
Manuel Pégourié-Gonnard | e579dab | 2015-01-29 16:28:44 +0000 | [diff] [blame] | 171 | #define MEMORY_MEASURE_INIT |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 172 | #define MEMORY_MEASURE_PRINT(title_len) |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 173 | #endif |
| 174 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 175 | #define TIME_PUBLIC(TITLE, TYPE, CODE) \ |
| 176 | do { \ |
| 177 | unsigned long ii; \ |
| 178 | int ret; \ |
| 179 | MEMORY_MEASURE_INIT; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 180 | \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 181 | mbedtls_printf(HEADER_FORMAT, TITLE); \ |
| 182 | fflush(stdout); \ |
| 183 | mbedtls_set_alarm(3); \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 184 | \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 185 | ret = 0; \ |
| 186 | for (ii = 1; !mbedtls_timing_alarmed && !ret; ii++) \ |
| 187 | { \ |
| 188 | CODE; \ |
| 189 | } \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 190 | \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 191 | if (ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED) \ |
| 192 | { \ |
| 193 | mbedtls_printf("Feature Not Supported. Skipping.\n"); \ |
| 194 | ret = 0; \ |
| 195 | } \ |
| 196 | else if (ret != 0) \ |
| 197 | { \ |
| 198 | PRINT_ERROR; \ |
| 199 | } \ |
| 200 | else \ |
| 201 | { \ |
| 202 | mbedtls_printf("%6lu " TYPE "/s", ii / 3); \ |
| 203 | MEMORY_MEASURE_PRINT(sizeof(TYPE) + 1); \ |
| 204 | mbedtls_printf("\n"); \ |
| 205 | } \ |
| 206 | } while (0) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 207 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 208 | static int myrand(void *rng_state, unsigned char *output, size_t len) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 209 | { |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 210 | size_t use_len; |
| 211 | int rnd; |
| 212 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 213 | if (rng_state != NULL) { |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 214 | rng_state = NULL; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 215 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 216 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 217 | while (len > 0) { |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 218 | use_len = len; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 219 | if (use_len > sizeof(int)) { |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 220 | use_len = sizeof(int); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 221 | } |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 222 | |
| 223 | rnd = rand(); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 224 | memcpy(output, &rnd, use_len); |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 225 | output += use_len; |
| 226 | len -= use_len; |
| 227 | } |
| 228 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 229 | return 0; |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 230 | } |
| 231 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 232 | #define CHECK_AND_CONTINUE(R) \ |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 233 | { \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 234 | int CHECK_AND_CONTINUE_ret = (R); \ |
| 235 | if (CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED) { \ |
| 236 | mbedtls_printf("Feature not supported. Skipping.\n"); \ |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 237 | continue; \ |
| 238 | } \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 239 | else if (CHECK_AND_CONTINUE_ret != 0) { \ |
| 240 | mbedtls_exit(1); \ |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 241 | } \ |
| 242 | } |
Christoph M. Wintersteiger | 3dca1a4 | 2018-12-14 11:54:59 +0000 | [diff] [blame] | 243 | |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 244 | /* |
| 245 | * Clear some memory that was used to prepare the context |
| 246 | */ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 247 | #if defined(MBEDTLS_ECP_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 248 | void ecp_clear_precomputed(mbedtls_ecp_group *grp) |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 249 | { |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 250 | if (grp->T != NULL) { |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 251 | size_t i; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 252 | for (i = 0; i < grp->T_size; i++) { |
| 253 | mbedtls_ecp_point_free(&grp->T[i]); |
| 254 | } |
| 255 | mbedtls_free(grp->T); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 256 | } |
| 257 | grp->T = NULL; |
| 258 | grp->T_size = 0; |
| 259 | } |
| 260 | #else |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 261 | #define ecp_clear_precomputed(g) |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 262 | #endif |
| 263 | |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 264 | #if defined(MBEDTLS_ECP_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 265 | static int set_ecp_curve(const char *string, mbedtls_ecp_curve_info *curve) |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 266 | { |
| 267 | const mbedtls_ecp_curve_info *found = |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 268 | mbedtls_ecp_curve_info_from_name(string); |
| 269 | if (found != NULL) { |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 270 | *curve = *found; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 271 | return 1; |
| 272 | } else { |
| 273 | return 0; |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 274 | } |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 275 | } |
| 276 | #endif |
| 277 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 278 | unsigned char buf[BUFSIZE]; |
| 279 | |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 280 | typedef struct { |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 281 | char md4, md5, ripemd160, sha1, sha256, sha512, |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 282 | arc4, des3, des, |
Yanray Wang | c96db3b | 2023-09-12 09:45:37 +0800 | [diff] [blame^] | 283 | aes_cbc, aes_cfb128, aes_cfb8, aes_gcm, aes_ccm, aes_xts, chachapoly, |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 284 | aes_cmac, des3_cmac, |
Manuel Pégourié-Gonnard | 39b1904 | 2018-06-07 12:01:33 +0200 | [diff] [blame] | 285 | aria, camellia, blowfish, chacha20, |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 286 | poly1305, |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 287 | havege, ctr_drbg, hmac_drbg, |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 288 | rsa, dhm, ecdsa, ecdh; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 289 | } todo_list; |
| 290 | |
Simon Butcher | 63cb97e | 2018-12-06 17:43:31 +0000 | [diff] [blame] | 291 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 292 | int main(int argc, char *argv[]) |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 293 | { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 294 | int i; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 295 | unsigned char tmp[200]; |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 296 | char title[TITLE_LEN]; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 297 | todo_list todo; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 298 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
Manuel Pégourié-Gonnard | b2a18a2 | 2015-05-27 16:29:56 +0200 | [diff] [blame] | 299 | unsigned char alloc_buf[HEAP_SIZE] = { 0 }; |
Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 300 | #endif |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 301 | #if defined(MBEDTLS_ECP_C) |
| 302 | mbedtls_ecp_curve_info single_curve[2] = { |
| 303 | { MBEDTLS_ECP_DP_NONE, 0, 0, NULL }, |
| 304 | { MBEDTLS_ECP_DP_NONE, 0, 0, NULL }, |
| 305 | }; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 306 | const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list(); |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 307 | #endif |
| 308 | |
| 309 | #if defined(MBEDTLS_ECP_C) |
| 310 | (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */ |
| 311 | #endif |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 312 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 313 | if (argc <= 1) { |
| 314 | memset(&todo, 1, sizeof(todo)); |
| 315 | } else { |
| 316 | memset(&todo, 0, sizeof(todo)); |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 317 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 318 | for (i = 1; i < argc; i++) { |
| 319 | if (strcmp(argv[i], "md4") == 0) { |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 320 | todo.md4 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 321 | } else if (strcmp(argv[i], "md5") == 0) { |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 322 | todo.md5 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 323 | } else if (strcmp(argv[i], "ripemd160") == 0) { |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 324 | todo.ripemd160 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 325 | } else if (strcmp(argv[i], "sha1") == 0) { |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 326 | todo.sha1 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 327 | } else if (strcmp(argv[i], "sha256") == 0) { |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 328 | todo.sha256 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 329 | } else if (strcmp(argv[i], "sha512") == 0) { |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 330 | todo.sha512 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 331 | } else if (strcmp(argv[i], "arc4") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 332 | todo.arc4 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 333 | } else if (strcmp(argv[i], "des3") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 334 | todo.des3 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 335 | } else if (strcmp(argv[i], "des") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 336 | todo.des = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 337 | } else if (strcmp(argv[i], "aes_cbc") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 338 | todo.aes_cbc = 1; |
Yanray Wang | b382c2b | 2023-09-12 09:03:50 +0800 | [diff] [blame] | 339 | } else if (strcmp(argv[i], "aes_cfb128") == 0) { |
| 340 | todo.aes_cfb128 = 1; |
Yanray Wang | c96db3b | 2023-09-12 09:45:37 +0800 | [diff] [blame^] | 341 | } else if (strcmp(argv[i], "aes_cfb8") == 0) { |
| 342 | todo.aes_cfb8 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 343 | } else if (strcmp(argv[i], "aes_xts") == 0) { |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 344 | todo.aes_xts = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 345 | } else if (strcmp(argv[i], "aes_gcm") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 346 | todo.aes_gcm = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 347 | } else if (strcmp(argv[i], "aes_ccm") == 0) { |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 348 | todo.aes_ccm = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 349 | } else if (strcmp(argv[i], "chachapoly") == 0) { |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 350 | todo.chachapoly = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 351 | } else if (strcmp(argv[i], "aes_cmac") == 0) { |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 352 | todo.aes_cmac = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 353 | } else if (strcmp(argv[i], "des3_cmac") == 0) { |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 354 | todo.des3_cmac = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 355 | } else if (strcmp(argv[i], "aria") == 0) { |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 356 | todo.aria = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 357 | } else if (strcmp(argv[i], "camellia") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 358 | todo.camellia = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 359 | } else if (strcmp(argv[i], "blowfish") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 360 | todo.blowfish = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 361 | } else if (strcmp(argv[i], "chacha20") == 0) { |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 362 | todo.chacha20 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 363 | } else if (strcmp(argv[i], "poly1305") == 0) { |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 364 | todo.poly1305 = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 365 | } else if (strcmp(argv[i], "havege") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 366 | todo.havege = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 367 | } else if (strcmp(argv[i], "ctr_drbg") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 368 | todo.ctr_drbg = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 369 | } else if (strcmp(argv[i], "hmac_drbg") == 0) { |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 370 | todo.hmac_drbg = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 371 | } else if (strcmp(argv[i], "rsa") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 372 | todo.rsa = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 373 | } else if (strcmp(argv[i], "dhm") == 0) { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 374 | todo.dhm = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 375 | } else if (strcmp(argv[i], "ecdsa") == 0) { |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 376 | todo.ecdsa = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 377 | } else if (strcmp(argv[i], "ecdh") == 0) { |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 378 | todo.ecdh = 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 379 | } |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 380 | #if defined(MBEDTLS_ECP_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 381 | else if (set_ecp_curve(argv[i], single_curve)) { |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 382 | curve_list = single_curve; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 383 | } |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 384 | #endif |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 385 | else { |
| 386 | mbedtls_printf("Unrecognized option: %s\n", argv[i]); |
| 387 | mbedtls_printf("Available options: " OPTIONS); |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 388 | } |
| 389 | } |
| 390 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 391 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 392 | mbedtls_printf("\n"); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 393 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 394 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 395 | mbedtls_memory_buffer_alloc_init(alloc_buf, sizeof(alloc_buf)); |
Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 396 | #endif |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 397 | memset(buf, 0xAA, sizeof(buf)); |
| 398 | memset(tmp, 0xBB, sizeof(tmp)); |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 399 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 400 | #if defined(MBEDTLS_MD4_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 401 | if (todo.md4) { |
| 402 | TIME_AND_TSC("MD4", mbedtls_md4_ret(buf, BUFSIZE, tmp)); |
| 403 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 404 | #endif |
| 405 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 406 | #if defined(MBEDTLS_MD5_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 407 | if (todo.md5) { |
| 408 | TIME_AND_TSC("MD5", mbedtls_md5_ret(buf, BUFSIZE, tmp)); |
| 409 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 410 | #endif |
| 411 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 412 | #if defined(MBEDTLS_RIPEMD160_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 413 | if (todo.ripemd160) { |
| 414 | TIME_AND_TSC("RIPEMD160", mbedtls_ripemd160_ret(buf, BUFSIZE, tmp)); |
| 415 | } |
Manuel Pégourié-Gonnard | 01b0b38 | 2014-01-17 14:29:46 +0100 | [diff] [blame] | 416 | #endif |
| 417 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 418 | #if defined(MBEDTLS_SHA1_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 419 | if (todo.sha1) { |
| 420 | TIME_AND_TSC("SHA-1", mbedtls_sha1_ret(buf, BUFSIZE, tmp)); |
| 421 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 422 | #endif |
| 423 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 424 | #if defined(MBEDTLS_SHA256_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 425 | if (todo.sha256) { |
| 426 | TIME_AND_TSC("SHA-256", mbedtls_sha256_ret(buf, BUFSIZE, tmp, 0)); |
| 427 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 428 | #endif |
| 429 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 430 | #if defined(MBEDTLS_SHA512_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 431 | if (todo.sha512) { |
| 432 | TIME_AND_TSC("SHA-512", mbedtls_sha512_ret(buf, BUFSIZE, tmp, 0)); |
| 433 | } |
Paul Bakker | 3a3c3c2 | 2009-02-09 22:33:30 +0000 | [diff] [blame] | 434 | #endif |
| 435 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 436 | #if defined(MBEDTLS_ARC4_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 437 | if (todo.arc4) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 438 | mbedtls_arc4_context arc4; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 439 | mbedtls_arc4_init(&arc4); |
| 440 | mbedtls_arc4_setup(&arc4, tmp, 32); |
| 441 | TIME_AND_TSC("ARC4", mbedtls_arc4_crypt(&arc4, BUFSIZE, buf, buf)); |
| 442 | mbedtls_arc4_free(&arc4); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 443 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 444 | #endif |
| 445 | |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 446 | #if defined(MBEDTLS_DES_C) |
| 447 | #if defined(MBEDTLS_CIPHER_MODE_CBC) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 448 | if (todo.des3) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 449 | mbedtls_des3_context des3; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 450 | mbedtls_des3_init(&des3); |
| 451 | if (mbedtls_des3_set3key_enc(&des3, tmp) != 0) { |
| 452 | mbedtls_exit(1); |
| 453 | } |
| 454 | TIME_AND_TSC("3DES", |
| 455 | mbedtls_des3_crypt_cbc(&des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf)); |
| 456 | mbedtls_des3_free(&des3); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 457 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 458 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 459 | if (todo.des) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 460 | mbedtls_des_context des; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 461 | mbedtls_des_init(&des); |
| 462 | if (mbedtls_des_setkey_enc(&des, tmp) != 0) { |
| 463 | mbedtls_exit(1); |
| 464 | } |
| 465 | TIME_AND_TSC("DES", |
| 466 | mbedtls_des_crypt_cbc(&des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf)); |
| 467 | mbedtls_des_free(&des); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 468 | } |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 469 | |
| 470 | #endif /* MBEDTLS_CIPHER_MODE_CBC */ |
| 471 | #if defined(MBEDTLS_CMAC_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 472 | if (todo.des3_cmac) { |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 473 | unsigned char output[8]; |
| 474 | const mbedtls_cipher_info_t *cipher_info; |
| 475 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 476 | memset(buf, 0, sizeof(buf)); |
| 477 | memset(tmp, 0, sizeof(tmp)); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 478 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 479 | cipher_info = mbedtls_cipher_info_from_type(MBEDTLS_CIPHER_DES_EDE3_ECB); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 480 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 481 | TIME_AND_TSC("3DES-CMAC", |
| 482 | mbedtls_cipher_cmac(cipher_info, tmp, 192, buf, |
| 483 | BUFSIZE, output)); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 484 | } |
| 485 | #endif /* MBEDTLS_CMAC_C */ |
| 486 | #endif /* MBEDTLS_DES_C */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 487 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 488 | #if defined(MBEDTLS_AES_C) |
| 489 | #if defined(MBEDTLS_CIPHER_MODE_CBC) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 490 | if (todo.aes_cbc) { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 491 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 492 | mbedtls_aes_context aes; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 493 | mbedtls_aes_init(&aes); |
| 494 | for (keysize = 128; keysize <= 256; keysize += 64) { |
| 495 | mbedtls_snprintf(title, sizeof(title), "AES-CBC-%d", keysize); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 496 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 497 | memset(buf, 0, sizeof(buf)); |
| 498 | memset(tmp, 0, sizeof(tmp)); |
| 499 | CHECK_AND_CONTINUE(mbedtls_aes_setkey_enc(&aes, tmp, keysize)); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 500 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 501 | TIME_AND_TSC(title, |
| 502 | mbedtls_aes_crypt_cbc(&aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf)); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 503 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 504 | mbedtls_aes_free(&aes); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 505 | } |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 506 | #endif |
Yanray Wang | b382c2b | 2023-09-12 09:03:50 +0800 | [diff] [blame] | 507 | #if defined(MBEDTLS_CIPHER_MODE_CFB) |
| 508 | if (todo.aes_cfb128) { |
| 509 | int keysize; |
| 510 | size_t iv_off = 0; |
| 511 | mbedtls_aes_context aes; |
| 512 | mbedtls_aes_init(&aes); |
| 513 | for (keysize = 128; keysize <= 256; keysize += 64) { |
| 514 | mbedtls_snprintf(title, sizeof(title), "AES-CFB128-%d", keysize); |
| 515 | |
| 516 | memset(buf, 0, sizeof(buf)); |
| 517 | memset(tmp, 0, sizeof(tmp)); |
| 518 | CHECK_AND_CONTINUE(mbedtls_aes_setkey_enc(&aes, tmp, keysize)); |
| 519 | |
| 520 | TIME_AND_TSC(title, |
| 521 | mbedtls_aes_crypt_cfb128(&aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, |
| 522 | &iv_off, tmp, buf, buf)); |
| 523 | } |
| 524 | mbedtls_aes_free(&aes); |
| 525 | } |
Yanray Wang | c96db3b | 2023-09-12 09:45:37 +0800 | [diff] [blame^] | 526 | if (todo.aes_cfb8) { |
| 527 | int keysize; |
| 528 | mbedtls_aes_context aes; |
| 529 | mbedtls_aes_init(&aes); |
| 530 | for (keysize = 128; keysize <= 256; keysize += 64) { |
| 531 | mbedtls_snprintf(title, sizeof(title), "AES-CFB8-%d", keysize); |
| 532 | |
| 533 | memset(buf, 0, sizeof(buf)); |
| 534 | memset(tmp, 0, sizeof(tmp)); |
| 535 | CHECK_AND_CONTINUE(mbedtls_aes_setkey_enc(&aes, tmp, keysize)); |
| 536 | |
| 537 | TIME_AND_TSC(title, |
| 538 | mbedtls_aes_crypt_cfb8(&aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf)); |
| 539 | } |
| 540 | mbedtls_aes_free(&aes); |
| 541 | } |
Yanray Wang | b382c2b | 2023-09-12 09:03:50 +0800 | [diff] [blame] | 542 | #endif |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 543 | #if defined(MBEDTLS_CIPHER_MODE_XTS) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 544 | if (todo.aes_xts) { |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 545 | int keysize; |
Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 546 | mbedtls_aes_xts_context ctx; |
| 547 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 548 | mbedtls_aes_xts_init(&ctx); |
| 549 | for (keysize = 128; keysize <= 256; keysize += 128) { |
| 550 | mbedtls_snprintf(title, sizeof(title), "AES-XTS-%d", keysize); |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 551 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 552 | memset(buf, 0, sizeof(buf)); |
| 553 | memset(tmp, 0, sizeof(tmp)); |
| 554 | CHECK_AND_CONTINUE(mbedtls_aes_xts_setkey_enc(&ctx, tmp, keysize * 2)); |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 555 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 556 | TIME_AND_TSC(title, |
| 557 | mbedtls_aes_crypt_xts(&ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE, |
| 558 | tmp, buf, buf)); |
Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 559 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 560 | mbedtls_aes_xts_free(&ctx); |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 561 | } |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 562 | } |
| 563 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 564 | #if defined(MBEDTLS_GCM_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 565 | if (todo.aes_gcm) { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 566 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 567 | mbedtls_gcm_context gcm; |
Manuel Pégourié-Gonnard | c34e8dd | 2015-04-28 21:42:17 +0200 | [diff] [blame] | 568 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 569 | mbedtls_gcm_init(&gcm); |
| 570 | for (keysize = 128; keysize <= 256; keysize += 64) { |
| 571 | mbedtls_snprintf(title, sizeof(title), "AES-GCM-%d", keysize); |
Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 572 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 573 | memset(buf, 0, sizeof(buf)); |
| 574 | memset(tmp, 0, sizeof(tmp)); |
| 575 | mbedtls_gcm_setkey(&gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize); |
Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 576 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 577 | TIME_AND_TSC(title, |
| 578 | mbedtls_gcm_crypt_and_tag(&gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp, |
| 579 | 12, NULL, 0, buf, buf, 16, tmp)); |
Paul Bakker | f70fe81 | 2013-12-16 16:43:10 +0100 | [diff] [blame] | 580 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 581 | mbedtls_gcm_free(&gcm); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 582 | } |
Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 583 | } |
| 584 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 585 | #if defined(MBEDTLS_CCM_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 586 | if (todo.aes_ccm) { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 587 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 588 | mbedtls_ccm_context ccm; |
Manuel Pégourié-Gonnard | 6963ff0 | 2015-04-28 18:02:54 +0200 | [diff] [blame] | 589 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 590 | mbedtls_ccm_init(&ccm); |
| 591 | for (keysize = 128; keysize <= 256; keysize += 64) { |
| 592 | mbedtls_snprintf(title, sizeof(title), "AES-CCM-%d", keysize); |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 593 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 594 | memset(buf, 0, sizeof(buf)); |
| 595 | memset(tmp, 0, sizeof(tmp)); |
| 596 | mbedtls_ccm_setkey(&ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize); |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 597 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 598 | TIME_AND_TSC(title, |
| 599 | mbedtls_ccm_encrypt_and_tag(&ccm, BUFSIZE, tmp, |
| 600 | 12, NULL, 0, buf, buf, tmp, 16)); |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 601 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 602 | mbedtls_ccm_free(&ccm); |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 603 | } |
| 604 | } |
| 605 | #endif |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 606 | #if defined(MBEDTLS_CHACHAPOLY_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 607 | if (todo.chachapoly) { |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 608 | mbedtls_chachapoly_context chachapoly; |
| 609 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 610 | mbedtls_chachapoly_init(&chachapoly); |
| 611 | memset(buf, 0, sizeof(buf)); |
| 612 | memset(tmp, 0, sizeof(tmp)); |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 613 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 614 | mbedtls_snprintf(title, sizeof(title), "ChaCha20-Poly1305"); |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 615 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 616 | mbedtls_chachapoly_setkey(&chachapoly, tmp); |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 617 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 618 | TIME_AND_TSC(title, |
| 619 | mbedtls_chachapoly_encrypt_and_tag(&chachapoly, |
| 620 | BUFSIZE, tmp, NULL, 0, buf, buf, tmp)); |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 621 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 622 | mbedtls_chachapoly_free(&chachapoly); |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 623 | } |
| 624 | #endif |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 625 | #if defined(MBEDTLS_CMAC_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 626 | if (todo.aes_cmac) { |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 627 | unsigned char output[16]; |
| 628 | const mbedtls_cipher_info_t *cipher_info; |
| 629 | mbedtls_cipher_type_t cipher_type; |
| 630 | int keysize; |
| 631 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 632 | for (keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB; |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 633 | keysize <= 256; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 634 | keysize += 64, cipher_type++) { |
| 635 | mbedtls_snprintf(title, sizeof(title), "AES-CMAC-%d", keysize); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 636 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 637 | memset(buf, 0, sizeof(buf)); |
| 638 | memset(tmp, 0, sizeof(tmp)); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 639 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 640 | cipher_info = mbedtls_cipher_info_from_type(cipher_type); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 641 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 642 | TIME_AND_TSC(title, |
| 643 | mbedtls_cipher_cmac(cipher_info, tmp, keysize, |
| 644 | buf, BUFSIZE, output)); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 645 | } |
| 646 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 647 | memset(buf, 0, sizeof(buf)); |
| 648 | memset(tmp, 0, sizeof(tmp)); |
| 649 | TIME_AND_TSC("AES-CMAC-PRF-128", |
| 650 | mbedtls_aes_cmac_prf_128(tmp, 16, buf, BUFSIZE, |
| 651 | output)); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 652 | } |
| 653 | #endif /* MBEDTLS_CMAC_C */ |
| 654 | #endif /* MBEDTLS_AES_C */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 655 | |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 656 | #if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 657 | if (todo.aria) { |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 658 | int keysize; |
| 659 | mbedtls_aria_context aria; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 660 | mbedtls_aria_init(&aria); |
| 661 | for (keysize = 128; keysize <= 256; keysize += 64) { |
| 662 | mbedtls_snprintf(title, sizeof(title), "ARIA-CBC-%d", keysize); |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 663 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 664 | memset(buf, 0, sizeof(buf)); |
| 665 | memset(tmp, 0, sizeof(tmp)); |
| 666 | mbedtls_aria_setkey_enc(&aria, tmp, keysize); |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 667 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 668 | TIME_AND_TSC(title, |
| 669 | mbedtls_aria_crypt_cbc(&aria, MBEDTLS_ARIA_ENCRYPT, |
| 670 | BUFSIZE, tmp, buf, buf)); |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 671 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 672 | mbedtls_aria_free(&aria); |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 673 | } |
| 674 | #endif |
| 675 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 676 | #if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 677 | if (todo.camellia) { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 678 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 679 | mbedtls_camellia_context camellia; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 680 | mbedtls_camellia_init(&camellia); |
| 681 | for (keysize = 128; keysize <= 256; keysize += 64) { |
| 682 | mbedtls_snprintf(title, sizeof(title), "CAMELLIA-CBC-%d", keysize); |
Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 683 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 684 | memset(buf, 0, sizeof(buf)); |
| 685 | memset(tmp, 0, sizeof(tmp)); |
| 686 | mbedtls_camellia_setkey_enc(&camellia, tmp, keysize); |
Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 687 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 688 | TIME_AND_TSC(title, |
| 689 | mbedtls_camellia_crypt_cbc(&camellia, MBEDTLS_CAMELLIA_ENCRYPT, |
| 690 | BUFSIZE, tmp, buf, buf)); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 691 | } |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 692 | mbedtls_camellia_free(&camellia); |
Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 693 | } |
| 694 | #endif |
| 695 | |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 696 | #if defined(MBEDTLS_CHACHA20_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 697 | if (todo.chacha20) { |
| 698 | TIME_AND_TSC("ChaCha20", mbedtls_chacha20_crypt(buf, buf, 0U, BUFSIZE, buf, buf)); |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 699 | } |
| 700 | #endif |
| 701 | |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 702 | #if defined(MBEDTLS_POLY1305_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 703 | if (todo.poly1305) { |
| 704 | TIME_AND_TSC("Poly1305", mbedtls_poly1305_mac(buf, buf, BUFSIZE, buf)); |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 705 | } |
| 706 | #endif |
| 707 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 708 | #if defined(MBEDTLS_BLOWFISH_C) && defined(MBEDTLS_CIPHER_MODE_CBC) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 709 | if (todo.blowfish) { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 710 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 711 | mbedtls_blowfish_context blowfish; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 712 | mbedtls_blowfish_init(&blowfish); |
Paul Bakker | 8cfd9d8 | 2014-06-18 11:16:11 +0200 | [diff] [blame] | 713 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 714 | for (keysize = 128; keysize <= 256; keysize += 64) { |
| 715 | mbedtls_snprintf(title, sizeof(title), "BLOWFISH-CBC-%d", keysize); |
Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 716 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 717 | memset(buf, 0, sizeof(buf)); |
| 718 | memset(tmp, 0, sizeof(tmp)); |
| 719 | mbedtls_blowfish_setkey(&blowfish, tmp, keysize); |
Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 720 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 721 | TIME_AND_TSC(title, |
| 722 | mbedtls_blowfish_crypt_cbc(&blowfish, MBEDTLS_BLOWFISH_ENCRYPT, BUFSIZE, |
| 723 | tmp, buf, buf)); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 724 | } |
Paul Bakker | 8cfd9d8 | 2014-06-18 11:16:11 +0200 | [diff] [blame] | 725 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 726 | mbedtls_blowfish_free(&blowfish); |
Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 727 | } |
| 728 | #endif |
| 729 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 730 | #if defined(MBEDTLS_HAVEGE_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 731 | if (todo.havege) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 732 | mbedtls_havege_state hs; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 733 | mbedtls_havege_init(&hs); |
| 734 | TIME_AND_TSC("HAVEGE", mbedtls_havege_random(&hs, buf, BUFSIZE)); |
| 735 | mbedtls_havege_free(&hs); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 736 | } |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 737 | #endif |
| 738 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 739 | #if defined(MBEDTLS_CTR_DRBG_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 740 | if (todo.ctr_drbg) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 741 | mbedtls_ctr_drbg_context ctr_drbg; |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 742 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 743 | mbedtls_ctr_drbg_init(&ctr_drbg); |
| 744 | if (mbedtls_ctr_drbg_seed(&ctr_drbg, myrand, NULL, NULL, 0) != 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 745 | mbedtls_exit(1); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 746 | } |
| 747 | TIME_AND_TSC("CTR_DRBG (NOPR)", |
| 748 | mbedtls_ctr_drbg_random(&ctr_drbg, buf, BUFSIZE)); |
| 749 | mbedtls_ctr_drbg_free(&ctr_drbg); |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 750 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 751 | mbedtls_ctr_drbg_init(&ctr_drbg); |
| 752 | if (mbedtls_ctr_drbg_seed(&ctr_drbg, myrand, NULL, NULL, 0) != 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 753 | mbedtls_exit(1); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 754 | } |
| 755 | mbedtls_ctr_drbg_set_prediction_resistance(&ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON); |
| 756 | TIME_AND_TSC("CTR_DRBG (PR)", |
| 757 | mbedtls_ctr_drbg_random(&ctr_drbg, buf, BUFSIZE)); |
| 758 | mbedtls_ctr_drbg_free(&ctr_drbg); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 759 | } |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 760 | #endif |
| 761 | |
Andrzej Kurek | b3b0ec9 | 2022-10-18 08:21:07 -0400 | [diff] [blame] | 762 | #if defined(MBEDTLS_HMAC_DRBG_C) && \ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 763 | (defined(MBEDTLS_SHA1_C) || defined(MBEDTLS_SHA256_C)) |
| 764 | if (todo.hmac_drbg) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 765 | mbedtls_hmac_drbg_context hmac_drbg; |
| 766 | const mbedtls_md_info_t *md_info; |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 767 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 768 | mbedtls_hmac_drbg_init(&hmac_drbg); |
Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 769 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 770 | #if defined(MBEDTLS_SHA1_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 771 | if ((md_info = mbedtls_md_info_from_type(MBEDTLS_MD_SHA1)) == NULL) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 772 | mbedtls_exit(1); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 773 | } |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 774 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 775 | if (mbedtls_hmac_drbg_seed(&hmac_drbg, md_info, myrand, NULL, NULL, 0) != 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 776 | mbedtls_exit(1); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 777 | } |
| 778 | TIME_AND_TSC("HMAC_DRBG SHA-1 (NOPR)", |
| 779 | mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 780 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 781 | if (mbedtls_hmac_drbg_seed(&hmac_drbg, md_info, myrand, NULL, NULL, 0) != 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 782 | mbedtls_exit(1); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 783 | } |
| 784 | mbedtls_hmac_drbg_set_prediction_resistance(&hmac_drbg, |
| 785 | MBEDTLS_HMAC_DRBG_PR_ON); |
| 786 | TIME_AND_TSC("HMAC_DRBG SHA-1 (PR)", |
| 787 | mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 788 | #endif |
| 789 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 790 | #if defined(MBEDTLS_SHA256_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 791 | if ((md_info = mbedtls_md_info_from_type(MBEDTLS_MD_SHA256)) == NULL) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 792 | mbedtls_exit(1); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 793 | } |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 794 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 795 | if (mbedtls_hmac_drbg_seed(&hmac_drbg, md_info, myrand, NULL, NULL, 0) != 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 796 | mbedtls_exit(1); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 797 | } |
| 798 | TIME_AND_TSC("HMAC_DRBG SHA-256 (NOPR)", |
| 799 | mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 800 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 801 | if (mbedtls_hmac_drbg_seed(&hmac_drbg, md_info, myrand, NULL, NULL, 0) != 0) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 802 | mbedtls_exit(1); |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 803 | } |
| 804 | mbedtls_hmac_drbg_set_prediction_resistance(&hmac_drbg, |
| 805 | MBEDTLS_HMAC_DRBG_PR_ON); |
| 806 | TIME_AND_TSC("HMAC_DRBG SHA-256 (PR)", |
| 807 | mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 808 | #endif |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 809 | mbedtls_hmac_drbg_free(&hmac_drbg); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 810 | } |
Andrzej Kurek | b3b0ec9 | 2022-10-18 08:21:07 -0400 | [diff] [blame] | 811 | #endif /* MBEDTLS_HMAC_DRBG_C && ( MBEDTLS_SHA1_C || MBEDTLS_SHA256_C ) */ |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 812 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 813 | #if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 814 | if (todo.rsa) { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 815 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 816 | mbedtls_rsa_context rsa; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 817 | for (keysize = 2048; keysize <= 4096; keysize *= 2) { |
| 818 | mbedtls_snprintf(title, sizeof(title), "RSA-%d", keysize); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 819 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 820 | mbedtls_rsa_init(&rsa, MBEDTLS_RSA_PKCS_V15, 0); |
| 821 | mbedtls_rsa_gen_key(&rsa, myrand, NULL, keysize, 65537); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 822 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 823 | TIME_PUBLIC(title, " public", |
| 824 | buf[0] = 0; |
| 825 | ret = mbedtls_rsa_public(&rsa, buf, buf)); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 826 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 827 | TIME_PUBLIC(title, "private", |
| 828 | buf[0] = 0; |
| 829 | ret = mbedtls_rsa_private(&rsa, myrand, NULL, buf, buf)); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 830 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 831 | mbedtls_rsa_free(&rsa); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 832 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 833 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 834 | #endif |
| 835 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 836 | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 837 | if (todo.dhm) { |
Manuel Pégourié-Gonnard | 4f3368e | 2015-07-19 15:01:28 +0200 | [diff] [blame] | 838 | int dhm_sizes[] = { 2048, 3072 }; |
Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 839 | static const unsigned char dhm_P_2048[] = |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 840 | MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN; |
Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 841 | static const unsigned char dhm_P_3072[] = |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 842 | MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN; |
Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 843 | static const unsigned char dhm_G_2048[] = |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 844 | MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN; |
Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 845 | static const unsigned char dhm_G_3072[] = |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 846 | MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN; |
| 847 | |
| 848 | const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 }; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 849 | const size_t dhm_P_size[] = { sizeof(dhm_P_2048), |
| 850 | sizeof(dhm_P_3072) }; |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 851 | |
| 852 | const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 }; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 853 | const size_t dhm_G_size[] = { sizeof(dhm_G_2048), |
| 854 | sizeof(dhm_G_3072) }; |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 855 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 856 | mbedtls_dhm_context dhm; |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 857 | size_t olen; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 858 | for (i = 0; (size_t) i < sizeof(dhm_sizes) / sizeof(dhm_sizes[0]); i++) { |
| 859 | mbedtls_dhm_init(&dhm); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 860 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 861 | if (mbedtls_mpi_read_binary(&dhm.P, dhm_P[i], |
| 862 | dhm_P_size[i]) != 0 || |
| 863 | mbedtls_mpi_read_binary(&dhm.G, dhm_G[i], |
| 864 | dhm_G_size[i]) != 0) { |
| 865 | mbedtls_exit(1); |
Paul Bakker | cbe3d0d | 2014-04-17 16:00:59 +0200 | [diff] [blame] | 866 | } |
| 867 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 868 | dhm.len = mbedtls_mpi_size(&dhm.P); |
| 869 | mbedtls_dhm_make_public(&dhm, (int) dhm.len, buf, dhm.len, myrand, NULL); |
| 870 | if (mbedtls_mpi_copy(&dhm.GY, &dhm.GX) != 0) { |
| 871 | mbedtls_exit(1); |
| 872 | } |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 873 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 874 | mbedtls_snprintf(title, sizeof(title), "DHE-%d", dhm_sizes[i]); |
| 875 | TIME_PUBLIC(title, "handshake", |
| 876 | ret |= mbedtls_dhm_make_public(&dhm, (int) dhm.len, buf, dhm.len, |
| 877 | myrand, NULL); |
| 878 | ret |= |
| 879 | mbedtls_dhm_calc_secret(&dhm, buf, sizeof(buf), &olen, myrand, NULL)); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 880 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 881 | mbedtls_snprintf(title, sizeof(title), "DH-%d", dhm_sizes[i]); |
| 882 | TIME_PUBLIC(title, "handshake", |
| 883 | ret |= |
| 884 | mbedtls_dhm_calc_secret(&dhm, buf, sizeof(buf), &olen, myrand, NULL)); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 885 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 886 | mbedtls_dhm_free(&dhm); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 887 | } |
Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 888 | } |
Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 889 | #endif |
| 890 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 891 | #if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 892 | if (todo.ecdsa) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 893 | mbedtls_ecdsa_context ecdsa; |
| 894 | const mbedtls_ecp_curve_info *curve_info; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 895 | size_t sig_len; |
| 896 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 897 | memset(buf, 0x2A, sizeof(buf)); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 898 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 899 | for (curve_info = curve_list; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 900 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 901 | curve_info++) { |
| 902 | if (!mbedtls_ecdsa_can_do(curve_info->grp_id)) { |
Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 903 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 904 | } |
Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 905 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 906 | mbedtls_ecdsa_init(&ecdsa); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 907 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 908 | if (mbedtls_ecdsa_genkey(&ecdsa, curve_info->grp_id, myrand, NULL) != 0) { |
| 909 | mbedtls_exit(1); |
| 910 | } |
| 911 | ecp_clear_precomputed(&ecdsa.grp); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 912 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 913 | mbedtls_snprintf(title, sizeof(title), "ECDSA-%s", |
| 914 | curve_info->name); |
| 915 | TIME_PUBLIC(title, "sign", |
| 916 | ret = |
| 917 | mbedtls_ecdsa_write_signature(&ecdsa, MBEDTLS_MD_SHA256, buf, |
| 918 | curve_info->bit_size, |
| 919 | tmp, &sig_len, myrand, NULL)); |
Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 920 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 921 | mbedtls_ecdsa_free(&ecdsa); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 922 | } |
| 923 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 924 | for (curve_info = curve_list; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 925 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 926 | curve_info++) { |
| 927 | if (!mbedtls_ecdsa_can_do(curve_info->grp_id)) { |
Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 928 | continue; |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 929 | } |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 930 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 931 | mbedtls_ecdsa_init(&ecdsa); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 932 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 933 | if (mbedtls_ecdsa_genkey(&ecdsa, curve_info->grp_id, myrand, NULL) != 0 || |
| 934 | mbedtls_ecdsa_write_signature(&ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size, |
| 935 | tmp, &sig_len, myrand, NULL) != 0) { |
| 936 | mbedtls_exit(1); |
| 937 | } |
| 938 | ecp_clear_precomputed(&ecdsa.grp); |
| 939 | |
| 940 | mbedtls_snprintf(title, sizeof(title), "ECDSA-%s", |
| 941 | curve_info->name); |
| 942 | TIME_PUBLIC(title, "verify", |
| 943 | ret = mbedtls_ecdsa_read_signature(&ecdsa, buf, curve_info->bit_size, |
| 944 | tmp, sig_len)); |
| 945 | |
| 946 | mbedtls_ecdsa_free(&ecdsa); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 947 | } |
| 948 | } |
| 949 | #endif |
| 950 | |
Janos Follath | 52735ef | 2018-08-15 10:19:16 +0100 | [diff] [blame] | 951 | #if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 952 | if (todo.ecdh) { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 953 | mbedtls_ecdh_context ecdh; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 954 | mbedtls_mpi z; |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 955 | const mbedtls_ecp_curve_info montgomery_curve_list[] = { |
| 956 | #if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) |
| 957 | { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" }, |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 958 | #endif |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 959 | #if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) |
| 960 | { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" }, |
| 961 | #endif |
| 962 | { MBEDTLS_ECP_DP_NONE, 0, 0, 0 } |
| 963 | }; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 964 | const mbedtls_ecp_curve_info *curve_info; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 965 | size_t olen; |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 966 | const mbedtls_ecp_curve_info *selected_montgomery_curve_list = |
| 967 | montgomery_curve_list; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 968 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 969 | if (curve_list == (const mbedtls_ecp_curve_info *) &single_curve) { |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 970 | mbedtls_ecp_group grp; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 971 | mbedtls_ecp_group_init(&grp); |
| 972 | if (mbedtls_ecp_group_load(&grp, curve_list->grp_id) != 0) { |
| 973 | mbedtls_exit(1); |
| 974 | } |
| 975 | if (mbedtls_ecp_get_type(&grp) == MBEDTLS_ECP_TYPE_MONTGOMERY) { |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 976 | selected_montgomery_curve_list = single_curve; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 977 | } else { /* empty list */ |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 978 | selected_montgomery_curve_list = single_curve + 1; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 979 | } |
| 980 | mbedtls_ecp_group_free(&grp); |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 981 | } |
| 982 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 983 | for (curve_info = curve_list; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 984 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 985 | curve_info++) { |
| 986 | if (!mbedtls_ecdh_can_do(curve_info->grp_id)) { |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 987 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 988 | } |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 989 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 990 | mbedtls_ecdh_init(&ecdh); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 991 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 992 | CHECK_AND_CONTINUE(mbedtls_ecp_group_load(&ecdh.grp, curve_info->grp_id)); |
| 993 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh, &olen, buf, sizeof(buf), |
| 994 | myrand, NULL)); |
| 995 | CHECK_AND_CONTINUE(mbedtls_ecp_copy(&ecdh.Qp, &ecdh.Q)); |
| 996 | ecp_clear_precomputed(&ecdh.grp); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 997 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 998 | mbedtls_snprintf(title, sizeof(title), "ECDHE-%s", |
| 999 | curve_info->name); |
| 1000 | TIME_PUBLIC(title, "handshake", |
| 1001 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh, &olen, buf, sizeof(buf), |
| 1002 | myrand, NULL)); |
| 1003 | CHECK_AND_CONTINUE(mbedtls_ecdh_calc_secret(&ecdh, &olen, buf, sizeof(buf), |
| 1004 | myrand, NULL))); |
| 1005 | mbedtls_ecdh_free(&ecdh); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1006 | } |
| 1007 | |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1008 | /* Montgomery curves need to be handled separately */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1009 | for (curve_info = selected_montgomery_curve_list; |
| 1010 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
| 1011 | curve_info++) { |
| 1012 | mbedtls_ecdh_init(&ecdh); |
| 1013 | mbedtls_mpi_init(&z); |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1014 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1015 | CHECK_AND_CONTINUE(mbedtls_ecp_group_load(&ecdh.grp, curve_info->grp_id)); |
| 1016 | CHECK_AND_CONTINUE(mbedtls_ecdh_gen_public(&ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL)); |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1017 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1018 | mbedtls_snprintf(title, sizeof(title), "ECDHE-%s", |
| 1019 | curve_info->name); |
| 1020 | TIME_PUBLIC(title, "handshake", |
| 1021 | CHECK_AND_CONTINUE(mbedtls_ecdh_gen_public(&ecdh.grp, &ecdh.d, &ecdh.Q, |
| 1022 | myrand, NULL)); |
| 1023 | CHECK_AND_CONTINUE(mbedtls_ecdh_compute_shared(&ecdh.grp, &z, &ecdh.Qp, |
| 1024 | &ecdh.d, |
| 1025 | myrand, NULL))); |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1026 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1027 | mbedtls_ecdh_free(&ecdh); |
| 1028 | mbedtls_mpi_free(&z); |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1029 | } |
| 1030 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1031 | for (curve_info = curve_list; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1032 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1033 | curve_info++) { |
| 1034 | if (!mbedtls_ecdh_can_do(curve_info->grp_id)) { |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1035 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1036 | } |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1037 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1038 | mbedtls_ecdh_init(&ecdh); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1039 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1040 | CHECK_AND_CONTINUE(mbedtls_ecp_group_load(&ecdh.grp, curve_info->grp_id)); |
| 1041 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh, &olen, buf, sizeof(buf), |
| 1042 | myrand, NULL)); |
| 1043 | CHECK_AND_CONTINUE(mbedtls_ecp_copy(&ecdh.Qp, &ecdh.Q)); |
| 1044 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh, &olen, buf, sizeof(buf), |
| 1045 | myrand, NULL)); |
| 1046 | ecp_clear_precomputed(&ecdh.grp); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1047 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1048 | mbedtls_snprintf(title, sizeof(title), "ECDH-%s", |
| 1049 | curve_info->name); |
| 1050 | TIME_PUBLIC(title, "handshake", |
| 1051 | CHECK_AND_CONTINUE(mbedtls_ecdh_calc_secret(&ecdh, &olen, buf, sizeof(buf), |
| 1052 | myrand, NULL))); |
| 1053 | mbedtls_ecdh_free(&ecdh); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1054 | } |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1055 | |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1056 | /* Montgomery curves need to be handled separately */ |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1057 | for (curve_info = selected_montgomery_curve_list; |
| 1058 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
| 1059 | curve_info++) { |
| 1060 | mbedtls_ecdh_init(&ecdh); |
| 1061 | mbedtls_mpi_init(&z); |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1062 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1063 | CHECK_AND_CONTINUE(mbedtls_ecp_group_load(&ecdh.grp, curve_info->grp_id)); |
| 1064 | CHECK_AND_CONTINUE(mbedtls_ecdh_gen_public(&ecdh.grp, &ecdh.d, &ecdh.Qp, |
| 1065 | myrand, NULL)); |
| 1066 | CHECK_AND_CONTINUE(mbedtls_ecdh_gen_public(&ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL)); |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1067 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1068 | mbedtls_snprintf(title, sizeof(title), "ECDH-%s", |
| 1069 | curve_info->name); |
| 1070 | TIME_PUBLIC(title, "handshake", |
| 1071 | CHECK_AND_CONTINUE(mbedtls_ecdh_compute_shared(&ecdh.grp, &z, &ecdh.Qp, |
| 1072 | &ecdh.d, |
| 1073 | myrand, NULL))); |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1074 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1075 | mbedtls_ecdh_free(&ecdh); |
| 1076 | mbedtls_mpi_free(&z); |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1077 | } |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1078 | } |
| 1079 | #endif |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1080 | |
Christoph M. Wintersteiger | e50b970 | 2018-12-14 11:03:02 +0000 | [diff] [blame] | 1081 | #if defined(MBEDTLS_ECDH_C) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1082 | if (todo.ecdh) { |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1083 | mbedtls_ecdh_context ecdh_srv, ecdh_cli; |
| 1084 | unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE]; |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1085 | const mbedtls_ecp_curve_info *curve_info; |
| 1086 | size_t olen; |
| 1087 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1088 | for (curve_info = curve_list; |
| 1089 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
| 1090 | curve_info++) { |
| 1091 | if (!mbedtls_ecdh_can_do(curve_info->grp_id)) { |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1092 | continue; |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1093 | } |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1094 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1095 | mbedtls_ecdh_init(&ecdh_srv); |
| 1096 | mbedtls_ecdh_init(&ecdh_cli); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1097 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1098 | mbedtls_snprintf(title, sizeof(title), "ECDHE-%s", curve_info->name); |
| 1099 | TIME_PUBLIC(title, |
| 1100 | "full handshake", |
| 1101 | const unsigned char *p_srv = buf_srv; |
Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1102 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1103 | CHECK_AND_CONTINUE(mbedtls_ecdh_setup(&ecdh_srv, curve_info->grp_id)); |
| 1104 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_params(&ecdh_srv, &olen, buf_srv, |
| 1105 | sizeof(buf_srv), myrand, NULL)); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1106 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1107 | CHECK_AND_CONTINUE(mbedtls_ecdh_read_params(&ecdh_cli, &p_srv, |
| 1108 | p_srv + olen)); |
| 1109 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh_cli, &olen, buf_cli, |
| 1110 | sizeof(buf_cli), myrand, NULL)); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1111 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1112 | CHECK_AND_CONTINUE(mbedtls_ecdh_read_public(&ecdh_srv, buf_cli, olen)); |
| 1113 | CHECK_AND_CONTINUE(mbedtls_ecdh_calc_secret(&ecdh_srv, &olen, buf_srv, |
| 1114 | sizeof(buf_srv), myrand, NULL)); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1115 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1116 | CHECK_AND_CONTINUE(mbedtls_ecdh_calc_secret(&ecdh_cli, &olen, buf_cli, |
| 1117 | sizeof(buf_cli), myrand, NULL)); |
| 1118 | mbedtls_ecdh_free(&ecdh_cli); |
Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1119 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1120 | mbedtls_ecdh_free(&ecdh_srv); |
| 1121 | ); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1122 | |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1123 | } |
| 1124 | } |
| 1125 | #endif |
| 1126 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1127 | mbedtls_printf("\n"); |
Paul Bakker | 1d4da2e | 2009-10-25 12:36:53 +0000 | [diff] [blame] | 1128 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1129 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
| 1130 | mbedtls_memory_buffer_alloc_free(); |
Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 1131 | #endif |
| 1132 | |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 1133 | #if defined(_WIN32) |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1134 | mbedtls_printf(" Press Enter to exit this program.\n"); |
| 1135 | fflush(stdout); getchar(); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1136 | #endif |
| 1137 | |
Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1138 | mbedtls_exit(0); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1139 | } |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1140 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1141 | #endif /* MBEDTLS_TIMING_C */ |