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