| 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 |  | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 92 | #define OPTIONS                                                         \ | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 93 | "md4, md5, ripemd160, sha1, sha256, sha512,\n"                      \ | 
| Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 94 | "arc4, des3, des, camellia, blowfish, chacha20,\n"                  \ | 
| Zhai Zhaoxuan | e22da99 | 2020-05-09 23:50:32 +0800 | [diff] [blame] | 95 | "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n"                 \ | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 96 | "aes_cmac, des3_cmac, poly1305\n"                                   \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 97 | "havege, ctr_drbg, hmac_drbg\n"                                     \ | 
|  | 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, | 
| Manuel Pégourié-Gonnard | 0dadba2 | 2018-06-19 11:11:15 +0200 | [diff] [blame] | 283 | aes_cbc, 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; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 339 | } else if (strcmp(argv[i], "aes_xts") == 0) { | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 340 | todo.aes_xts = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 341 | } else if (strcmp(argv[i], "aes_gcm") == 0) { | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 342 | todo.aes_gcm = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 343 | } else if (strcmp(argv[i], "aes_ccm") == 0) { | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 344 | todo.aes_ccm = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 345 | } else if (strcmp(argv[i], "chachapoly") == 0) { | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 346 | todo.chachapoly = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 347 | } else if (strcmp(argv[i], "aes_cmac") == 0) { | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 348 | todo.aes_cmac = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 349 | } else if (strcmp(argv[i], "des3_cmac") == 0) { | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 350 | todo.des3_cmac = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 351 | } else if (strcmp(argv[i], "aria") == 0) { | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 352 | todo.aria = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 353 | } else if (strcmp(argv[i], "camellia") == 0) { | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 354 | todo.camellia = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 355 | } else if (strcmp(argv[i], "blowfish") == 0) { | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 356 | todo.blowfish = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 357 | } else if (strcmp(argv[i], "chacha20") == 0) { | 
| Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 358 | todo.chacha20 = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 359 | } else if (strcmp(argv[i], "poly1305") == 0) { | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 360 | todo.poly1305 = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 361 | } else if (strcmp(argv[i], "havege") == 0) { | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 362 | todo.havege = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 363 | } else if (strcmp(argv[i], "ctr_drbg") == 0) { | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 364 | todo.ctr_drbg = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 365 | } else if (strcmp(argv[i], "hmac_drbg") == 0) { | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 366 | todo.hmac_drbg = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 367 | } else if (strcmp(argv[i], "rsa") == 0) { | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 368 | todo.rsa = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 369 | } else if (strcmp(argv[i], "dhm") == 0) { | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 370 | todo.dhm = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 371 | } else if (strcmp(argv[i], "ecdsa") == 0) { | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 372 | todo.ecdsa = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 373 | } else if (strcmp(argv[i], "ecdh") == 0) { | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 374 | todo.ecdh = 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 375 | } | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 376 | #if defined(MBEDTLS_ECP_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 377 | else if (set_ecp_curve(argv[i], single_curve)) { | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 378 | curve_list = single_curve; | 
| 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 | #endif | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 381 | else { | 
|  | 382 | mbedtls_printf("Unrecognized option: %s\n", argv[i]); | 
|  | 383 | mbedtls_printf("Available options: " OPTIONS); | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 384 | } | 
|  | 385 | } | 
|  | 386 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 387 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 388 | mbedtls_printf("\n"); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 389 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 390 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 391 | mbedtls_memory_buffer_alloc_init(alloc_buf, sizeof(alloc_buf)); | 
| Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 392 | #endif | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 393 | memset(buf, 0xAA, sizeof(buf)); | 
|  | 394 | memset(tmp, 0xBB, sizeof(tmp)); | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 395 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 396 | #if defined(MBEDTLS_MD4_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 397 | if (todo.md4) { | 
|  | 398 | TIME_AND_TSC("MD4", mbedtls_md4_ret(buf, BUFSIZE, tmp)); | 
|  | 399 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 400 | #endif | 
|  | 401 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 402 | #if defined(MBEDTLS_MD5_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 403 | if (todo.md5) { | 
|  | 404 | TIME_AND_TSC("MD5", mbedtls_md5_ret(buf, BUFSIZE, tmp)); | 
|  | 405 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 406 | #endif | 
|  | 407 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 408 | #if defined(MBEDTLS_RIPEMD160_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 409 | if (todo.ripemd160) { | 
|  | 410 | TIME_AND_TSC("RIPEMD160", mbedtls_ripemd160_ret(buf, BUFSIZE, tmp)); | 
|  | 411 | } | 
| Manuel Pégourié-Gonnard | 01b0b38 | 2014-01-17 14:29:46 +0100 | [diff] [blame] | 412 | #endif | 
|  | 413 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 414 | #if defined(MBEDTLS_SHA1_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 415 | if (todo.sha1) { | 
|  | 416 | TIME_AND_TSC("SHA-1", mbedtls_sha1_ret(buf, BUFSIZE, tmp)); | 
|  | 417 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 418 | #endif | 
|  | 419 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 420 | #if defined(MBEDTLS_SHA256_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 421 | if (todo.sha256) { | 
|  | 422 | TIME_AND_TSC("SHA-256", mbedtls_sha256_ret(buf, BUFSIZE, tmp, 0)); | 
|  | 423 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 424 | #endif | 
|  | 425 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 426 | #if defined(MBEDTLS_SHA512_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 427 | if (todo.sha512) { | 
|  | 428 | TIME_AND_TSC("SHA-512", mbedtls_sha512_ret(buf, BUFSIZE, tmp, 0)); | 
|  | 429 | } | 
| Paul Bakker | 3a3c3c2 | 2009-02-09 22:33:30 +0000 | [diff] [blame] | 430 | #endif | 
|  | 431 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 432 | #if defined(MBEDTLS_ARC4_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 433 | if (todo.arc4) { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 434 | mbedtls_arc4_context arc4; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 435 | mbedtls_arc4_init(&arc4); | 
|  | 436 | mbedtls_arc4_setup(&arc4, tmp, 32); | 
|  | 437 | TIME_AND_TSC("ARC4", mbedtls_arc4_crypt(&arc4, BUFSIZE, buf, buf)); | 
|  | 438 | mbedtls_arc4_free(&arc4); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 439 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 440 | #endif | 
|  | 441 |  | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 442 | #if defined(MBEDTLS_DES_C) | 
|  | 443 | #if defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 444 | if (todo.des3) { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 445 | mbedtls_des3_context des3; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 446 | mbedtls_des3_init(&des3); | 
|  | 447 | if (mbedtls_des3_set3key_enc(&des3, tmp) != 0) { | 
|  | 448 | mbedtls_exit(1); | 
|  | 449 | } | 
|  | 450 | TIME_AND_TSC("3DES", | 
|  | 451 | mbedtls_des3_crypt_cbc(&des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf)); | 
|  | 452 | mbedtls_des3_free(&des3); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 453 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 454 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 455 | if (todo.des) { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 456 | mbedtls_des_context des; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 457 | mbedtls_des_init(&des); | 
|  | 458 | if (mbedtls_des_setkey_enc(&des, tmp) != 0) { | 
|  | 459 | mbedtls_exit(1); | 
|  | 460 | } | 
|  | 461 | TIME_AND_TSC("DES", | 
|  | 462 | mbedtls_des_crypt_cbc(&des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf)); | 
|  | 463 | mbedtls_des_free(&des); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 464 | } | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 465 |  | 
|  | 466 | #endif /* MBEDTLS_CIPHER_MODE_CBC */ | 
|  | 467 | #if defined(MBEDTLS_CMAC_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 468 | if (todo.des3_cmac) { | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 469 | unsigned char output[8]; | 
|  | 470 | const mbedtls_cipher_info_t *cipher_info; | 
|  | 471 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 472 | memset(buf, 0, sizeof(buf)); | 
|  | 473 | memset(tmp, 0, sizeof(tmp)); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 474 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 475 | cipher_info = mbedtls_cipher_info_from_type(MBEDTLS_CIPHER_DES_EDE3_ECB); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 476 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 477 | TIME_AND_TSC("3DES-CMAC", | 
|  | 478 | mbedtls_cipher_cmac(cipher_info, tmp, 192, buf, | 
|  | 479 | BUFSIZE, output)); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 480 | } | 
|  | 481 | #endif /* MBEDTLS_CMAC_C */ | 
|  | 482 | #endif /* MBEDTLS_DES_C */ | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 483 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 484 | #if defined(MBEDTLS_AES_C) | 
|  | 485 | #if defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 486 | if (todo.aes_cbc) { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 487 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 488 | mbedtls_aes_context aes; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 489 | mbedtls_aes_init(&aes); | 
|  | 490 | for (keysize = 128; keysize <= 256; keysize += 64) { | 
|  | 491 | mbedtls_snprintf(title, sizeof(title), "AES-CBC-%d", 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 | memset(buf, 0, sizeof(buf)); | 
|  | 494 | memset(tmp, 0, sizeof(tmp)); | 
|  | 495 | CHECK_AND_CONTINUE(mbedtls_aes_setkey_enc(&aes, tmp, 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 | TIME_AND_TSC(title, | 
|  | 498 | 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] | 499 | } | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 500 | mbedtls_aes_free(&aes); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 501 | } | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 502 | #endif | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 503 | #if defined(MBEDTLS_CIPHER_MODE_XTS) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 504 | if (todo.aes_xts) { | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 505 | int keysize; | 
| Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 506 | mbedtls_aes_xts_context ctx; | 
|  | 507 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 508 | mbedtls_aes_xts_init(&ctx); | 
|  | 509 | for (keysize = 128; keysize <= 256; keysize += 128) { | 
|  | 510 | mbedtls_snprintf(title, sizeof(title), "AES-XTS-%d", keysize); | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 511 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 512 | memset(buf, 0, sizeof(buf)); | 
|  | 513 | memset(tmp, 0, sizeof(tmp)); | 
|  | 514 | CHECK_AND_CONTINUE(mbedtls_aes_xts_setkey_enc(&ctx, tmp, keysize * 2)); | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 515 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 516 | TIME_AND_TSC(title, | 
|  | 517 | mbedtls_aes_crypt_xts(&ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE, | 
|  | 518 | tmp, buf, buf)); | 
| Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 519 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 520 | mbedtls_aes_xts_free(&ctx); | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 521 | } | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 522 | } | 
|  | 523 | #endif | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 524 | #if defined(MBEDTLS_GCM_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 525 | if (todo.aes_gcm) { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 526 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 527 | mbedtls_gcm_context gcm; | 
| Manuel Pégourié-Gonnard | c34e8dd | 2015-04-28 21:42:17 +0200 | [diff] [blame] | 528 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 529 | mbedtls_gcm_init(&gcm); | 
|  | 530 | for (keysize = 128; keysize <= 256; keysize += 64) { | 
|  | 531 | mbedtls_snprintf(title, sizeof(title), "AES-GCM-%d", keysize); | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 532 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 533 | memset(buf, 0, sizeof(buf)); | 
|  | 534 | memset(tmp, 0, sizeof(tmp)); | 
|  | 535 | mbedtls_gcm_setkey(&gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize); | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 536 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 537 | TIME_AND_TSC(title, | 
|  | 538 | mbedtls_gcm_crypt_and_tag(&gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp, | 
|  | 539 | 12, NULL, 0, buf, buf, 16, tmp)); | 
| Paul Bakker | f70fe81 | 2013-12-16 16:43:10 +0100 | [diff] [blame] | 540 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 541 | mbedtls_gcm_free(&gcm); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 542 | } | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 543 | } | 
|  | 544 | #endif | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 545 | #if defined(MBEDTLS_CCM_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 546 | if (todo.aes_ccm) { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 547 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 548 | mbedtls_ccm_context ccm; | 
| Manuel Pégourié-Gonnard | 6963ff0 | 2015-04-28 18:02:54 +0200 | [diff] [blame] | 549 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 550 | mbedtls_ccm_init(&ccm); | 
|  | 551 | for (keysize = 128; keysize <= 256; keysize += 64) { | 
|  | 552 | mbedtls_snprintf(title, sizeof(title), "AES-CCM-%d", keysize); | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 553 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 554 | memset(buf, 0, sizeof(buf)); | 
|  | 555 | memset(tmp, 0, sizeof(tmp)); | 
|  | 556 | mbedtls_ccm_setkey(&ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize); | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 557 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 558 | TIME_AND_TSC(title, | 
|  | 559 | mbedtls_ccm_encrypt_and_tag(&ccm, BUFSIZE, tmp, | 
|  | 560 | 12, NULL, 0, buf, buf, tmp, 16)); | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 561 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 562 | mbedtls_ccm_free(&ccm); | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 563 | } | 
|  | 564 | } | 
|  | 565 | #endif | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 566 | #if defined(MBEDTLS_CHACHAPOLY_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 567 | if (todo.chachapoly) { | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 568 | mbedtls_chachapoly_context chachapoly; | 
|  | 569 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 570 | mbedtls_chachapoly_init(&chachapoly); | 
|  | 571 | memset(buf, 0, sizeof(buf)); | 
|  | 572 | memset(tmp, 0, sizeof(tmp)); | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 573 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 574 | mbedtls_snprintf(title, sizeof(title), "ChaCha20-Poly1305"); | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 575 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 576 | mbedtls_chachapoly_setkey(&chachapoly, tmp); | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 577 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 578 | TIME_AND_TSC(title, | 
|  | 579 | mbedtls_chachapoly_encrypt_and_tag(&chachapoly, | 
|  | 580 | BUFSIZE, tmp, NULL, 0, buf, buf, tmp)); | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 581 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 582 | mbedtls_chachapoly_free(&chachapoly); | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 583 | } | 
|  | 584 | #endif | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 585 | #if defined(MBEDTLS_CMAC_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 586 | if (todo.aes_cmac) { | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 587 | unsigned char output[16]; | 
|  | 588 | const mbedtls_cipher_info_t *cipher_info; | 
|  | 589 | mbedtls_cipher_type_t cipher_type; | 
|  | 590 | int keysize; | 
|  | 591 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 592 | for (keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB; | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 593 | keysize <= 256; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 594 | keysize += 64, cipher_type++) { | 
|  | 595 | mbedtls_snprintf(title, sizeof(title), "AES-CMAC-%d", keysize); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 596 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 597 | memset(buf, 0, sizeof(buf)); | 
|  | 598 | memset(tmp, 0, sizeof(tmp)); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 599 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 600 | cipher_info = mbedtls_cipher_info_from_type(cipher_type); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 601 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 602 | TIME_AND_TSC(title, | 
|  | 603 | mbedtls_cipher_cmac(cipher_info, tmp, keysize, | 
|  | 604 | buf, BUFSIZE, output)); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 605 | } | 
|  | 606 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 607 | memset(buf, 0, sizeof(buf)); | 
|  | 608 | memset(tmp, 0, sizeof(tmp)); | 
|  | 609 | TIME_AND_TSC("AES-CMAC-PRF-128", | 
|  | 610 | mbedtls_aes_cmac_prf_128(tmp, 16, buf, BUFSIZE, | 
|  | 611 | output)); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 612 | } | 
|  | 613 | #endif /* MBEDTLS_CMAC_C */ | 
|  | 614 | #endif /* MBEDTLS_AES_C */ | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 615 |  | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 616 | #if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 617 | if (todo.aria) { | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 618 | int keysize; | 
|  | 619 | mbedtls_aria_context aria; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 620 | mbedtls_aria_init(&aria); | 
|  | 621 | for (keysize = 128; keysize <= 256; keysize += 64) { | 
|  | 622 | mbedtls_snprintf(title, sizeof(title), "ARIA-CBC-%d", keysize); | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 623 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 624 | memset(buf, 0, sizeof(buf)); | 
|  | 625 | memset(tmp, 0, sizeof(tmp)); | 
|  | 626 | mbedtls_aria_setkey_enc(&aria, tmp, keysize); | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 627 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 628 | TIME_AND_TSC(title, | 
|  | 629 | mbedtls_aria_crypt_cbc(&aria, MBEDTLS_ARIA_ENCRYPT, | 
|  | 630 | BUFSIZE, tmp, buf, buf)); | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 631 | } | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 632 | mbedtls_aria_free(&aria); | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 633 | } | 
|  | 634 | #endif | 
|  | 635 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 636 | #if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 637 | if (todo.camellia) { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 638 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 639 | mbedtls_camellia_context camellia; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 640 | mbedtls_camellia_init(&camellia); | 
|  | 641 | for (keysize = 128; keysize <= 256; keysize += 64) { | 
|  | 642 | mbedtls_snprintf(title, sizeof(title), "CAMELLIA-CBC-%d", keysize); | 
| Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 643 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 644 | memset(buf, 0, sizeof(buf)); | 
|  | 645 | memset(tmp, 0, sizeof(tmp)); | 
|  | 646 | mbedtls_camellia_setkey_enc(&camellia, tmp, keysize); | 
| Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 647 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 648 | TIME_AND_TSC(title, | 
|  | 649 | mbedtls_camellia_crypt_cbc(&camellia, MBEDTLS_CAMELLIA_ENCRYPT, | 
|  | 650 | BUFSIZE, tmp, buf, buf)); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 651 | } | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 652 | mbedtls_camellia_free(&camellia); | 
| Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 653 | } | 
|  | 654 | #endif | 
|  | 655 |  | 
| Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 656 | #if defined(MBEDTLS_CHACHA20_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 657 | if (todo.chacha20) { | 
|  | 658 | 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] | 659 | } | 
|  | 660 | #endif | 
|  | 661 |  | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 662 | #if defined(MBEDTLS_POLY1305_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 663 | if (todo.poly1305) { | 
|  | 664 | TIME_AND_TSC("Poly1305", mbedtls_poly1305_mac(buf, buf, BUFSIZE, buf)); | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 665 | } | 
|  | 666 | #endif | 
|  | 667 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 668 | #if defined(MBEDTLS_BLOWFISH_C) && defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 669 | if (todo.blowfish) { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 670 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 671 | mbedtls_blowfish_context blowfish; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 672 | mbedtls_blowfish_init(&blowfish); | 
| Paul Bakker | 8cfd9d8 | 2014-06-18 11:16:11 +0200 | [diff] [blame] | 673 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 674 | for (keysize = 128; keysize <= 256; keysize += 64) { | 
|  | 675 | mbedtls_snprintf(title, sizeof(title), "BLOWFISH-CBC-%d", keysize); | 
| Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 676 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 677 | memset(buf, 0, sizeof(buf)); | 
|  | 678 | memset(tmp, 0, sizeof(tmp)); | 
|  | 679 | mbedtls_blowfish_setkey(&blowfish, tmp, keysize); | 
| Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 680 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 681 | TIME_AND_TSC(title, | 
|  | 682 | mbedtls_blowfish_crypt_cbc(&blowfish, MBEDTLS_BLOWFISH_ENCRYPT, BUFSIZE, | 
|  | 683 | tmp, buf, buf)); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 684 | } | 
| Paul Bakker | 8cfd9d8 | 2014-06-18 11:16:11 +0200 | [diff] [blame] | 685 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 686 | mbedtls_blowfish_free(&blowfish); | 
| Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 687 | } | 
|  | 688 | #endif | 
|  | 689 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 690 | #if defined(MBEDTLS_HAVEGE_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 691 | if (todo.havege) { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 692 | mbedtls_havege_state hs; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 693 | mbedtls_havege_init(&hs); | 
|  | 694 | TIME_AND_TSC("HAVEGE", mbedtls_havege_random(&hs, buf, BUFSIZE)); | 
|  | 695 | mbedtls_havege_free(&hs); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 696 | } | 
| Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 697 | #endif | 
|  | 698 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 699 | #if defined(MBEDTLS_CTR_DRBG_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 700 | if (todo.ctr_drbg) { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 701 | mbedtls_ctr_drbg_context ctr_drbg; | 
| Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 702 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 703 | mbedtls_ctr_drbg_init(&ctr_drbg); | 
|  | 704 | 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] | 705 | mbedtls_exit(1); | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 706 | } | 
|  | 707 | TIME_AND_TSC("CTR_DRBG (NOPR)", | 
|  | 708 | mbedtls_ctr_drbg_random(&ctr_drbg, buf, BUFSIZE)); | 
|  | 709 | mbedtls_ctr_drbg_free(&ctr_drbg); | 
| Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 710 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 711 | mbedtls_ctr_drbg_init(&ctr_drbg); | 
|  | 712 | 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] | 713 | mbedtls_exit(1); | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 714 | } | 
|  | 715 | mbedtls_ctr_drbg_set_prediction_resistance(&ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON); | 
|  | 716 | TIME_AND_TSC("CTR_DRBG (PR)", | 
|  | 717 | mbedtls_ctr_drbg_random(&ctr_drbg, buf, BUFSIZE)); | 
|  | 718 | mbedtls_ctr_drbg_free(&ctr_drbg); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 719 | } | 
| Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 720 | #endif | 
|  | 721 |  | 
| Andrzej Kurek | b3b0ec9 | 2022-10-18 08:21:07 -0400 | [diff] [blame] | 722 | #if defined(MBEDTLS_HMAC_DRBG_C) && \ | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 723 | (defined(MBEDTLS_SHA1_C) || defined(MBEDTLS_SHA256_C)) | 
|  | 724 | if (todo.hmac_drbg) { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 725 | mbedtls_hmac_drbg_context hmac_drbg; | 
|  | 726 | const mbedtls_md_info_t *md_info; | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 727 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 728 | mbedtls_hmac_drbg_init(&hmac_drbg); | 
| Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 729 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 730 | #if defined(MBEDTLS_SHA1_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 731 | 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] | 732 | mbedtls_exit(1); | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 733 | } | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 734 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 735 | 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] | 736 | mbedtls_exit(1); | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 737 | } | 
|  | 738 | TIME_AND_TSC("HMAC_DRBG SHA-1 (NOPR)", | 
|  | 739 | mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 740 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 741 | 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] | 742 | mbedtls_exit(1); | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 743 | } | 
|  | 744 | mbedtls_hmac_drbg_set_prediction_resistance(&hmac_drbg, | 
|  | 745 | MBEDTLS_HMAC_DRBG_PR_ON); | 
|  | 746 | TIME_AND_TSC("HMAC_DRBG SHA-1 (PR)", | 
|  | 747 | mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 748 | #endif | 
|  | 749 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 750 | #if defined(MBEDTLS_SHA256_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 751 | 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] | 752 | mbedtls_exit(1); | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 753 | } | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 754 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 755 | 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] | 756 | mbedtls_exit(1); | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 757 | } | 
|  | 758 | TIME_AND_TSC("HMAC_DRBG SHA-256 (NOPR)", | 
|  | 759 | mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 760 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 761 | 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] | 762 | mbedtls_exit(1); | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 763 | } | 
|  | 764 | mbedtls_hmac_drbg_set_prediction_resistance(&hmac_drbg, | 
|  | 765 | MBEDTLS_HMAC_DRBG_PR_ON); | 
|  | 766 | TIME_AND_TSC("HMAC_DRBG SHA-256 (PR)", | 
|  | 767 | mbedtls_hmac_drbg_random(&hmac_drbg, buf, BUFSIZE)); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 768 | #endif | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 769 | mbedtls_hmac_drbg_free(&hmac_drbg); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 770 | } | 
| Andrzej Kurek | b3b0ec9 | 2022-10-18 08:21:07 -0400 | [diff] [blame] | 771 | #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] | 772 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 773 | #if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 774 | if (todo.rsa) { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 775 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 776 | mbedtls_rsa_context rsa; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 777 | for (keysize = 2048; keysize <= 4096; keysize *= 2) { | 
|  | 778 | mbedtls_snprintf(title, sizeof(title), "RSA-%d", keysize); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 779 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 780 | mbedtls_rsa_init(&rsa, MBEDTLS_RSA_PKCS_V15, 0); | 
|  | 781 | mbedtls_rsa_gen_key(&rsa, myrand, NULL, keysize, 65537); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 782 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 783 | TIME_PUBLIC(title, " public", | 
|  | 784 | buf[0] = 0; | 
|  | 785 | ret = mbedtls_rsa_public(&rsa, buf, buf)); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 786 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 787 | TIME_PUBLIC(title, "private", | 
|  | 788 | buf[0] = 0; | 
|  | 789 | ret = mbedtls_rsa_private(&rsa, myrand, NULL, buf, buf)); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 790 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 791 | mbedtls_rsa_free(&rsa); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 792 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 793 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 794 | #endif | 
|  | 795 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 796 | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 797 | if (todo.dhm) { | 
| Manuel Pégourié-Gonnard | 4f3368e | 2015-07-19 15:01:28 +0200 | [diff] [blame] | 798 | int dhm_sizes[] = { 2048, 3072 }; | 
| Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 799 | static const unsigned char dhm_P_2048[] = | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 800 | MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN; | 
| Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 801 | static const unsigned char dhm_P_3072[] = | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 802 | MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN; | 
| Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 803 | static const unsigned char dhm_G_2048[] = | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 804 | MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN; | 
| Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 805 | static const unsigned char dhm_G_3072[] = | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 806 | MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN; | 
|  | 807 |  | 
|  | 808 | const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 }; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 809 | const size_t dhm_P_size[] = { sizeof(dhm_P_2048), | 
|  | 810 | sizeof(dhm_P_3072) }; | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 811 |  | 
|  | 812 | const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 }; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 813 | const size_t dhm_G_size[] = { sizeof(dhm_G_2048), | 
|  | 814 | sizeof(dhm_G_3072) }; | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 815 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 816 | mbedtls_dhm_context dhm; | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 817 | size_t olen; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 818 | for (i = 0; (size_t) i < sizeof(dhm_sizes) / sizeof(dhm_sizes[0]); i++) { | 
|  | 819 | mbedtls_dhm_init(&dhm); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 820 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 821 | if (mbedtls_mpi_read_binary(&dhm.P, dhm_P[i], | 
|  | 822 | dhm_P_size[i]) != 0 || | 
|  | 823 | mbedtls_mpi_read_binary(&dhm.G, dhm_G[i], | 
|  | 824 | dhm_G_size[i]) != 0) { | 
|  | 825 | mbedtls_exit(1); | 
| Paul Bakker | cbe3d0d | 2014-04-17 16:00:59 +0200 | [diff] [blame] | 826 | } | 
|  | 827 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 828 | dhm.len = mbedtls_mpi_size(&dhm.P); | 
|  | 829 | mbedtls_dhm_make_public(&dhm, (int) dhm.len, buf, dhm.len, myrand, NULL); | 
|  | 830 | if (mbedtls_mpi_copy(&dhm.GY, &dhm.GX) != 0) { | 
|  | 831 | mbedtls_exit(1); | 
|  | 832 | } | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 833 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 834 | mbedtls_snprintf(title, sizeof(title), "DHE-%d", dhm_sizes[i]); | 
|  | 835 | TIME_PUBLIC(title, "handshake", | 
|  | 836 | ret |= mbedtls_dhm_make_public(&dhm, (int) dhm.len, buf, dhm.len, | 
|  | 837 | myrand, NULL); | 
|  | 838 | ret |= | 
|  | 839 | 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] | 840 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 841 | mbedtls_snprintf(title, sizeof(title), "DH-%d", dhm_sizes[i]); | 
|  | 842 | TIME_PUBLIC(title, "handshake", | 
|  | 843 | ret |= | 
|  | 844 | 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] | 845 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 846 | mbedtls_dhm_free(&dhm); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 847 | } | 
| Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 848 | } | 
| Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 849 | #endif | 
|  | 850 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 851 | #if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 852 | if (todo.ecdsa) { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 853 | mbedtls_ecdsa_context ecdsa; | 
|  | 854 | const mbedtls_ecp_curve_info *curve_info; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 855 | size_t sig_len; | 
|  | 856 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 857 | memset(buf, 0x2A, sizeof(buf)); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 858 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 859 | for (curve_info = curve_list; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 860 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 861 | curve_info++) { | 
|  | 862 | if (!mbedtls_ecdsa_can_do(curve_info->grp_id)) { | 
| Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 863 | continue; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 864 | } | 
| Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 865 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 866 | mbedtls_ecdsa_init(&ecdsa); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 867 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 868 | if (mbedtls_ecdsa_genkey(&ecdsa, curve_info->grp_id, myrand, NULL) != 0) { | 
|  | 869 | mbedtls_exit(1); | 
|  | 870 | } | 
|  | 871 | ecp_clear_precomputed(&ecdsa.grp); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 872 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 873 | mbedtls_snprintf(title, sizeof(title), "ECDSA-%s", | 
|  | 874 | curve_info->name); | 
|  | 875 | TIME_PUBLIC(title, "sign", | 
|  | 876 | ret = | 
|  | 877 | mbedtls_ecdsa_write_signature(&ecdsa, MBEDTLS_MD_SHA256, buf, | 
|  | 878 | curve_info->bit_size, | 
|  | 879 | tmp, &sig_len, myrand, NULL)); | 
| Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 880 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 881 | mbedtls_ecdsa_free(&ecdsa); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 882 | } | 
|  | 883 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 884 | for (curve_info = curve_list; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 885 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 886 | curve_info++) { | 
|  | 887 | if (!mbedtls_ecdsa_can_do(curve_info->grp_id)) { | 
| Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 888 | continue; | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 889 | } | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 890 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 891 | mbedtls_ecdsa_init(&ecdsa); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 892 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 893 | if (mbedtls_ecdsa_genkey(&ecdsa, curve_info->grp_id, myrand, NULL) != 0 || | 
|  | 894 | mbedtls_ecdsa_write_signature(&ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size, | 
|  | 895 | tmp, &sig_len, myrand, NULL) != 0) { | 
|  | 896 | mbedtls_exit(1); | 
|  | 897 | } | 
|  | 898 | ecp_clear_precomputed(&ecdsa.grp); | 
|  | 899 |  | 
|  | 900 | mbedtls_snprintf(title, sizeof(title), "ECDSA-%s", | 
|  | 901 | curve_info->name); | 
|  | 902 | TIME_PUBLIC(title, "verify", | 
|  | 903 | ret = mbedtls_ecdsa_read_signature(&ecdsa, buf, curve_info->bit_size, | 
|  | 904 | tmp, sig_len)); | 
|  | 905 |  | 
|  | 906 | mbedtls_ecdsa_free(&ecdsa); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 907 | } | 
|  | 908 | } | 
|  | 909 | #endif | 
|  | 910 |  | 
| Janos Follath | 52735ef | 2018-08-15 10:19:16 +0100 | [diff] [blame] | 911 | #if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 912 | if (todo.ecdh) { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 913 | mbedtls_ecdh_context ecdh; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 914 | mbedtls_mpi z; | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 915 | const mbedtls_ecp_curve_info montgomery_curve_list[] = { | 
|  | 916 | #if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) | 
|  | 917 | { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" }, | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 918 | #endif | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 919 | #if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) | 
|  | 920 | { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" }, | 
|  | 921 | #endif | 
|  | 922 | { MBEDTLS_ECP_DP_NONE, 0, 0, 0 } | 
|  | 923 | }; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 924 | const mbedtls_ecp_curve_info *curve_info; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 925 | size_t olen; | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 926 | const mbedtls_ecp_curve_info *selected_montgomery_curve_list = | 
|  | 927 | montgomery_curve_list; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 928 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 929 | if (curve_list == (const mbedtls_ecp_curve_info *) &single_curve) { | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 930 | mbedtls_ecp_group grp; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 931 | mbedtls_ecp_group_init(&grp); | 
|  | 932 | if (mbedtls_ecp_group_load(&grp, curve_list->grp_id) != 0) { | 
|  | 933 | mbedtls_exit(1); | 
|  | 934 | } | 
|  | 935 | if (mbedtls_ecp_get_type(&grp) == MBEDTLS_ECP_TYPE_MONTGOMERY) { | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 936 | selected_montgomery_curve_list = single_curve; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 937 | } else { /* empty list */ | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 938 | selected_montgomery_curve_list = single_curve + 1; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 939 | } | 
|  | 940 | mbedtls_ecp_group_free(&grp); | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 941 | } | 
|  | 942 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 943 | for (curve_info = curve_list; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 944 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 945 | curve_info++) { | 
|  | 946 | if (!mbedtls_ecdh_can_do(curve_info->grp_id)) { | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 947 | continue; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 948 | } | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 949 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 950 | mbedtls_ecdh_init(&ecdh); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 951 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 952 | CHECK_AND_CONTINUE(mbedtls_ecp_group_load(&ecdh.grp, curve_info->grp_id)); | 
|  | 953 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh, &olen, buf, sizeof(buf), | 
|  | 954 | myrand, NULL)); | 
|  | 955 | CHECK_AND_CONTINUE(mbedtls_ecp_copy(&ecdh.Qp, &ecdh.Q)); | 
|  | 956 | ecp_clear_precomputed(&ecdh.grp); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 957 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 958 | mbedtls_snprintf(title, sizeof(title), "ECDHE-%s", | 
|  | 959 | curve_info->name); | 
|  | 960 | TIME_PUBLIC(title, "handshake", | 
|  | 961 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh, &olen, buf, sizeof(buf), | 
|  | 962 | myrand, NULL)); | 
|  | 963 | CHECK_AND_CONTINUE(mbedtls_ecdh_calc_secret(&ecdh, &olen, buf, sizeof(buf), | 
|  | 964 | myrand, NULL))); | 
|  | 965 | mbedtls_ecdh_free(&ecdh); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 966 | } | 
|  | 967 |  | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 968 | /* Montgomery curves need to be handled separately */ | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 969 | for (curve_info = selected_montgomery_curve_list; | 
|  | 970 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
|  | 971 | curve_info++) { | 
|  | 972 | mbedtls_ecdh_init(&ecdh); | 
|  | 973 | mbedtls_mpi_init(&z); | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 974 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 975 | CHECK_AND_CONTINUE(mbedtls_ecp_group_load(&ecdh.grp, curve_info->grp_id)); | 
|  | 976 | 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] | 977 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 978 | mbedtls_snprintf(title, sizeof(title), "ECDHE-%s", | 
|  | 979 | curve_info->name); | 
|  | 980 | TIME_PUBLIC(title, "handshake", | 
|  | 981 | CHECK_AND_CONTINUE(mbedtls_ecdh_gen_public(&ecdh.grp, &ecdh.d, &ecdh.Q, | 
|  | 982 | myrand, NULL)); | 
|  | 983 | CHECK_AND_CONTINUE(mbedtls_ecdh_compute_shared(&ecdh.grp, &z, &ecdh.Qp, | 
|  | 984 | &ecdh.d, | 
|  | 985 | myrand, NULL))); | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 986 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 987 | mbedtls_ecdh_free(&ecdh); | 
|  | 988 | mbedtls_mpi_free(&z); | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 989 | } | 
|  | 990 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 991 | for (curve_info = curve_list; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 992 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 993 | curve_info++) { | 
|  | 994 | if (!mbedtls_ecdh_can_do(curve_info->grp_id)) { | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 995 | continue; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 996 | } | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 997 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 998 | mbedtls_ecdh_init(&ecdh); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 999 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1000 | CHECK_AND_CONTINUE(mbedtls_ecp_group_load(&ecdh.grp, curve_info->grp_id)); | 
|  | 1001 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh, &olen, buf, sizeof(buf), | 
|  | 1002 | myrand, NULL)); | 
|  | 1003 | CHECK_AND_CONTINUE(mbedtls_ecp_copy(&ecdh.Qp, &ecdh.Q)); | 
|  | 1004 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh, &olen, buf, sizeof(buf), | 
|  | 1005 | myrand, NULL)); | 
|  | 1006 | ecp_clear_precomputed(&ecdh.grp); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1007 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1008 | mbedtls_snprintf(title, sizeof(title), "ECDH-%s", | 
|  | 1009 | curve_info->name); | 
|  | 1010 | TIME_PUBLIC(title, "handshake", | 
|  | 1011 | CHECK_AND_CONTINUE(mbedtls_ecdh_calc_secret(&ecdh, &olen, buf, sizeof(buf), | 
|  | 1012 | myrand, NULL))); | 
|  | 1013 | mbedtls_ecdh_free(&ecdh); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1014 | } | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1015 |  | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1016 | /* Montgomery curves need to be handled separately */ | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1017 | for (curve_info = selected_montgomery_curve_list; | 
|  | 1018 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
|  | 1019 | curve_info++) { | 
|  | 1020 | mbedtls_ecdh_init(&ecdh); | 
|  | 1021 | mbedtls_mpi_init(&z); | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1022 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1023 | CHECK_AND_CONTINUE(mbedtls_ecp_group_load(&ecdh.grp, curve_info->grp_id)); | 
|  | 1024 | CHECK_AND_CONTINUE(mbedtls_ecdh_gen_public(&ecdh.grp, &ecdh.d, &ecdh.Qp, | 
|  | 1025 | myrand, NULL)); | 
|  | 1026 | 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] | 1027 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1028 | mbedtls_snprintf(title, sizeof(title), "ECDH-%s", | 
|  | 1029 | curve_info->name); | 
|  | 1030 | TIME_PUBLIC(title, "handshake", | 
|  | 1031 | CHECK_AND_CONTINUE(mbedtls_ecdh_compute_shared(&ecdh.grp, &z, &ecdh.Qp, | 
|  | 1032 | &ecdh.d, | 
|  | 1033 | myrand, NULL))); | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1034 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1035 | mbedtls_ecdh_free(&ecdh); | 
|  | 1036 | mbedtls_mpi_free(&z); | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1037 | } | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1038 | } | 
|  | 1039 | #endif | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1040 |  | 
| Christoph M. Wintersteiger | e50b970 | 2018-12-14 11:03:02 +0000 | [diff] [blame] | 1041 | #if defined(MBEDTLS_ECDH_C) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1042 | if (todo.ecdh) { | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1043 | mbedtls_ecdh_context ecdh_srv, ecdh_cli; | 
|  | 1044 | unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE]; | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1045 | const mbedtls_ecp_curve_info *curve_info; | 
|  | 1046 | size_t olen; | 
|  | 1047 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1048 | for (curve_info = curve_list; | 
|  | 1049 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
|  | 1050 | curve_info++) { | 
|  | 1051 | if (!mbedtls_ecdh_can_do(curve_info->grp_id)) { | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1052 | continue; | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1053 | } | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1054 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1055 | mbedtls_ecdh_init(&ecdh_srv); | 
|  | 1056 | mbedtls_ecdh_init(&ecdh_cli); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1057 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1058 | mbedtls_snprintf(title, sizeof(title), "ECDHE-%s", curve_info->name); | 
|  | 1059 | TIME_PUBLIC(title, | 
|  | 1060 | "full handshake", | 
|  | 1061 | const unsigned char *p_srv = buf_srv; | 
| Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1062 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1063 | CHECK_AND_CONTINUE(mbedtls_ecdh_setup(&ecdh_srv, curve_info->grp_id)); | 
|  | 1064 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_params(&ecdh_srv, &olen, buf_srv, | 
|  | 1065 | sizeof(buf_srv), myrand, NULL)); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1066 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1067 | CHECK_AND_CONTINUE(mbedtls_ecdh_read_params(&ecdh_cli, &p_srv, | 
|  | 1068 | p_srv + olen)); | 
|  | 1069 | CHECK_AND_CONTINUE(mbedtls_ecdh_make_public(&ecdh_cli, &olen, buf_cli, | 
|  | 1070 | sizeof(buf_cli), myrand, NULL)); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1071 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1072 | CHECK_AND_CONTINUE(mbedtls_ecdh_read_public(&ecdh_srv, buf_cli, olen)); | 
|  | 1073 | CHECK_AND_CONTINUE(mbedtls_ecdh_calc_secret(&ecdh_srv, &olen, buf_srv, | 
|  | 1074 | sizeof(buf_srv), myrand, NULL)); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1075 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1076 | CHECK_AND_CONTINUE(mbedtls_ecdh_calc_secret(&ecdh_cli, &olen, buf_cli, | 
|  | 1077 | sizeof(buf_cli), myrand, NULL)); | 
|  | 1078 | mbedtls_ecdh_free(&ecdh_cli); | 
| Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1079 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1080 | mbedtls_ecdh_free(&ecdh_srv); | 
|  | 1081 | ); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1082 |  | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1083 | } | 
|  | 1084 | } | 
|  | 1085 | #endif | 
|  | 1086 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1087 | mbedtls_printf("\n"); | 
| Paul Bakker | 1d4da2e | 2009-10-25 12:36:53 +0000 | [diff] [blame] | 1088 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1089 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) | 
|  | 1090 | mbedtls_memory_buffer_alloc_free(); | 
| Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 1091 | #endif | 
|  | 1092 |  | 
| Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 1093 | #if defined(_WIN32) | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1094 | mbedtls_printf("  Press Enter to exit this program.\n"); | 
|  | 1095 | fflush(stdout); getchar(); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1096 | #endif | 
|  | 1097 |  | 
| Gilles Peskine | 1b6c09a | 2023-01-11 14:52:35 +0100 | [diff] [blame] | 1098 | mbedtls_exit(0); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1099 | } | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1100 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1101 | #endif /* MBEDTLS_TIMING_C */ |