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 | |
Mateusz Starzyk | 6c2e9b6 | 2021-05-19 17:54:54 +0200 | [diff] [blame] | 20 | #define MBEDTLS_ALLOW_PRIVATE_ACCESS |
| 21 | |
Bence Szépkúti | c662b36 | 2021-05-27 11:25:03 +0200 | [diff] [blame] | 22 | #include "mbedtls/build_info.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 23 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 24 | #include "mbedtls/platform.h" |
Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 25 | |
Andrzej Kurek | 6056e7a | 2022-03-02 12:01:10 -0500 | [diff] [blame] | 26 | #if !defined(MBEDTLS_HAVE_TIME) |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 27 | int main( void ) |
| 28 | { |
Andrzej Kurek | 6056e7a | 2022-03-02 12:01:10 -0500 | [diff] [blame] | 29 | mbedtls_printf("MBEDTLS_HAVE_TIME not defined.\n"); |
k-stachowiak | 776521a | 2019-05-23 09:46:47 +0200 | [diff] [blame] | 30 | mbedtls_exit( 0 ); |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 31 | } |
| 32 | #else |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 33 | |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 34 | #include <string.h> |
Manuel Pégourié-Gonnard | 7551cb9 | 2015-05-26 16:04:06 +0200 | [diff] [blame] | 35 | #include <stdlib.h> |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 36 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 37 | #include "mbedtls/md5.h" |
| 38 | #include "mbedtls/ripemd160.h" |
| 39 | #include "mbedtls/sha1.h" |
| 40 | #include "mbedtls/sha256.h" |
| 41 | #include "mbedtls/sha512.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 42 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 43 | #include "mbedtls/des.h" |
| 44 | #include "mbedtls/aes.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 45 | #include "mbedtls/aria.h" |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 46 | #include "mbedtls/camellia.h" |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 47 | #include "mbedtls/chacha20.h" |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 48 | #include "mbedtls/gcm.h" |
| 49 | #include "mbedtls/ccm.h" |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 50 | #include "mbedtls/chachapoly.h" |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 51 | #include "mbedtls/cmac.h" |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 52 | #include "mbedtls/poly1305.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 53 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 54 | #include "mbedtls/ctr_drbg.h" |
| 55 | #include "mbedtls/hmac_drbg.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 56 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 57 | #include "mbedtls/rsa.h" |
| 58 | #include "mbedtls/dhm.h" |
| 59 | #include "mbedtls/ecdsa.h" |
| 60 | #include "mbedtls/ecdh.h" |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 61 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 62 | #include "mbedtls/error.h" |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 63 | |
David Horstmann | e3d8f31 | 2023-01-03 11:07:09 +0000 | [diff] [blame^] | 64 | /* *INDENT-OFF* */ |
TRodziewicz | 90f304f | 2021-06-11 11:56:47 +0200 | [diff] [blame] | 65 | #ifndef asm |
| 66 | #define asm __asm |
| 67 | #endif |
David Horstmann | e3d8f31 | 2023-01-03 11:07:09 +0000 | [diff] [blame^] | 68 | /* *INDENT-ON* */ |
TRodziewicz | 90f304f | 2021-06-11 11:56:47 +0200 | [diff] [blame] | 69 | |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 70 | #if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32) |
| 71 | |
| 72 | #include <windows.h> |
| 73 | #include <process.h> |
| 74 | |
| 75 | struct _hr_time |
| 76 | { |
| 77 | LARGE_INTEGER start; |
| 78 | }; |
| 79 | |
| 80 | #else |
| 81 | |
| 82 | #include <unistd.h> |
| 83 | #include <sys/types.h> |
| 84 | #include <sys/time.h> |
| 85 | #include <signal.h> |
| 86 | #include <time.h> |
| 87 | |
| 88 | struct _hr_time |
| 89 | { |
| 90 | struct timeval start; |
| 91 | }; |
| 92 | |
| 93 | #endif /* _WIN32 && !EFIX64 && !EFI32 */ |
| 94 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 95 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 96 | #include "mbedtls/memory_buffer_alloc.h" |
Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 97 | #endif |
| 98 | |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 99 | static void mbedtls_set_alarm( int seconds ); |
| 100 | |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 101 | /* |
| 102 | * For heap usage estimates, we need an estimate of the overhead per allocated |
| 103 | * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block, |
| 104 | * so use that as our baseline. |
| 105 | */ |
| 106 | #define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) ) |
| 107 | |
| 108 | /* |
Manuel Pégourié-Gonnard | b2a18a2 | 2015-05-27 16:29:56 +0200 | [diff] [blame] | 109 | * 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] | 110 | */ |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 111 | #define HEAP_SIZE (1u << 16) /* 64k */ |
Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 112 | |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 113 | #define BUFSIZE 1024 |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 114 | #define HEADER_FORMAT " %-24s : " |
Gergely Budai | a5d336b | 2014-01-27 23:27:06 +0100 | [diff] [blame] | 115 | #define TITLE_LEN 25 |
Manuel Pégourié-Gonnard | 6c5abfa | 2015-02-13 14:12:07 +0000 | [diff] [blame] | 116 | |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 117 | #define OPTIONS \ |
TRodziewicz | 10e8cf5 | 2021-05-31 17:58:57 +0200 | [diff] [blame] | 118 | "md5, ripemd160, sha1, sha256, sha512,\n" \ |
| 119 | "des3, des, camellia, chacha20,\n" \ |
Zhai Zhaoxuan | e22da99 | 2020-05-09 23:50:32 +0800 | [diff] [blame] | 120 | "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \ |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 121 | "aes_cmac, des3_cmac, poly1305\n" \ |
Mateusz Starzyk | 0fdcc8e | 2021-01-29 16:46:31 +0100 | [diff] [blame] | 122 | "ctr_drbg, hmac_drbg\n" \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 123 | "rsa, dhm, ecdsa, ecdh.\n" |
| 124 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 125 | #if defined(MBEDTLS_ERROR_C) |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 126 | #define PRINT_ERROR \ |
Simon Butcher | b981b16 | 2016-10-06 10:27:22 +0100 | [diff] [blame] | 127 | mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 128 | mbedtls_printf( "FAILED: %s\n", tmp ); |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 129 | #else |
| 130 | #define PRINT_ERROR \ |
Kenneth Soerensen | 518d435 | 2020-04-01 17:22:45 +0200 | [diff] [blame] | 131 | mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret ); |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 132 | #endif |
| 133 | |
| 134 | #define TIME_AND_TSC( TITLE, CODE ) \ |
| 135 | do { \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 136 | unsigned long ii, jj, tsc; \ |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 137 | int ret = 0; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 138 | \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 139 | mbedtls_printf( HEADER_FORMAT, TITLE ); \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 140 | fflush( stdout ); \ |
| 141 | \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 142 | mbedtls_set_alarm( 1 ); \ |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 143 | for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 144 | { \ |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 145 | ret = CODE; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 146 | } \ |
| 147 | \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 148 | tsc = mbedtls_timing_hardclock(); \ |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 149 | for( jj = 0; ret == 0 && jj < 1024; jj++ ) \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 150 | { \ |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 151 | ret = CODE; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 152 | } \ |
| 153 | \ |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 154 | if( ret != 0 ) \ |
| 155 | { \ |
| 156 | PRINT_ERROR; \ |
| 157 | } \ |
| 158 | else \ |
| 159 | { \ |
| 160 | mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \ |
| 161 | ii * BUFSIZE / 1024, \ |
| 162 | ( mbedtls_timing_hardclock() - tsc ) \ |
| 163 | / ( jj * BUFSIZE ) ); \ |
| 164 | } \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 165 | } while( 0 ) |
| 166 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 167 | #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] | 168 | |
Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 169 | /* How much space to reserve for the title when printing heap usage results. |
| 170 | * Updated manually as the output of the following command: |
| 171 | * |
| 172 | * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c | |
Manuel Pégourié-Gonnard | bf5b46c | 2022-01-05 10:34:17 +0100 | [diff] [blame] | 173 | * awk '{print length+3}' | sort -rn | head -n1 |
Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 174 | * |
Manuel Pégourié-Gonnard | bf5b46c | 2022-01-05 10:34:17 +0100 | [diff] [blame] | 175 | * This computes the maximum length of a title +3, because we appends "/s" and |
| 176 | * want at least one space. (If the value is too small, the only consequence |
Shaun Case | 8b0ecbc | 2021-12-20 21:14:10 -0800 | [diff] [blame] | 177 | * is poor alignment.) */ |
Manuel Pégourié-Gonnard | bf5b46c | 2022-01-05 10:34:17 +0100 | [diff] [blame] | 178 | #define TITLE_SPACE 17 |
Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 179 | |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 180 | #define MEMORY_MEASURE_INIT \ |
| 181 | size_t max_used, max_blocks, max_bytes; \ |
| 182 | size_t prv_used, prv_blocks; \ |
Manuel Pégourié-Gonnard | 6ced002 | 2022-01-05 10:05:54 +0100 | [diff] [blame] | 183 | size_t alloc_cnt, free_cnt, prv_alloc, prv_free; \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 184 | mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 185 | mbedtls_memory_buffer_alloc_max_reset( ); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 186 | |
Manuel Pégourié-Gonnard | c405544 | 2022-01-04 10:24:01 +0100 | [diff] [blame] | 187 | #define MEMORY_MEASURE_RESET \ |
Manuel Pégourié-Gonnard | 6ced002 | 2022-01-05 10:05:54 +0100 | [diff] [blame] | 188 | mbedtls_memory_buffer_alloc_count_get( &prv_alloc, &prv_free ); |
Manuel Pégourié-Gonnard | c405544 | 2022-01-04 10:24:01 +0100 | [diff] [blame] | 189 | |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 190 | #define MEMORY_MEASURE_PRINT( title_len ) \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 191 | mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \ |
Manuel Pégourié-Gonnard | c405544 | 2022-01-04 10:24:01 +0100 | [diff] [blame] | 192 | mbedtls_memory_buffer_alloc_count_get( &alloc_cnt, &free_cnt ); \ |
Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 193 | ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \ |
| 194 | while( ii-- ) mbedtls_printf( " " ); \ |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 195 | max_used -= prv_used; \ |
| 196 | max_blocks -= prv_blocks; \ |
| 197 | max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \ |
Manuel Pégourié-Gonnard | c405544 | 2022-01-04 10:24:01 +0100 | [diff] [blame] | 198 | mbedtls_printf( "%6u heap bytes, %6u allocs", \ |
Manuel Pégourié-Gonnard | 6ced002 | 2022-01-05 10:05:54 +0100 | [diff] [blame] | 199 | (unsigned) max_bytes, \ |
| 200 | (unsigned)( alloc_cnt - prv_alloc ) ); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 201 | |
| 202 | #else |
Manuel Pégourié-Gonnard | e579dab | 2015-01-29 16:28:44 +0000 | [diff] [blame] | 203 | #define MEMORY_MEASURE_INIT |
Manuel Pégourié-Gonnard | c405544 | 2022-01-04 10:24:01 +0100 | [diff] [blame] | 204 | #define MEMORY_MEASURE_RESET |
Manuel Pégourié-Gonnard | e579dab | 2015-01-29 16:28:44 +0000 | [diff] [blame] | 205 | #define MEMORY_MEASURE_PRINT( title_len ) |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 206 | #endif |
| 207 | |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 208 | #define TIME_PUBLIC( TITLE, TYPE, CODE ) \ |
| 209 | do { \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 210 | unsigned long ii; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 211 | int ret; \ |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 212 | MEMORY_MEASURE_INIT; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 213 | \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 214 | mbedtls_printf( HEADER_FORMAT, TITLE ); \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 215 | fflush( stdout ); \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 216 | mbedtls_set_alarm( 3 ); \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 217 | \ |
| 218 | ret = 0; \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 219 | for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 220 | { \ |
Manuel Pégourié-Gonnard | c405544 | 2022-01-04 10:24:01 +0100 | [diff] [blame] | 221 | MEMORY_MEASURE_RESET; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 222 | CODE; \ |
| 223 | } \ |
| 224 | \ |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 225 | if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \ |
| 226 | { \ |
| 227 | mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \ |
| 228 | ret = 0; \ |
| 229 | } \ |
| 230 | else if( ret != 0 ) \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 231 | { \ |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 232 | PRINT_ERROR; \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 233 | } \ |
| 234 | else \ |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 235 | { \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 236 | mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \ |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 237 | MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \ |
Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 238 | mbedtls_printf( "\n" ); \ |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 239 | } \ |
Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 240 | } while( 0 ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 241 | |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 242 | #if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \ |
| 243 | ( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__) |
| 244 | |
| 245 | #define HAVE_HARDCLOCK |
| 246 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 247 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 248 | { |
| 249 | unsigned long tsc; |
| 250 | __asm rdtsc |
| 251 | __asm mov [tsc], eax |
| 252 | return( tsc ); |
| 253 | } |
| 254 | #endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM && |
| 255 | ( _MSC_VER && _M_IX86 ) || __WATCOMC__ */ |
| 256 | |
| 257 | /* some versions of mingw-64 have 32-bit longs even on x84_64 */ |
| 258 | #if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \ |
| 259 | defined(__GNUC__) && ( defined(__i386__) || ( \ |
| 260 | ( defined(__amd64__) || defined( __x86_64__) ) && __SIZEOF_LONG__ == 4 ) ) |
| 261 | |
| 262 | #define HAVE_HARDCLOCK |
| 263 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 264 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 265 | { |
| 266 | unsigned long lo, hi; |
| 267 | asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) ); |
| 268 | return( lo ); |
| 269 | } |
| 270 | #endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM && |
| 271 | __GNUC__ && __i386__ */ |
| 272 | |
| 273 | #if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \ |
| 274 | defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) ) |
| 275 | |
| 276 | #define HAVE_HARDCLOCK |
| 277 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 278 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 279 | { |
| 280 | unsigned long lo, hi; |
| 281 | asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) ); |
| 282 | return( lo | ( hi << 32 ) ); |
| 283 | } |
| 284 | #endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM && |
| 285 | __GNUC__ && ( __amd64__ || __x86_64__ ) */ |
| 286 | |
| 287 | #if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \ |
| 288 | defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) ) |
| 289 | |
| 290 | #define HAVE_HARDCLOCK |
| 291 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 292 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 293 | { |
| 294 | unsigned long tbl, tbu0, tbu1; |
| 295 | |
| 296 | do |
| 297 | { |
| 298 | asm volatile( "mftbu %0" : "=r" (tbu0) ); |
| 299 | asm volatile( "mftb %0" : "=r" (tbl ) ); |
| 300 | asm volatile( "mftbu %0" : "=r" (tbu1) ); |
| 301 | } |
| 302 | while( tbu0 != tbu1 ); |
| 303 | |
| 304 | return( tbl ); |
| 305 | } |
| 306 | #endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM && |
| 307 | __GNUC__ && ( __powerpc__ || __ppc__ ) */ |
| 308 | |
| 309 | #if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \ |
| 310 | defined(__GNUC__) && defined(__sparc64__) |
| 311 | |
| 312 | #if defined(__OpenBSD__) |
| 313 | #warning OpenBSD does not allow access to tick register using software version instead |
| 314 | #else |
| 315 | #define HAVE_HARDCLOCK |
| 316 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 317 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 318 | { |
| 319 | unsigned long tick; |
| 320 | asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) ); |
| 321 | return( tick ); |
| 322 | } |
| 323 | #endif /* __OpenBSD__ */ |
| 324 | #endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM && |
| 325 | __GNUC__ && __sparc64__ */ |
| 326 | |
| 327 | #if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \ |
| 328 | defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__) |
| 329 | |
| 330 | #define HAVE_HARDCLOCK |
| 331 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 332 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 333 | { |
| 334 | unsigned long tick; |
| 335 | asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" ); |
| 336 | asm volatile( "mov %%g1, %0" : "=r" (tick) ); |
| 337 | return( tick ); |
| 338 | } |
| 339 | #endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM && |
| 340 | __GNUC__ && __sparc__ && !__sparc64__ */ |
| 341 | |
| 342 | #if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \ |
| 343 | defined(__GNUC__) && defined(__alpha__) |
| 344 | |
| 345 | #define HAVE_HARDCLOCK |
| 346 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 347 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 348 | { |
| 349 | unsigned long cc; |
| 350 | asm volatile( "rpcc %0" : "=r" (cc) ); |
| 351 | return( cc & 0xFFFFFFFF ); |
| 352 | } |
| 353 | #endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM && |
| 354 | __GNUC__ && __alpha__ */ |
| 355 | |
| 356 | #if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \ |
| 357 | defined(__GNUC__) && defined(__ia64__) |
| 358 | |
| 359 | #define HAVE_HARDCLOCK |
| 360 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 361 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 362 | { |
| 363 | unsigned long itc; |
| 364 | asm volatile( "mov %0 = ar.itc" : "=r" (itc) ); |
| 365 | return( itc ); |
| 366 | } |
| 367 | #endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM && |
| 368 | __GNUC__ && __ia64__ */ |
| 369 | |
| 370 | #if !defined(HAVE_HARDCLOCK) && defined(_MSC_VER) && \ |
| 371 | !defined(EFIX64) && !defined(EFI32) |
| 372 | |
| 373 | #define HAVE_HARDCLOCK |
| 374 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 375 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 376 | { |
| 377 | LARGE_INTEGER offset; |
| 378 | |
| 379 | QueryPerformanceCounter( &offset ); |
| 380 | |
| 381 | return( (unsigned long)( offset.QuadPart ) ); |
| 382 | } |
| 383 | #endif /* !HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */ |
| 384 | |
| 385 | #if !defined(HAVE_HARDCLOCK) |
| 386 | |
| 387 | #define HAVE_HARDCLOCK |
| 388 | |
| 389 | static int hardclock_init = 0; |
| 390 | static struct timeval tv_init; |
| 391 | |
TRodziewicz | 9a9609e | 2021-06-11 13:35:10 +0200 | [diff] [blame] | 392 | static unsigned long mbedtls_timing_hardclock( void ) |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 393 | { |
| 394 | struct timeval tv_cur; |
| 395 | |
| 396 | if( hardclock_init == 0 ) |
| 397 | { |
| 398 | gettimeofday( &tv_init, NULL ); |
| 399 | hardclock_init = 1; |
| 400 | } |
| 401 | |
| 402 | gettimeofday( &tv_cur, NULL ); |
Dave Rodgman | 7796cc4 | 2022-12-20 13:12:23 +0000 | [diff] [blame] | 403 | return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000U |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 404 | + ( tv_cur.tv_usec - tv_init.tv_usec ) ); |
| 405 | } |
| 406 | #endif /* !HAVE_HARDCLOCK */ |
| 407 | |
| 408 | volatile int mbedtls_timing_alarmed = 0; |
| 409 | |
| 410 | #if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32) |
| 411 | |
| 412 | /* It's OK to use a global because alarm() is supposed to be global anyway */ |
| 413 | static DWORD alarmMs; |
| 414 | |
| 415 | static void TimerProc( void *TimerContext ) |
| 416 | { |
| 417 | (void) TimerContext; |
| 418 | Sleep( alarmMs ); |
| 419 | mbedtls_timing_alarmed = 1; |
| 420 | /* _endthread will be called implicitly on return |
Tom Cosgrove | 1797b05 | 2022-12-04 17:19:59 +0000 | [diff] [blame] | 421 | * That ensures execution of thread function's epilogue */ |
TRodziewicz | d854083 | 2021-06-10 15:16:50 +0200 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | static void mbedtls_set_alarm( int seconds ) |
| 425 | { |
| 426 | if( seconds == 0 ) |
| 427 | { |
| 428 | /* No need to create a thread for this simple case. |
| 429 | * Also, this shorcut is more reliable at least on MinGW32 */ |
| 430 | mbedtls_timing_alarmed = 1; |
| 431 | return; |
| 432 | } |
| 433 | |
| 434 | mbedtls_timing_alarmed = 0; |
| 435 | alarmMs = seconds * 1000; |
| 436 | (void) _beginthread( TimerProc, 0, NULL ); |
| 437 | } |
| 438 | |
| 439 | #else /* _WIN32 && !EFIX64 && !EFI32 */ |
| 440 | |
| 441 | static void sighandler( int signum ) |
| 442 | { |
| 443 | mbedtls_timing_alarmed = 1; |
| 444 | signal( signum, sighandler ); |
| 445 | } |
| 446 | |
| 447 | static void mbedtls_set_alarm( int seconds ) |
| 448 | { |
| 449 | mbedtls_timing_alarmed = 0; |
| 450 | signal( SIGALRM, sighandler ); |
| 451 | alarm( seconds ); |
| 452 | if( seconds == 0 ) |
| 453 | { |
| 454 | /* alarm(0) cancelled any previous pending alarm, but the |
| 455 | handler won't fire, so raise the flag straight away. */ |
| 456 | mbedtls_timing_alarmed = 1; |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | #endif /* _WIN32 && !EFIX64 && !EFI32 */ |
| 461 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 462 | static int myrand( void *rng_state, unsigned char *output, size_t len ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 463 | { |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 464 | size_t use_len; |
| 465 | int rnd; |
| 466 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 467 | if( rng_state != NULL ) |
| 468 | rng_state = NULL; |
| 469 | |
Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 470 | while( len > 0 ) |
| 471 | { |
| 472 | use_len = len; |
| 473 | if( use_len > sizeof(int) ) |
| 474 | use_len = sizeof(int); |
| 475 | |
| 476 | rnd = rand(); |
| 477 | memcpy( output, &rnd, use_len ); |
| 478 | output += use_len; |
| 479 | len -= use_len; |
| 480 | } |
| 481 | |
| 482 | return( 0 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 483 | } |
| 484 | |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 485 | #define CHECK_AND_CONTINUE( R ) \ |
| 486 | { \ |
Gilles Peskine | b14c4a5 | 2019-02-11 18:23:42 +0100 | [diff] [blame] | 487 | int CHECK_AND_CONTINUE_ret = ( R ); \ |
| 488 | if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \ |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 489 | mbedtls_printf( "Feature not supported. Skipping.\n" ); \ |
| 490 | continue; \ |
| 491 | } \ |
Gilles Peskine | b14c4a5 | 2019-02-11 18:23:42 +0100 | [diff] [blame] | 492 | else if( CHECK_AND_CONTINUE_ret != 0 ) { \ |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 493 | mbedtls_exit( 1 ); \ |
| 494 | } \ |
| 495 | } |
Christoph M. Wintersteiger | 3dca1a4 | 2018-12-14 11:54:59 +0000 | [diff] [blame] | 496 | |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 497 | #if defined(MBEDTLS_ECP_C) |
| 498 | static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve ) |
| 499 | { |
| 500 | const mbedtls_ecp_curve_info *found = |
| 501 | mbedtls_ecp_curve_info_from_name( string ); |
| 502 | if( found != NULL ) |
| 503 | { |
| 504 | *curve = *found; |
| 505 | return( 1 ); |
| 506 | } |
| 507 | else |
| 508 | return( 0 ); |
| 509 | } |
| 510 | #endif |
| 511 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 512 | unsigned char buf[BUFSIZE]; |
| 513 | |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 514 | typedef struct { |
TRodziewicz | 10e8cf5 | 2021-05-31 17:58:57 +0200 | [diff] [blame] | 515 | char md5, ripemd160, sha1, sha256, sha512, |
| 516 | des3, des, |
Manuel Pégourié-Gonnard | 0dadba2 | 2018-06-19 11:11:15 +0200 | [diff] [blame] | 517 | aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly, |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 518 | aes_cmac, des3_cmac, |
TRodziewicz | 10e8cf5 | 2021-05-31 17:58:57 +0200 | [diff] [blame] | 519 | aria, camellia, chacha20, |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 520 | poly1305, |
Mateusz Starzyk | 0fdcc8e | 2021-01-29 16:46:31 +0100 | [diff] [blame] | 521 | ctr_drbg, hmac_drbg, |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 522 | rsa, dhm, ecdsa, ecdh; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 523 | } todo_list; |
| 524 | |
Simon Butcher | 63cb97e | 2018-12-06 17:43:31 +0000 | [diff] [blame] | 525 | |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 526 | int main( int argc, char *argv[] ) |
Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 527 | { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 528 | int i; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 529 | unsigned char tmp[200]; |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 530 | char title[TITLE_LEN]; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 531 | todo_list todo; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 532 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
Manuel Pégourié-Gonnard | b2a18a2 | 2015-05-27 16:29:56 +0200 | [diff] [blame] | 533 | unsigned char alloc_buf[HEAP_SIZE] = { 0 }; |
Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 534 | #endif |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 535 | #if defined(MBEDTLS_ECP_C) |
| 536 | mbedtls_ecp_curve_info single_curve[2] = { |
| 537 | { MBEDTLS_ECP_DP_NONE, 0, 0, NULL }, |
| 538 | { MBEDTLS_ECP_DP_NONE, 0, 0, NULL }, |
| 539 | }; |
| 540 | const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( ); |
| 541 | #endif |
| 542 | |
| 543 | #if defined(MBEDTLS_ECP_C) |
| 544 | (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */ |
| 545 | #endif |
Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 546 | |
Manuel Pégourié-Gonnard | c439e7b | 2015-03-03 13:12:00 +0000 | [diff] [blame] | 547 | if( argc <= 1 ) |
| 548 | { |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 549 | memset( &todo, 1, sizeof( todo ) ); |
Manuel Pégourié-Gonnard | c439e7b | 2015-03-03 13:12:00 +0000 | [diff] [blame] | 550 | } |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 551 | else |
| 552 | { |
| 553 | memset( &todo, 0, sizeof( todo ) ); |
| 554 | |
| 555 | for( i = 1; i < argc; i++ ) |
| 556 | { |
TRodziewicz | 10e8cf5 | 2021-05-31 17:58:57 +0200 | [diff] [blame] | 557 | if( strcmp( argv[i], "md5" ) == 0 ) |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 558 | todo.md5 = 1; |
| 559 | else if( strcmp( argv[i], "ripemd160" ) == 0 ) |
| 560 | todo.ripemd160 = 1; |
| 561 | else if( strcmp( argv[i], "sha1" ) == 0 ) |
| 562 | todo.sha1 = 1; |
| 563 | else if( strcmp( argv[i], "sha256" ) == 0 ) |
| 564 | todo.sha256 = 1; |
| 565 | else if( strcmp( argv[i], "sha512" ) == 0 ) |
| 566 | todo.sha512 = 1; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 567 | else if( strcmp( argv[i], "des3" ) == 0 ) |
| 568 | todo.des3 = 1; |
| 569 | else if( strcmp( argv[i], "des" ) == 0 ) |
| 570 | todo.des = 1; |
| 571 | else if( strcmp( argv[i], "aes_cbc" ) == 0 ) |
| 572 | todo.aes_cbc = 1; |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 573 | else if( strcmp( argv[i], "aes_xts" ) == 0 ) |
| 574 | todo.aes_xts = 1; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 575 | else if( strcmp( argv[i], "aes_gcm" ) == 0 ) |
| 576 | todo.aes_gcm = 1; |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 577 | else if( strcmp( argv[i], "aes_ccm" ) == 0 ) |
| 578 | todo.aes_ccm = 1; |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 579 | else if( strcmp( argv[i], "chachapoly" ) == 0 ) |
| 580 | todo.chachapoly = 1; |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 581 | else if( strcmp( argv[i], "aes_cmac" ) == 0 ) |
| 582 | todo.aes_cmac = 1; |
| 583 | else if( strcmp( argv[i], "des3_cmac" ) == 0 ) |
| 584 | todo.des3_cmac = 1; |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 585 | else if( strcmp( argv[i], "aria" ) == 0 ) |
| 586 | todo.aria = 1; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 587 | else if( strcmp( argv[i], "camellia" ) == 0 ) |
| 588 | todo.camellia = 1; |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 589 | else if( strcmp( argv[i], "chacha20" ) == 0 ) |
| 590 | todo.chacha20 = 1; |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 591 | else if( strcmp( argv[i], "poly1305" ) == 0 ) |
| 592 | todo.poly1305 = 1; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 593 | else if( strcmp( argv[i], "ctr_drbg" ) == 0 ) |
| 594 | todo.ctr_drbg = 1; |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 595 | else if( strcmp( argv[i], "hmac_drbg" ) == 0 ) |
| 596 | todo.hmac_drbg = 1; |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 597 | else if( strcmp( argv[i], "rsa" ) == 0 ) |
| 598 | todo.rsa = 1; |
| 599 | else if( strcmp( argv[i], "dhm" ) == 0 ) |
| 600 | todo.dhm = 1; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 601 | else if( strcmp( argv[i], "ecdsa" ) == 0 ) |
| 602 | todo.ecdsa = 1; |
| 603 | else if( strcmp( argv[i], "ecdh" ) == 0 ) |
| 604 | todo.ecdh = 1; |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 605 | #if defined(MBEDTLS_ECP_C) |
| 606 | else if( set_ecp_curve( argv[i], single_curve ) ) |
| 607 | curve_list = single_curve; |
| 608 | #endif |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 609 | else |
| 610 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 611 | mbedtls_printf( "Unrecognized option: %s\n", argv[i] ); |
| 612 | mbedtls_printf( "Available options: " OPTIONS ); |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 613 | } |
| 614 | } |
| 615 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 616 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 617 | mbedtls_printf( "\n" ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 618 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 619 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
Manuel Pégourié-Gonnard | b2a18a2 | 2015-05-27 16:29:56 +0200 | [diff] [blame] | 620 | mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) ); |
Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 621 | #endif |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 622 | memset( buf, 0xAA, sizeof( buf ) ); |
Paul Bakker | df71dd1 | 2014-04-17 16:03:48 +0200 | [diff] [blame] | 623 | memset( tmp, 0xBB, sizeof( tmp ) ); |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 624 | |
Manuel Pégourié-Gonnard | a93aa58 | 2022-01-04 09:47:54 +0100 | [diff] [blame] | 625 | /* Avoid "unused static function" warning in configurations without |
| 626 | * symmetric crypto. */ |
Manuel Pégourié-Gonnard | cd4ad0c | 2022-01-05 09:54:37 +0100 | [diff] [blame] | 627 | (void) mbedtls_timing_hardclock; |
Manuel Pégourié-Gonnard | a93aa58 | 2022-01-04 09:47:54 +0100 | [diff] [blame] | 628 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 629 | #if defined(MBEDTLS_MD5_C) |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 630 | if( todo.md5 ) |
TRodziewicz | 26371e4 | 2021-06-08 16:45:41 +0200 | [diff] [blame] | 631 | TIME_AND_TSC( "MD5", mbedtls_md5( buf, BUFSIZE, tmp ) ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 632 | #endif |
| 633 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 634 | #if defined(MBEDTLS_RIPEMD160_C) |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 635 | if( todo.ripemd160 ) |
TRodziewicz | 26371e4 | 2021-06-08 16:45:41 +0200 | [diff] [blame] | 636 | TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160( buf, BUFSIZE, tmp ) ); |
Manuel Pégourié-Gonnard | 01b0b38 | 2014-01-17 14:29:46 +0100 | [diff] [blame] | 637 | #endif |
| 638 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 639 | #if defined(MBEDTLS_SHA1_C) |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 640 | if( todo.sha1 ) |
TRodziewicz | 26371e4 | 2021-06-08 16:45:41 +0200 | [diff] [blame] | 641 | TIME_AND_TSC( "SHA-1", mbedtls_sha1( buf, BUFSIZE, tmp ) ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 642 | #endif |
| 643 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 644 | #if defined(MBEDTLS_SHA256_C) |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 645 | if( todo.sha256 ) |
TRodziewicz | 26371e4 | 2021-06-08 16:45:41 +0200 | [diff] [blame] | 646 | TIME_AND_TSC( "SHA-256", mbedtls_sha256( buf, BUFSIZE, tmp, 0 ) ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 647 | #endif |
| 648 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 649 | #if defined(MBEDTLS_SHA512_C) |
Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 650 | if( todo.sha512 ) |
TRodziewicz | 26371e4 | 2021-06-08 16:45:41 +0200 | [diff] [blame] | 651 | TIME_AND_TSC( "SHA-512", mbedtls_sha512( buf, BUFSIZE, tmp, 0 ) ); |
Paul Bakker | 3a3c3c2 | 2009-02-09 22:33:30 +0000 | [diff] [blame] | 652 | #endif |
| 653 | |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 654 | #if defined(MBEDTLS_DES_C) |
| 655 | #if defined(MBEDTLS_CIPHER_MODE_CBC) |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 656 | if( todo.des3 ) |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 657 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 658 | mbedtls_des3_context des3; |
| 659 | mbedtls_des3_init( &des3 ); |
Gilles Peskine | 7820a57 | 2021-07-07 21:08:28 +0200 | [diff] [blame] | 660 | if( mbedtls_des3_set3key_enc( &des3, tmp ) != 0 ) |
| 661 | mbedtls_exit( 1 ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 662 | TIME_AND_TSC( "3DES", |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 663 | mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); |
| 664 | mbedtls_des3_free( &des3 ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 665 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 666 | |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 667 | if( todo.des ) |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 668 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 669 | mbedtls_des_context des; |
| 670 | mbedtls_des_init( &des ); |
Gilles Peskine | 7820a57 | 2021-07-07 21:08:28 +0200 | [diff] [blame] | 671 | if( mbedtls_des_setkey_enc( &des, tmp ) != 0 ) |
| 672 | mbedtls_exit( 1 ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 673 | TIME_AND_TSC( "DES", |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 674 | mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); |
| 675 | mbedtls_des_free( &des ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 676 | } |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 677 | |
| 678 | #endif /* MBEDTLS_CIPHER_MODE_CBC */ |
| 679 | #if defined(MBEDTLS_CMAC_C) |
| 680 | if( todo.des3_cmac ) |
| 681 | { |
| 682 | unsigned char output[8]; |
| 683 | const mbedtls_cipher_info_t *cipher_info; |
| 684 | |
| 685 | memset( buf, 0, sizeof( buf ) ); |
| 686 | memset( tmp, 0, sizeof( tmp ) ); |
| 687 | |
| 688 | cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB ); |
| 689 | |
| 690 | TIME_AND_TSC( "3DES-CMAC", |
Simon Butcher | b981b16 | 2016-10-06 10:27:22 +0100 | [diff] [blame] | 691 | mbedtls_cipher_cmac( cipher_info, tmp, 192, buf, |
| 692 | BUFSIZE, output ) ); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 693 | } |
| 694 | #endif /* MBEDTLS_CMAC_C */ |
| 695 | #endif /* MBEDTLS_DES_C */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 696 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 697 | #if defined(MBEDTLS_AES_C) |
| 698 | #if defined(MBEDTLS_CIPHER_MODE_CBC) |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 699 | if( todo.aes_cbc ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 700 | { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 701 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 702 | mbedtls_aes_context aes; |
| 703 | mbedtls_aes_init( &aes ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 704 | for( keysize = 128; keysize <= 256; keysize += 64 ) |
| 705 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 706 | mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 707 | |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 708 | memset( buf, 0, sizeof( buf ) ); |
| 709 | memset( tmp, 0, sizeof( tmp ) ); |
Gilles Peskine | 7820a57 | 2021-07-07 21:08:28 +0200 | [diff] [blame] | 710 | CHECK_AND_CONTINUE( mbedtls_aes_setkey_enc( &aes, tmp, keysize ) ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 711 | |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 712 | TIME_AND_TSC( title, |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 713 | 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] | 714 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 715 | mbedtls_aes_free( &aes ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 716 | } |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 717 | #endif |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 718 | #if defined(MBEDTLS_CIPHER_MODE_XTS) |
| 719 | if( todo.aes_xts ) |
| 720 | { |
| 721 | int keysize; |
Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 722 | mbedtls_aes_xts_context ctx; |
| 723 | |
| 724 | mbedtls_aes_xts_init( &ctx ); |
| 725 | for( keysize = 128; keysize <= 256; keysize += 128 ) |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 726 | { |
| 727 | mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize ); |
| 728 | |
| 729 | memset( buf, 0, sizeof( buf ) ); |
| 730 | memset( tmp, 0, sizeof( tmp ) ); |
Gilles Peskine | 7820a57 | 2021-07-07 21:08:28 +0200 | [diff] [blame] | 731 | CHECK_AND_CONTINUE( mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 ) ); |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 732 | |
| 733 | TIME_AND_TSC( title, |
Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 734 | mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE, |
| 735 | tmp, buf, buf ) ); |
| 736 | |
| 737 | mbedtls_aes_xts_free( &ctx ); |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 738 | } |
Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 739 | } |
| 740 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 741 | #if defined(MBEDTLS_GCM_C) |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 742 | if( todo.aes_gcm ) |
Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 743 | { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 744 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 745 | mbedtls_gcm_context gcm; |
Manuel Pégourié-Gonnard | c34e8dd | 2015-04-28 21:42:17 +0200 | [diff] [blame] | 746 | |
| 747 | mbedtls_gcm_init( &gcm ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 748 | for( keysize = 128; keysize <= 256; keysize += 64 ) |
| 749 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 750 | mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize ); |
Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 751 | |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 752 | memset( buf, 0, sizeof( buf ) ); |
| 753 | memset( tmp, 0, sizeof( tmp ) ); |
Manuel Pégourié-Gonnard | c34e8dd | 2015-04-28 21:42:17 +0200 | [diff] [blame] | 754 | mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize ); |
Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 755 | |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 756 | TIME_AND_TSC( title, |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 757 | mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp, |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 758 | 12, NULL, 0, buf, buf, 16, tmp ) ); |
Paul Bakker | f70fe81 | 2013-12-16 16:43:10 +0100 | [diff] [blame] | 759 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 760 | mbedtls_gcm_free( &gcm ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 761 | } |
Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 762 | } |
| 763 | #endif |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 764 | #if defined(MBEDTLS_CCM_C) |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 765 | if( todo.aes_ccm ) |
| 766 | { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 767 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 768 | mbedtls_ccm_context ccm; |
Manuel Pégourié-Gonnard | 6963ff0 | 2015-04-28 18:02:54 +0200 | [diff] [blame] | 769 | |
| 770 | mbedtls_ccm_init( &ccm ); |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 771 | for( keysize = 128; keysize <= 256; keysize += 64 ) |
| 772 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 773 | mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize ); |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 774 | |
| 775 | memset( buf, 0, sizeof( buf ) ); |
| 776 | memset( tmp, 0, sizeof( tmp ) ); |
Manuel Pégourié-Gonnard | 6963ff0 | 2015-04-28 18:02:54 +0200 | [diff] [blame] | 777 | mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize ); |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 778 | |
| 779 | TIME_AND_TSC( title, |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 780 | mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp, |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 781 | 12, NULL, 0, buf, buf, tmp, 16 ) ); |
| 782 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 783 | mbedtls_ccm_free( &ccm ); |
Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 784 | } |
| 785 | } |
| 786 | #endif |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 787 | #if defined(MBEDTLS_CHACHAPOLY_C) |
| 788 | if( todo.chachapoly ) |
| 789 | { |
| 790 | mbedtls_chachapoly_context chachapoly; |
| 791 | |
| 792 | mbedtls_chachapoly_init( &chachapoly ); |
| 793 | memset( buf, 0, sizeof( buf ) ); |
| 794 | memset( tmp, 0, sizeof( tmp ) ); |
| 795 | |
| 796 | mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" ); |
| 797 | |
| 798 | mbedtls_chachapoly_setkey( &chachapoly, tmp ); |
| 799 | |
| 800 | TIME_AND_TSC( title, |
Manuel Pégourié-Gonnard | 3dc62a0 | 2018-06-04 12:18:19 +0200 | [diff] [blame] | 801 | mbedtls_chachapoly_encrypt_and_tag( &chachapoly, |
| 802 | BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) ); |
Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 803 | |
| 804 | mbedtls_chachapoly_free( &chachapoly ); |
| 805 | } |
| 806 | #endif |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 807 | #if defined(MBEDTLS_CMAC_C) |
| 808 | if( todo.aes_cmac ) |
| 809 | { |
| 810 | unsigned char output[16]; |
| 811 | const mbedtls_cipher_info_t *cipher_info; |
| 812 | mbedtls_cipher_type_t cipher_type; |
| 813 | int keysize; |
| 814 | |
| 815 | for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB; |
| 816 | keysize <= 256; |
| 817 | keysize += 64, cipher_type++ ) |
| 818 | { |
| 819 | mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize ); |
| 820 | |
| 821 | memset( buf, 0, sizeof( buf ) ); |
| 822 | memset( tmp, 0, sizeof( tmp ) ); |
| 823 | |
| 824 | cipher_info = mbedtls_cipher_info_from_type( cipher_type ); |
| 825 | |
| 826 | TIME_AND_TSC( title, |
Andres AG | a592dcc | 2016-10-06 15:23:39 +0100 | [diff] [blame] | 827 | mbedtls_cipher_cmac( cipher_info, tmp, keysize, |
| 828 | buf, BUFSIZE, output ) ); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 829 | } |
| 830 | |
| 831 | memset( buf, 0, sizeof( buf ) ); |
| 832 | memset( tmp, 0, sizeof( tmp ) ); |
| 833 | TIME_AND_TSC( "AES-CMAC-PRF-128", |
Simon Butcher | b981b16 | 2016-10-06 10:27:22 +0100 | [diff] [blame] | 834 | mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE, |
| 835 | output ) ); |
Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 836 | } |
| 837 | #endif /* MBEDTLS_CMAC_C */ |
| 838 | #endif /* MBEDTLS_AES_C */ |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 839 | |
Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 840 | #if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC) |
| 841 | if( todo.aria ) |
| 842 | { |
| 843 | int keysize; |
| 844 | mbedtls_aria_context aria; |
| 845 | mbedtls_aria_init( &aria ); |
| 846 | for( keysize = 128; keysize <= 256; keysize += 64 ) |
| 847 | { |
| 848 | mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize ); |
| 849 | |
| 850 | memset( buf, 0, sizeof( buf ) ); |
| 851 | memset( tmp, 0, sizeof( tmp ) ); |
| 852 | mbedtls_aria_setkey_enc( &aria, tmp, keysize ); |
| 853 | |
| 854 | TIME_AND_TSC( title, |
| 855 | mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT, |
| 856 | BUFSIZE, tmp, buf, buf ) ); |
| 857 | } |
| 858 | mbedtls_aria_free( &aria ); |
| 859 | } |
| 860 | #endif |
| 861 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 862 | #if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC) |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 863 | if( todo.camellia ) |
Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 864 | { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 865 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 866 | mbedtls_camellia_context camellia; |
| 867 | mbedtls_camellia_init( &camellia ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 868 | for( keysize = 128; keysize <= 256; keysize += 64 ) |
| 869 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 870 | mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize ); |
Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 871 | |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 872 | memset( buf, 0, sizeof( buf ) ); |
| 873 | memset( tmp, 0, sizeof( tmp ) ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 874 | mbedtls_camellia_setkey_enc( &camellia, tmp, keysize ); |
Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 875 | |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 876 | TIME_AND_TSC( title, |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 877 | mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT, |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 878 | BUFSIZE, tmp, buf, buf ) ); |
| 879 | } |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 880 | mbedtls_camellia_free( &camellia ); |
Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 881 | } |
| 882 | #endif |
| 883 | |
Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 884 | #if defined(MBEDTLS_CHACHA20_C) |
| 885 | if ( todo.chacha20 ) |
| 886 | { |
| 887 | TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) ); |
| 888 | } |
| 889 | #endif |
| 890 | |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 891 | #if defined(MBEDTLS_POLY1305_C) |
| 892 | if ( todo.poly1305 ) |
| 893 | { |
Manuel Pégourié-Gonnard | b1ac5e7 | 2018-05-09 09:25:00 +0200 | [diff] [blame] | 894 | TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) ); |
Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 895 | } |
| 896 | #endif |
| 897 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 898 | #if defined(MBEDTLS_CTR_DRBG_C) |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 899 | if( todo.ctr_drbg ) |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 900 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 901 | mbedtls_ctr_drbg_context ctr_drbg; |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 902 | |
Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 903 | mbedtls_ctr_drbg_init( &ctr_drbg ); |
Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 904 | 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] | 905 | mbedtls_exit(1); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 906 | TIME_AND_TSC( "CTR_DRBG (NOPR)", |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 907 | mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) ); |
Gilles Peskine | db0cb25 | 2019-10-28 17:28:46 +0100 | [diff] [blame] | 908 | mbedtls_ctr_drbg_free( &ctr_drbg ); |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 909 | |
Gilles Peskine | db0cb25 | 2019-10-28 17:28:46 +0100 | [diff] [blame] | 910 | mbedtls_ctr_drbg_init( &ctr_drbg ); |
Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 911 | 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] | 912 | mbedtls_exit(1); |
| 913 | mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 914 | TIME_AND_TSC( "CTR_DRBG (PR)", |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 915 | mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 916 | mbedtls_ctr_drbg_free( &ctr_drbg ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 917 | } |
Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 918 | #endif |
| 919 | |
Andrzej Kurek | 6832774 | 2022-10-03 06:18:18 -0400 | [diff] [blame] | 920 | #if defined(MBEDTLS_HMAC_DRBG_C) && \ |
| 921 | ( defined(MBEDTLS_SHA1_C) || defined(MBEDTLS_SHA256_C) ) |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 922 | if( todo.hmac_drbg ) |
| 923 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 924 | mbedtls_hmac_drbg_context hmac_drbg; |
| 925 | const mbedtls_md_info_t *md_info; |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 926 | |
Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 927 | mbedtls_hmac_drbg_init( &hmac_drbg ); |
| 928 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 929 | #if defined(MBEDTLS_SHA1_C) |
| 930 | if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL ) |
| 931 | mbedtls_exit(1); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 932 | |
Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 933 | 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] | 934 | mbedtls_exit(1); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 935 | TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)", |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 936 | mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 937 | |
Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 938 | 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] | 939 | mbedtls_exit(1); |
| 940 | mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg, |
| 941 | MBEDTLS_HMAC_DRBG_PR_ON ); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 942 | TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)", |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 943 | mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 944 | #endif |
| 945 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 946 | #if defined(MBEDTLS_SHA256_C) |
| 947 | if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL ) |
| 948 | mbedtls_exit(1); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 949 | |
Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 950 | 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] | 951 | mbedtls_exit(1); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 952 | TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)", |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 953 | mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 954 | |
Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 955 | 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] | 956 | mbedtls_exit(1); |
| 957 | mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg, |
| 958 | MBEDTLS_HMAC_DRBG_PR_ON ); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 959 | TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)", |
Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 960 | mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 961 | #endif |
Ron Eldor | 278af45 | 2018-06-20 18:40:21 +0300 | [diff] [blame] | 962 | mbedtls_hmac_drbg_free( &hmac_drbg ); |
Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 963 | } |
Andrzej Kurek | 6832774 | 2022-10-03 06:18:18 -0400 | [diff] [blame] | 964 | #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] | 965 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 966 | #if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME) |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 967 | if( todo.rsa ) |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 968 | { |
Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 969 | int keysize; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 970 | mbedtls_rsa_context rsa; |
Manuel Pégourié-Gonnard | a6dbddc | 2015-07-06 11:20:33 +0200 | [diff] [blame] | 971 | for( keysize = 2048; keysize <= 4096; keysize *= 2 ) |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 972 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 973 | mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 974 | |
Ronald Cron | c1905a1 | 2021-06-05 11:11:14 +0200 | [diff] [blame] | 975 | mbedtls_rsa_init( &rsa ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 976 | mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 977 | |
| 978 | TIME_PUBLIC( title, " public", |
| 979 | buf[0] = 0; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 980 | ret = mbedtls_rsa_public( &rsa, buf, buf ) ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 981 | |
| 982 | TIME_PUBLIC( title, "private", |
| 983 | buf[0] = 0; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 984 | ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 985 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 986 | mbedtls_rsa_free( &rsa ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 987 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 988 | } |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 989 | #endif |
| 990 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 991 | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C) |
Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 992 | if( todo.dhm ) |
Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 993 | { |
Manuel Pégourié-Gonnard | 4f3368e | 2015-07-19 15:01:28 +0200 | [diff] [blame] | 994 | int dhm_sizes[] = { 2048, 3072 }; |
Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 995 | static const unsigned char dhm_P_2048[] = |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 996 | MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN; |
Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 997 | static const unsigned char dhm_P_3072[] = |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 998 | MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN; |
Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 999 | static const unsigned char dhm_G_2048[] = |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 1000 | MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN; |
Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 1001 | static const unsigned char dhm_G_3072[] = |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 1002 | MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN; |
| 1003 | |
| 1004 | const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 }; |
| 1005 | const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ), |
| 1006 | sizeof( dhm_P_3072 ) }; |
| 1007 | |
| 1008 | const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 }; |
| 1009 | const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ), |
| 1010 | sizeof( dhm_G_3072 ) }; |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1011 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1012 | mbedtls_dhm_context dhm; |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1013 | size_t olen; |
Gilles Peskine | 487bbf6 | 2021-05-27 22:17:07 +0200 | [diff] [blame] | 1014 | size_t n; |
Manuel Pégourié-Gonnard | 4f3368e | 2015-07-19 15:01:28 +0200 | [diff] [blame] | 1015 | for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ ) |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1016 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1017 | mbedtls_dhm_init( &dhm ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1018 | |
Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 1019 | if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i], |
| 1020 | dhm_P_size[i] ) != 0 || |
| 1021 | mbedtls_mpi_read_binary( &dhm.G, dhm_G[i], |
| 1022 | dhm_G_size[i] ) != 0 ) |
Paul Bakker | cbe3d0d | 2014-04-17 16:00:59 +0200 | [diff] [blame] | 1023 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1024 | mbedtls_exit( 1 ); |
Paul Bakker | cbe3d0d | 2014-04-17 16:00:59 +0200 | [diff] [blame] | 1025 | } |
| 1026 | |
Gilles Peskine | 487bbf6 | 2021-05-27 22:17:07 +0200 | [diff] [blame] | 1027 | n = mbedtls_mpi_size( &dhm.P ); |
| 1028 | mbedtls_dhm_make_public( &dhm, (int) n, buf, n, myrand, NULL ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1029 | if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 ) |
| 1030 | mbedtls_exit( 1 ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1031 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1032 | mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1033 | TIME_PUBLIC( title, "handshake", |
Gilles Peskine | 487bbf6 | 2021-05-27 22:17:07 +0200 | [diff] [blame] | 1034 | ret |= mbedtls_dhm_make_public( &dhm, (int) n, buf, n, |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1035 | myrand, NULL ); |
Manuel Pégourié-Gonnard | 3335205 | 2015-06-02 16:17:08 +0100 | [diff] [blame] | 1036 | ret |= 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] | 1037 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1038 | mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1039 | TIME_PUBLIC( title, "handshake", |
Manuel Pégourié-Gonnard | 3335205 | 2015-06-02 16:17:08 +0100 | [diff] [blame] | 1040 | ret |= 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] | 1041 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1042 | mbedtls_dhm_free( &dhm ); |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1043 | } |
Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 1044 | } |
Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 1045 | #endif |
| 1046 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1047 | #if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C) |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1048 | if( todo.ecdsa ) |
| 1049 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1050 | mbedtls_ecdsa_context ecdsa; |
| 1051 | const mbedtls_ecp_curve_info *curve_info; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1052 | size_t sig_len; |
| 1053 | |
| 1054 | memset( buf, 0x2A, sizeof( buf ) ); |
| 1055 | |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 1056 | for( curve_info = curve_list; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1057 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1058 | curve_info++ ) |
| 1059 | { |
Christoph M. Wintersteiger | 8cd4fba | 2019-02-15 12:34:40 +0000 | [diff] [blame] | 1060 | if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) ) |
Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 1061 | continue; |
| 1062 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1063 | mbedtls_ecdsa_init( &ecdsa ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1064 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1065 | if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ) |
| 1066 | mbedtls_exit( 1 ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1067 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1068 | mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s", |
Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 1069 | curve_info->name ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1070 | TIME_PUBLIC( title, "sign", |
Manuel Pégourié-Gonnard | 797f48a | 2015-06-18 15:45:05 +0200 | [diff] [blame] | 1071 | ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size, |
Gilles Peskine | f00f152 | 2021-06-22 00:09:00 +0200 | [diff] [blame] | 1072 | tmp, sizeof( tmp ), &sig_len, myrand, NULL ) ); |
Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 1073 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1074 | mbedtls_ecdsa_free( &ecdsa ); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1075 | } |
| 1076 | |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 1077 | for( curve_info = curve_list; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1078 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1079 | curve_info++ ) |
| 1080 | { |
Christoph M. Wintersteiger | 8cd4fba | 2019-02-15 12:34:40 +0000 | [diff] [blame] | 1081 | if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) ) |
Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 1082 | continue; |
| 1083 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1084 | mbedtls_ecdsa_init( &ecdsa ); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1085 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1086 | if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 || |
Manuel Pégourié-Gonnard | 797f48a | 2015-06-18 15:45:05 +0200 | [diff] [blame] | 1087 | mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size, |
Gilles Peskine | f00f152 | 2021-06-22 00:09:00 +0200 | [diff] [blame] | 1088 | tmp, sizeof( tmp ), &sig_len, myrand, NULL ) != 0 ) |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1089 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1090 | mbedtls_exit( 1 ); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1091 | } |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1092 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1093 | mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s", |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1094 | curve_info->name ); |
Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 1095 | TIME_PUBLIC( title, "verify", |
Manuel Pégourié-Gonnard | 797f48a | 2015-06-18 15:45:05 +0200 | [diff] [blame] | 1096 | ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size, |
Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 1097 | tmp, sig_len ) ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1098 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1099 | mbedtls_ecdsa_free( &ecdsa ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1100 | } |
| 1101 | } |
| 1102 | #endif |
| 1103 | |
Janos Follath | 52735ef | 2018-08-15 10:19:16 +0100 | [diff] [blame] | 1104 | #if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT) |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1105 | if( todo.ecdh ) |
| 1106 | { |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1107 | mbedtls_ecdh_context ecdh; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1108 | mbedtls_mpi z; |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1109 | const mbedtls_ecp_curve_info montgomery_curve_list[] = { |
| 1110 | #if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) |
| 1111 | { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" }, |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1112 | #endif |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1113 | #if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) |
| 1114 | { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" }, |
| 1115 | #endif |
| 1116 | { MBEDTLS_ECP_DP_NONE, 0, 0, 0 } |
| 1117 | }; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1118 | const mbedtls_ecp_curve_info *curve_info; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1119 | size_t olen; |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 1120 | const mbedtls_ecp_curve_info *selected_montgomery_curve_list = |
| 1121 | montgomery_curve_list; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1122 | |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 1123 | if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve ) |
| 1124 | { |
| 1125 | mbedtls_ecp_group grp; |
| 1126 | mbedtls_ecp_group_init( &grp ); |
| 1127 | if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 ) |
| 1128 | mbedtls_exit( 1 ); |
| 1129 | if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY ) |
| 1130 | selected_montgomery_curve_list = single_curve; |
| 1131 | else /* empty list */ |
| 1132 | selected_montgomery_curve_list = single_curve + 1; |
| 1133 | mbedtls_ecp_group_free( &grp ); |
| 1134 | } |
| 1135 | |
| 1136 | for( curve_info = curve_list; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1137 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1138 | curve_info++ ) |
| 1139 | { |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1140 | if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) ) |
| 1141 | continue; |
| 1142 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1143 | mbedtls_ecdh_init( &ecdh ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1144 | |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1145 | CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) ); |
| 1146 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf), |
| 1147 | myrand, NULL ) ); |
| 1148 | CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1149 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1150 | mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", |
Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 1151 | curve_info->name ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1152 | TIME_PUBLIC( title, "handshake", |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1153 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf), |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1154 | myrand, NULL ) ); |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1155 | CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ), |
| 1156 | myrand, NULL ) ) ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1157 | mbedtls_ecdh_free( &ecdh ); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1158 | } |
| 1159 | |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1160 | /* Montgomery curves need to be handled separately */ |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 1161 | for ( curve_info = selected_montgomery_curve_list; |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1162 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
| 1163 | curve_info++ ) |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1164 | { |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1165 | mbedtls_ecdh_init( &ecdh ); |
| 1166 | mbedtls_mpi_init( &z ); |
| 1167 | |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1168 | CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) ); |
| 1169 | 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] | 1170 | |
| 1171 | mbedtls_snprintf( title, sizeof(title), "ECDHE-%s", |
| 1172 | curve_info->name ); |
| 1173 | TIME_PUBLIC( title, "handshake", |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1174 | CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, |
| 1175 | myrand, NULL ) ); |
| 1176 | CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d, |
| 1177 | myrand, NULL ) ) ); |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1178 | |
| 1179 | mbedtls_ecdh_free( &ecdh ); |
| 1180 | mbedtls_mpi_free( &z ); |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1181 | } |
| 1182 | |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 1183 | for( curve_info = curve_list; |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1184 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1185 | curve_info++ ) |
| 1186 | { |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1187 | if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) ) |
| 1188 | continue; |
| 1189 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1190 | mbedtls_ecdh_init( &ecdh ); |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1191 | |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1192 | CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) ); |
| 1193 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf), |
| 1194 | myrand, NULL ) ); |
| 1195 | CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) ); |
| 1196 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf), |
| 1197 | myrand, NULL ) ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1198 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1199 | mbedtls_snprintf( title, sizeof( title ), "ECDH-%s", |
Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 1200 | curve_info->name ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1201 | TIME_PUBLIC( title, "handshake", |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1202 | CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ), |
| 1203 | myrand, NULL ) ) ); |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1204 | mbedtls_ecdh_free( &ecdh ); |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1205 | } |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1206 | |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1207 | /* Montgomery curves need to be handled separately */ |
Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 1208 | for ( curve_info = selected_montgomery_curve_list; |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1209 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
| 1210 | curve_info++) |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1211 | { |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1212 | mbedtls_ecdh_init( &ecdh ); |
| 1213 | mbedtls_mpi_init( &z ); |
| 1214 | |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1215 | CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) ); |
| 1216 | CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, |
| 1217 | myrand, NULL ) ); |
| 1218 | 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] | 1219 | |
| 1220 | mbedtls_snprintf( title, sizeof(title), "ECDH-%s", |
| 1221 | curve_info->name ); |
| 1222 | TIME_PUBLIC( title, "handshake", |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1223 | CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d, |
| 1224 | myrand, NULL ) ) ); |
Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1225 | |
| 1226 | mbedtls_ecdh_free( &ecdh ); |
| 1227 | mbedtls_mpi_free( &z ); |
Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1228 | } |
Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1229 | } |
| 1230 | #endif |
Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1231 | |
Christoph M. Wintersteiger | e50b970 | 2018-12-14 11:03:02 +0000 | [diff] [blame] | 1232 | #if defined(MBEDTLS_ECDH_C) |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1233 | if( todo.ecdh ) |
| 1234 | { |
| 1235 | mbedtls_ecdh_context ecdh_srv, ecdh_cli; |
| 1236 | unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE]; |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1237 | const mbedtls_ecp_curve_info *curve_info; |
| 1238 | size_t olen; |
| 1239 | |
| 1240 | for( curve_info = curve_list; |
| 1241 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; |
| 1242 | curve_info++ ) |
| 1243 | { |
Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1244 | if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) ) |
| 1245 | continue; |
| 1246 | |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1247 | mbedtls_ecdh_init( &ecdh_srv ); |
Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1248 | mbedtls_ecdh_init( &ecdh_cli ); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1249 | |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1250 | mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name ); |
Christoph M. Wintersteiger | 0b93102 | 2018-12-06 17:15:12 +0000 | [diff] [blame] | 1251 | TIME_PUBLIC( title, "full handshake", |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1252 | const unsigned char * p_srv = buf_srv; |
Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1253 | |
Christoph M. Wintersteiger | 5d536cd | 2019-02-20 17:26:42 +0000 | [diff] [blame] | 1254 | CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) ); |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1255 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_params( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) ); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1256 | |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1257 | CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) ); |
| 1258 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) ); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1259 | |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1260 | CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) ); |
| 1261 | CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) ); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1262 | |
Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1263 | CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) ); |
Christoph M. Wintersteiger | 5d536cd | 2019-02-20 17:26:42 +0000 | [diff] [blame] | 1264 | mbedtls_ecdh_free( &ecdh_cli ); |
Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1265 | |
Christoph M. Wintersteiger | 5d536cd | 2019-02-20 17:26:42 +0000 | [diff] [blame] | 1266 | mbedtls_ecdh_free( &ecdh_srv ); |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1267 | ); |
| 1268 | |
Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1269 | } |
| 1270 | } |
| 1271 | #endif |
| 1272 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1273 | mbedtls_printf( "\n" ); |
Paul Bakker | 1d4da2e | 2009-10-25 12:36:53 +0000 | [diff] [blame] | 1274 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1275 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) |
| 1276 | mbedtls_memory_buffer_alloc_free(); |
Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 1277 | #endif |
| 1278 | |
k-stachowiak | 776521a | 2019-05-23 09:46:47 +0200 | [diff] [blame] | 1279 | mbedtls_exit( 0 ); |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1280 | } |
Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1281 | |
Andrzej Kurek | 6056e7a | 2022-03-02 12:01:10 -0500 | [diff] [blame] | 1282 | #endif /* MBEDTLS_HAVE_TIME */ |