blob: 6313c522a6c4cc5addda7777cf3b14c3ce1278f4 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Benchmark demonstration program
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * 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 Bakker5121ce52009-01-03 21:22:43 +000018 */
19
Mateusz Starzyk6c2e9b62021-05-19 17:54:54 +020020#define MBEDTLS_ALLOW_PRIVATE_ACCESS
21
Bence Szépkútic662b362021-05-27 11:25:03 +020022#include "mbedtls/build_info.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000023
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000024#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000025
Andrzej Kurek6056e7a2022-03-02 12:01:10 -050026#if !defined(MBEDTLS_HAVE_TIME)
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000027int main( void )
28{
Andrzej Kurek6056e7a2022-03-02 12:01:10 -050029 mbedtls_printf("MBEDTLS_HAVE_TIME not defined.\n");
k-stachowiak776521a2019-05-23 09:46:47 +020030 mbedtls_exit( 0 );
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000031}
32#else
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010033
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000034#include <string.h>
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020035#include <stdlib.h>
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010036
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000037#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é-Gonnard62e813c2018-02-21 10:47:47 +010042
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000043#include "mbedtls/des.h"
44#include "mbedtls/aes.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010045#include "mbedtls/aria.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000046#include "mbedtls/camellia.h"
Daniel King34b822c2016-05-15 17:28:08 -030047#include "mbedtls/chacha20.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000048#include "mbedtls/gcm.h"
49#include "mbedtls/ccm.h"
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +020050#include "mbedtls/chachapoly.h"
Simon Butcher549dc3d2016-10-05 14:14:19 +010051#include "mbedtls/cmac.h"
Daniel Kingadc32c02016-05-16 18:25:45 -030052#include "mbedtls/poly1305.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010053
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000054#include "mbedtls/ctr_drbg.h"
55#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010056
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000057#include "mbedtls/rsa.h"
58#include "mbedtls/dhm.h"
59#include "mbedtls/ecdsa.h"
60#include "mbedtls/ecdh.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010061
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000062#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000063
TRodziewicz90f304f2021-06-11 11:56:47 +020064#ifndef asm
65#define asm __asm
66#endif
67
TRodziewiczd8540832021-06-10 15:16:50 +020068#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
69
70#include <windows.h>
71#include <process.h>
72
73struct _hr_time
74{
75 LARGE_INTEGER start;
76};
77
78#else
79
80#include <unistd.h>
81#include <sys/types.h>
82#include <sys/time.h>
83#include <signal.h>
84#include <time.h>
85
86struct _hr_time
87{
88 struct timeval start;
89};
90
91#endif /* _WIN32 && !EFIX64 && !EFI32 */
92
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020093#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000094#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +000095#endif
96
TRodziewiczd8540832021-06-10 15:16:50 +020097static void mbedtls_set_alarm( int seconds );
98
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000099/*
100 * For heap usage estimates, we need an estimate of the overhead per allocated
101 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
102 * so use that as our baseline.
103 */
104#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
105
106/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200107 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000108 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +0100109#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000110
Paul Bakker02faf452011-11-29 11:23:58 +0000111#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100112#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +0100113#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +0000114
Rich Evans85b05ec2015-02-12 11:37:29 +0000115#define OPTIONS \
TRodziewicz10e8cf52021-05-31 17:58:57 +0200116 "md5, ripemd160, sha1, sha256, sha512,\n" \
117 "des3, des, camellia, chacha20,\n" \
Zhai Zhaoxuane22da992020-05-09 23:50:32 +0800118 "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -0300119 "aes_cmac, des3_cmac, poly1305\n" \
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100120 "ctr_drbg, hmac_drbg\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +0000121 "rsa, dhm, ecdsa, ecdh.\n"
122
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200123#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000124#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100125 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200126 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000127#else
128#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200129 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000130#endif
131
132#define TIME_AND_TSC( TITLE, CODE ) \
133do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200134 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200135 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000136 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200137 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000138 fflush( stdout ); \
139 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200140 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200141 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000142 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200143 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000144 } \
145 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200146 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200147 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000148 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200149 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000150 } \
151 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200152 if( ret != 0 ) \
153 { \
154 PRINT_ERROR; \
155 } \
156 else \
157 { \
158 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
159 ii * BUFSIZE / 1024, \
160 ( mbedtls_timing_hardclock() - tsc ) \
161 / ( jj * BUFSIZE ) ); \
162 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000163} while( 0 )
164
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200165#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100166
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200167/* How much space to reserve for the title when printing heap usage results.
168 * Updated manually as the output of the following command:
169 *
170 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
Manuel Pégourié-Gonnardbf5b46c2022-01-05 10:34:17 +0100171 * awk '{print length+3}' | sort -rn | head -n1
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200172 *
Manuel Pégourié-Gonnardbf5b46c2022-01-05 10:34:17 +0100173 * This computes the maximum length of a title +3, because we appends "/s" and
174 * want at least one space. (If the value is too small, the only consequence
Shaun Case8b0ecbc2021-12-20 21:14:10 -0800175 * is poor alignment.) */
Manuel Pégourié-Gonnardbf5b46c2022-01-05 10:34:17 +0100176#define TITLE_SPACE 17
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200177
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100178#define MEMORY_MEASURE_INIT \
179 size_t max_used, max_blocks, max_bytes; \
180 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100181 size_t alloc_cnt, free_cnt, prv_alloc, prv_free; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200182 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200183 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100184
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100185#define MEMORY_MEASURE_RESET \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100186 mbedtls_memory_buffer_alloc_count_get( &prv_alloc, &prv_free );
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100187
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100188#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200189 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100190 mbedtls_memory_buffer_alloc_count_get( &alloc_cnt, &free_cnt ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200191 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
192 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100193 max_used -= prv_used; \
194 max_blocks -= prv_blocks; \
195 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100196 mbedtls_printf( "%6u heap bytes, %6u allocs", \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100197 (unsigned) max_bytes, \
198 (unsigned)( alloc_cnt - prv_alloc ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100199
200#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000201#define MEMORY_MEASURE_INIT
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100202#define MEMORY_MEASURE_RESET
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000203#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100204#endif
205
Rich Evans85b05ec2015-02-12 11:37:29 +0000206#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
207do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200208 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000209 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100210 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000211 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200212 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000213 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200214 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000215 \
216 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200217 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000218 { \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100219 MEMORY_MEASURE_RESET; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000220 CODE; \
221 } \
222 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000223 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
224 { \
225 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
226 ret = 0; \
227 } \
228 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000229 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100230 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000231 } \
232 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100233 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200234 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100235 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200236 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100237 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000238} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000239
TRodziewiczd8540832021-06-10 15:16:50 +0200240#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
241 ( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__)
242
243#define HAVE_HARDCLOCK
244
TRodziewicz9a9609e2021-06-11 13:35:10 +0200245static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200246{
247 unsigned long tsc;
248 __asm rdtsc
249 __asm mov [tsc], eax
250 return( tsc );
251}
252#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
253 ( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
254
255/* some versions of mingw-64 have 32-bit longs even on x84_64 */
256#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
257 defined(__GNUC__) && ( defined(__i386__) || ( \
258 ( defined(__amd64__) || defined( __x86_64__) ) && __SIZEOF_LONG__ == 4 ) )
259
260#define HAVE_HARDCLOCK
261
TRodziewicz9a9609e2021-06-11 13:35:10 +0200262static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200263{
264 unsigned long lo, hi;
265 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
266 return( lo );
267}
268#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
269 __GNUC__ && __i386__ */
270
271#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
272 defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) )
273
274#define HAVE_HARDCLOCK
275
TRodziewicz9a9609e2021-06-11 13:35:10 +0200276static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200277{
278 unsigned long lo, hi;
279 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
280 return( lo | ( hi << 32 ) );
281}
282#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
283 __GNUC__ && ( __amd64__ || __x86_64__ ) */
284
285#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
286 defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) )
287
288#define HAVE_HARDCLOCK
289
TRodziewicz9a9609e2021-06-11 13:35:10 +0200290static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200291{
292 unsigned long tbl, tbu0, tbu1;
293
294 do
295 {
296 asm volatile( "mftbu %0" : "=r" (tbu0) );
297 asm volatile( "mftb %0" : "=r" (tbl ) );
298 asm volatile( "mftbu %0" : "=r" (tbu1) );
299 }
300 while( tbu0 != tbu1 );
301
302 return( tbl );
303}
304#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
305 __GNUC__ && ( __powerpc__ || __ppc__ ) */
306
307#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
308 defined(__GNUC__) && defined(__sparc64__)
309
310#if defined(__OpenBSD__)
311#warning OpenBSD does not allow access to tick register using software version instead
312#else
313#define HAVE_HARDCLOCK
314
TRodziewicz9a9609e2021-06-11 13:35:10 +0200315static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200316{
317 unsigned long tick;
318 asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
319 return( tick );
320}
321#endif /* __OpenBSD__ */
322#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
323 __GNUC__ && __sparc64__ */
324
325#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
326 defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__)
327
328#define HAVE_HARDCLOCK
329
TRodziewicz9a9609e2021-06-11 13:35:10 +0200330static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200331{
332 unsigned long tick;
333 asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
334 asm volatile( "mov %%g1, %0" : "=r" (tick) );
335 return( tick );
336}
337#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
338 __GNUC__ && __sparc__ && !__sparc64__ */
339
340#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
341 defined(__GNUC__) && defined(__alpha__)
342
343#define HAVE_HARDCLOCK
344
TRodziewicz9a9609e2021-06-11 13:35:10 +0200345static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200346{
347 unsigned long cc;
348 asm volatile( "rpcc %0" : "=r" (cc) );
349 return( cc & 0xFFFFFFFF );
350}
351#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
352 __GNUC__ && __alpha__ */
353
354#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
355 defined(__GNUC__) && defined(__ia64__)
356
357#define HAVE_HARDCLOCK
358
TRodziewicz9a9609e2021-06-11 13:35:10 +0200359static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200360{
361 unsigned long itc;
362 asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
363 return( itc );
364}
365#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
366 __GNUC__ && __ia64__ */
367
368#if !defined(HAVE_HARDCLOCK) && defined(_MSC_VER) && \
369 !defined(EFIX64) && !defined(EFI32)
370
371#define HAVE_HARDCLOCK
372
TRodziewicz9a9609e2021-06-11 13:35:10 +0200373static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200374{
375 LARGE_INTEGER offset;
376
377 QueryPerformanceCounter( &offset );
378
379 return( (unsigned long)( offset.QuadPart ) );
380}
381#endif /* !HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */
382
383#if !defined(HAVE_HARDCLOCK)
384
385#define HAVE_HARDCLOCK
386
387static int hardclock_init = 0;
388static struct timeval tv_init;
389
TRodziewicz9a9609e2021-06-11 13:35:10 +0200390static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200391{
392 struct timeval tv_cur;
393
394 if( hardclock_init == 0 )
395 {
396 gettimeofday( &tv_init, NULL );
397 hardclock_init = 1;
398 }
399
400 gettimeofday( &tv_cur, NULL );
401 return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000
402 + ( tv_cur.tv_usec - tv_init.tv_usec ) );
403}
404#endif /* !HAVE_HARDCLOCK */
405
406volatile int mbedtls_timing_alarmed = 0;
407
408#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
409
410/* It's OK to use a global because alarm() is supposed to be global anyway */
411static DWORD alarmMs;
412
413static void TimerProc( void *TimerContext )
414{
415 (void) TimerContext;
416 Sleep( alarmMs );
417 mbedtls_timing_alarmed = 1;
418 /* _endthread will be called implicitly on return
Tom Cosgrove1797b052022-12-04 17:19:59 +0000419 * That ensures execution of thread function's epilogue */
TRodziewiczd8540832021-06-10 15:16:50 +0200420}
421
422static void mbedtls_set_alarm( int seconds )
423{
424 if( seconds == 0 )
425 {
426 /* No need to create a thread for this simple case.
427 * Also, this shorcut is more reliable at least on MinGW32 */
428 mbedtls_timing_alarmed = 1;
429 return;
430 }
431
432 mbedtls_timing_alarmed = 0;
433 alarmMs = seconds * 1000;
434 (void) _beginthread( TimerProc, 0, NULL );
435}
436
437#else /* _WIN32 && !EFIX64 && !EFI32 */
438
439static void sighandler( int signum )
440{
441 mbedtls_timing_alarmed = 1;
442 signal( signum, sighandler );
443}
444
445static void mbedtls_set_alarm( int seconds )
446{
447 mbedtls_timing_alarmed = 0;
448 signal( SIGALRM, sighandler );
449 alarm( seconds );
450 if( seconds == 0 )
451 {
452 /* alarm(0) cancelled any previous pending alarm, but the
453 handler won't fire, so raise the flag straight away. */
454 mbedtls_timing_alarmed = 1;
455 }
456}
457
458#endif /* _WIN32 && !EFIX64 && !EFI32 */
459
Paul Bakkera3d195c2011-11-27 21:07:34 +0000460static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000461{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000462 size_t use_len;
463 int rnd;
464
Paul Bakker5121ce52009-01-03 21:22:43 +0000465 if( rng_state != NULL )
466 rng_state = NULL;
467
Paul Bakkera3d195c2011-11-27 21:07:34 +0000468 while( len > 0 )
469 {
470 use_len = len;
471 if( use_len > sizeof(int) )
472 use_len = sizeof(int);
473
474 rnd = rand();
475 memcpy( output, &rnd, use_len );
476 output += use_len;
477 len -= use_len;
478 }
479
480 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000481}
482
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000483#define CHECK_AND_CONTINUE( R ) \
484 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100485 int CHECK_AND_CONTINUE_ret = ( R ); \
486 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000487 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
488 continue; \
489 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100490 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000491 mbedtls_exit( 1 ); \
492 } \
493 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000494
Gilles Peskine28f62f62020-07-24 02:06:46 +0200495#if defined(MBEDTLS_ECP_C)
496static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve )
497{
498 const mbedtls_ecp_curve_info *found =
499 mbedtls_ecp_curve_info_from_name( string );
500 if( found != NULL )
501 {
502 *curve = *found;
503 return( 1 );
504 }
505 else
506 return( 0 );
507}
508#endif
509
Paul Bakker5121ce52009-01-03 21:22:43 +0000510unsigned char buf[BUFSIZE];
511
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200512typedef struct {
TRodziewicz10e8cf52021-05-31 17:58:57 +0200513 char md5, ripemd160, sha1, sha256, sha512,
514 des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200515 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200516 aes_cmac, des3_cmac,
TRodziewicz10e8cf52021-05-31 17:58:57 +0200517 aria, camellia, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300518 poly1305,
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100519 ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200520 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200521} todo_list;
522
Simon Butcher63cb97e2018-12-06 17:43:31 +0000523
Paul Bakkercce9d772011-11-18 14:26:47 +0000524int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000525{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100526 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200527 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200528 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200529 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200530#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200531 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000532#endif
Gilles Peskine28f62f62020-07-24 02:06:46 +0200533#if defined(MBEDTLS_ECP_C)
534 mbedtls_ecp_curve_info single_curve[2] = {
535 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
536 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
537 };
538 const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( );
539#endif
540
541#if defined(MBEDTLS_ECP_C)
542 (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */
543#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000544
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000545 if( argc <= 1 )
546 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200547 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000548 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200549 else
550 {
551 memset( &todo, 0, sizeof( todo ) );
552
553 for( i = 1; i < argc; i++ )
554 {
TRodziewicz10e8cf52021-05-31 17:58:57 +0200555 if( strcmp( argv[i], "md5" ) == 0 )
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200556 todo.md5 = 1;
557 else if( strcmp( argv[i], "ripemd160" ) == 0 )
558 todo.ripemd160 = 1;
559 else if( strcmp( argv[i], "sha1" ) == 0 )
560 todo.sha1 = 1;
561 else if( strcmp( argv[i], "sha256" ) == 0 )
562 todo.sha256 = 1;
563 else if( strcmp( argv[i], "sha512" ) == 0 )
564 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200565 else if( strcmp( argv[i], "des3" ) == 0 )
566 todo.des3 = 1;
567 else if( strcmp( argv[i], "des" ) == 0 )
568 todo.des = 1;
569 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
570 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200571 else if( strcmp( argv[i], "aes_xts" ) == 0 )
572 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200573 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
574 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200575 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
576 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200577 else if( strcmp( argv[i], "chachapoly" ) == 0 )
578 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100579 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
580 todo.aes_cmac = 1;
581 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
582 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100583 else if( strcmp( argv[i], "aria" ) == 0 )
584 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200585 else if( strcmp( argv[i], "camellia" ) == 0 )
586 todo.camellia = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300587 else if( strcmp( argv[i], "chacha20" ) == 0 )
588 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300589 else if( strcmp( argv[i], "poly1305" ) == 0 )
590 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200591 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
592 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100593 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
594 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200595 else if( strcmp( argv[i], "rsa" ) == 0 )
596 todo.rsa = 1;
597 else if( strcmp( argv[i], "dhm" ) == 0 )
598 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200599 else if( strcmp( argv[i], "ecdsa" ) == 0 )
600 todo.ecdsa = 1;
601 else if( strcmp( argv[i], "ecdh" ) == 0 )
602 todo.ecdh = 1;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200603#if defined(MBEDTLS_ECP_C)
604 else if( set_ecp_curve( argv[i], single_curve ) )
605 curve_list = single_curve;
606#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200607 else
608 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200609 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
610 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200611 }
612 }
613 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000614
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200615 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000616
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200617#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200618 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000619#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200620 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200621 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200622
Manuel Pégourié-Gonnarda93aa582022-01-04 09:47:54 +0100623 /* Avoid "unused static function" warning in configurations without
624 * symmetric crypto. */
Manuel Pégourié-Gonnardcd4ad0c2022-01-05 09:54:37 +0100625 (void) mbedtls_timing_hardclock;
Manuel Pégourié-Gonnarda93aa582022-01-04 09:47:54 +0100626
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200627#if defined(MBEDTLS_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200628 if( todo.md5 )
TRodziewicz26371e42021-06-08 16:45:41 +0200629 TIME_AND_TSC( "MD5", mbedtls_md5( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000630#endif
631
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200632#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200633 if( todo.ripemd160 )
TRodziewicz26371e42021-06-08 16:45:41 +0200634 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100635#endif
636
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200637#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200638 if( todo.sha1 )
TRodziewicz26371e42021-06-08 16:45:41 +0200639 TIME_AND_TSC( "SHA-1", mbedtls_sha1( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000640#endif
641
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200642#if defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200643 if( todo.sha256 )
TRodziewicz26371e42021-06-08 16:45:41 +0200644 TIME_AND_TSC( "SHA-256", mbedtls_sha256( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000645#endif
646
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200647#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200648 if( todo.sha512 )
TRodziewicz26371e42021-06-08 16:45:41 +0200649 TIME_AND_TSC( "SHA-512", mbedtls_sha512( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000650#endif
651
Simon Butcher549dc3d2016-10-05 14:14:19 +0100652#if defined(MBEDTLS_DES_C)
653#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200654 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200655 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200656 mbedtls_des3_context des3;
657 mbedtls_des3_init( &des3 );
Gilles Peskine7820a572021-07-07 21:08:28 +0200658 if( mbedtls_des3_set3key_enc( &des3, tmp ) != 0 )
659 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200660 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200661 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
662 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200663 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000664
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200665 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200666 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200667 mbedtls_des_context des;
668 mbedtls_des_init( &des );
Gilles Peskine7820a572021-07-07 21:08:28 +0200669 if( mbedtls_des_setkey_enc( &des, tmp ) != 0 )
670 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200671 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200672 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
673 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200674 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100675
676#endif /* MBEDTLS_CIPHER_MODE_CBC */
677#if defined(MBEDTLS_CMAC_C)
678 if( todo.des3_cmac )
679 {
680 unsigned char output[8];
681 const mbedtls_cipher_info_t *cipher_info;
682
683 memset( buf, 0, sizeof( buf ) );
684 memset( tmp, 0, sizeof( tmp ) );
685
686 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
687
688 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100689 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
690 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100691 }
692#endif /* MBEDTLS_CMAC_C */
693#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000694
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200695#if defined(MBEDTLS_AES_C)
696#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200697 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000698 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100699 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200700 mbedtls_aes_context aes;
701 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200702 for( keysize = 128; keysize <= 256; keysize += 64 )
703 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200704 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000705
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200706 memset( buf, 0, sizeof( buf ) );
707 memset( tmp, 0, sizeof( tmp ) );
Gilles Peskine7820a572021-07-07 21:08:28 +0200708 CHECK_AND_CONTINUE( mbedtls_aes_setkey_enc( &aes, tmp, keysize ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000709
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200710 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200711 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200712 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200713 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000714 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200715#endif
Aorimn5f778012016-06-09 23:22:58 +0200716#if defined(MBEDTLS_CIPHER_MODE_XTS)
717 if( todo.aes_xts )
718 {
719 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100720 mbedtls_aes_xts_context ctx;
721
722 mbedtls_aes_xts_init( &ctx );
723 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200724 {
725 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
726
727 memset( buf, 0, sizeof( buf ) );
728 memset( tmp, 0, sizeof( tmp ) );
Gilles Peskine7820a572021-07-07 21:08:28 +0200729 CHECK_AND_CONTINUE( mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 ) );
Aorimn5f778012016-06-09 23:22:58 +0200730
731 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100732 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
733 tmp, buf, buf ) );
734
735 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200736 }
Aorimn5f778012016-06-09 23:22:58 +0200737 }
738#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200739#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200740 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000741 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100742 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200743 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200744
745 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200746 for( keysize = 128; keysize <= 256; keysize += 64 )
747 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200748 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000749
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200750 memset( buf, 0, sizeof( buf ) );
751 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200752 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000753
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200754 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200755 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200756 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100757
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200758 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200759 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000760 }
761#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200762#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200763 if( todo.aes_ccm )
764 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100765 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200766 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200767
768 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200769 for( keysize = 128; keysize <= 256; keysize += 64 )
770 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200771 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200772
773 memset( buf, 0, sizeof( buf ) );
774 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200775 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200776
777 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200778 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200779 12, NULL, 0, buf, buf, tmp, 16 ) );
780
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200781 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200782 }
783 }
784#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200785#if defined(MBEDTLS_CHACHAPOLY_C)
786 if( todo.chachapoly )
787 {
788 mbedtls_chachapoly_context chachapoly;
789
790 mbedtls_chachapoly_init( &chachapoly );
791 memset( buf, 0, sizeof( buf ) );
792 memset( tmp, 0, sizeof( tmp ) );
793
794 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
795
796 mbedtls_chachapoly_setkey( &chachapoly, tmp );
797
798 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200799 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
800 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200801
802 mbedtls_chachapoly_free( &chachapoly );
803 }
804#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100805#if defined(MBEDTLS_CMAC_C)
806 if( todo.aes_cmac )
807 {
808 unsigned char output[16];
809 const mbedtls_cipher_info_t *cipher_info;
810 mbedtls_cipher_type_t cipher_type;
811 int keysize;
812
813 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
814 keysize <= 256;
815 keysize += 64, cipher_type++ )
816 {
817 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
818
819 memset( buf, 0, sizeof( buf ) );
820 memset( tmp, 0, sizeof( tmp ) );
821
822 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
823
824 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100825 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
826 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100827 }
828
829 memset( buf, 0, sizeof( buf ) );
830 memset( tmp, 0, sizeof( tmp ) );
831 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100832 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
833 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100834 }
835#endif /* MBEDTLS_CMAC_C */
836#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000837
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100838#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
839 if( todo.aria )
840 {
841 int keysize;
842 mbedtls_aria_context aria;
843 mbedtls_aria_init( &aria );
844 for( keysize = 128; keysize <= 256; keysize += 64 )
845 {
846 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
847
848 memset( buf, 0, sizeof( buf ) );
849 memset( tmp, 0, sizeof( tmp ) );
850 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
851
852 TIME_AND_TSC( title,
853 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
854 BUFSIZE, tmp, buf, buf ) );
855 }
856 mbedtls_aria_free( &aria );
857 }
858#endif
859
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200860#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200861 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000862 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100863 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200864 mbedtls_camellia_context camellia;
865 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200866 for( keysize = 128; keysize <= 256; keysize += 64 )
867 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200868 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000869
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200870 memset( buf, 0, sizeof( buf ) );
871 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200872 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000873
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200874 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200875 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200876 BUFSIZE, tmp, buf, buf ) );
877 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200878 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000879 }
880#endif
881
Daniel King34b822c2016-05-15 17:28:08 -0300882#if defined(MBEDTLS_CHACHA20_C)
883 if ( todo.chacha20 )
884 {
885 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
886 }
887#endif
888
Daniel Kingadc32c02016-05-16 18:25:45 -0300889#if defined(MBEDTLS_POLY1305_C)
890 if ( todo.poly1305 )
891 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200892 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300893 }
894#endif
895
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200896#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200897 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200898 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200899 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000900
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200901 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200902 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200903 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200904 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200905 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100906 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000907
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100908 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200909 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200910 mbedtls_exit(1);
911 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200912 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200913 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200914 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200915 }
Paul Bakker02faf452011-11-29 11:23:58 +0000916#endif
917
Andrzej Kurek68327742022-10-03 06:18:18 -0400918#if defined(MBEDTLS_HMAC_DRBG_C) && \
919 ( defined(MBEDTLS_SHA1_C) || defined(MBEDTLS_SHA256_C) )
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100920 if( todo.hmac_drbg )
921 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200922 mbedtls_hmac_drbg_context hmac_drbg;
923 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100924
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200925 mbedtls_hmac_drbg_init( &hmac_drbg );
926
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200927#if defined(MBEDTLS_SHA1_C)
928 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
929 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100930
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200931 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200932 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100933 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200934 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100935
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200936 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200937 mbedtls_exit(1);
938 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
939 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100940 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200941 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100942#endif
943
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200944#if defined(MBEDTLS_SHA256_C)
945 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL )
946 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100947
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200948 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200949 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100950 TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200951 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100952
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200953 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200954 mbedtls_exit(1);
955 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
956 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100957 TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200958 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100959#endif
Ron Eldor278af452018-06-20 18:40:21 +0300960 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100961 }
Andrzej Kurek68327742022-10-03 06:18:18 -0400962#endif /* MBEDTLS_HMAC_DRBG_C && ( MBEDTLS_SHA1_C || MBEDTLS_SHA256_C ) */
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100963
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200964#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200965 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +0000966 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100967 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200968 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +0200969 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200970 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200971 mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200972
Ronald Cronc1905a12021-06-05 11:11:14 +0200973 mbedtls_rsa_init( &rsa );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200974 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200975
976 TIME_PUBLIC( title, " public",
977 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200978 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200979
980 TIME_PUBLIC( title, "private",
981 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200982 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200983
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200984 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200985 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000986 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000987#endif
988
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200989#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200990 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100991 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +0200992 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -0800993 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100994 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800995 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100996 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800997 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100998 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800999 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001000 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
1001
1002 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
1003 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
1004 sizeof( dhm_P_3072 ) };
1005
1006 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
1007 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
1008 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001009
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001010 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001011 size_t olen;
Gilles Peskine487bbf62021-05-27 22:17:07 +02001012 size_t n;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001013 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001014 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001015 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001016
Hanno Beckerb9539212017-10-04 13:13:34 +01001017 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
1018 dhm_P_size[i] ) != 0 ||
1019 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
1020 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001021 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001022 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001023 }
1024
Gilles Peskine487bbf62021-05-27 22:17:07 +02001025 n = mbedtls_mpi_size( &dhm.P );
1026 mbedtls_dhm_make_public( &dhm, (int) n, buf, n, myrand, NULL );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001027 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
1028 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001029
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001030 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001031 TIME_PUBLIC( title, "handshake",
Gilles Peskine487bbf62021-05-27 22:17:07 +02001032 ret |= mbedtls_dhm_make_public( &dhm, (int) n, buf, n,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001033 myrand, NULL );
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001034 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001035
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001036 mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001037 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001038 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001039
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001040 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001041 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001042 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001043#endif
1044
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001045#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001046 if( todo.ecdsa )
1047 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001048 mbedtls_ecdsa_context ecdsa;
1049 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001050 size_t sig_len;
1051
1052 memset( buf, 0x2A, sizeof( buf ) );
1053
Gilles Peskine28f62f62020-07-24 02:06:46 +02001054 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001055 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001056 curve_info++ )
1057 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001058 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001059 continue;
1060
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001061 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001062
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001063 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
1064 mbedtls_exit( 1 );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001065
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001066 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001067 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001068 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001069 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Gilles Peskinef00f1522021-06-22 00:09:00 +02001070 tmp, sizeof( tmp ), &sig_len, myrand, NULL ) );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001071
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001072 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001073 }
1074
Gilles Peskine28f62f62020-07-24 02:06:46 +02001075 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001076 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001077 curve_info++ )
1078 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001079 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001080 continue;
1081
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001082 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001083
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001084 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001085 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Gilles Peskinef00f1522021-06-22 00:09:00 +02001086 tmp, sizeof( tmp ), &sig_len, myrand, NULL ) != 0 )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001087 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001088 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001089 }
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001090
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001091 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001092 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001093 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001094 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001095 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001096
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001097 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001098 }
1099 }
1100#endif
1101
Janos Follath52735ef2018-08-15 10:19:16 +01001102#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001103 if( todo.ecdh )
1104 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001105 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001106 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001107 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
1108#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
1109 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001110#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001111#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
1112 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
1113#endif
1114 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
1115 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001116 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001117 size_t olen;
Gilles Peskine28f62f62020-07-24 02:06:46 +02001118 const mbedtls_ecp_curve_info *selected_montgomery_curve_list =
1119 montgomery_curve_list;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001120
Gilles Peskine28f62f62020-07-24 02:06:46 +02001121 if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve )
1122 {
1123 mbedtls_ecp_group grp;
1124 mbedtls_ecp_group_init( &grp );
1125 if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 )
1126 mbedtls_exit( 1 );
1127 if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
1128 selected_montgomery_curve_list = single_curve;
1129 else /* empty list */
1130 selected_montgomery_curve_list = single_curve + 1;
1131 mbedtls_ecp_group_free( &grp );
1132 }
1133
1134 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001135 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001136 curve_info++ )
1137 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001138 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1139 continue;
1140
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001141 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001142
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001143 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1144 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1145 myrand, NULL ) );
1146 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001147
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001148 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001149 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001150 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001151 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001152 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001153 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1154 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001155 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001156 }
1157
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001158 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001159 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001160 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1161 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001162 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001163 mbedtls_ecdh_init( &ecdh );
1164 mbedtls_mpi_init( &z );
1165
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001166 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1167 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001168
1169 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
1170 curve_info->name );
1171 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001172 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
1173 myrand, NULL ) );
1174 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1175 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001176
1177 mbedtls_ecdh_free( &ecdh );
1178 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001179 }
1180
Gilles Peskine28f62f62020-07-24 02:06:46 +02001181 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001182 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001183 curve_info++ )
1184 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001185 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1186 continue;
1187
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001188 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001189
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001190 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1191 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1192 myrand, NULL ) );
1193 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
1194 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1195 myrand, NULL ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001196
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001197 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001198 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001199 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001200 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1201 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001202 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001203 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001204
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001205 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001206 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001207 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1208 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001209 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001210 mbedtls_ecdh_init( &ecdh );
1211 mbedtls_mpi_init( &z );
1212
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001213 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1214 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1215 myrand, NULL ) );
1216 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001217
1218 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1219 curve_info->name );
1220 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001221 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1222 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001223
1224 mbedtls_ecdh_free( &ecdh );
1225 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001226 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001227 }
1228#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001229
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001230#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001231 if( todo.ecdh )
1232 {
1233 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1234 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001235 const mbedtls_ecp_curve_info *curve_info;
1236 size_t olen;
1237
1238 for( curve_info = curve_list;
1239 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1240 curve_info++ )
1241 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001242 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1243 continue;
1244
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001245 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001246 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001247
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001248 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001249 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001250 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001251
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001252 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001253 CHECK_AND_CONTINUE( mbedtls_ecdh_make_params( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001254
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001255 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1256 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001257
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001258 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1259 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001260
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001261 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) );
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001262 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001263
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001264 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001265 );
1266
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001267 }
1268 }
1269#endif
1270
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001271 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001272
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001273#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1274 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001275#endif
1276
k-stachowiak776521a2019-05-23 09:46:47 +02001277 mbedtls_exit( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +00001278}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001279
Andrzej Kurek6056e7a2022-03-02 12:01:10 -05001280#endif /* MBEDTLS_HAVE_TIME */