blob: c2bb565a849723852aba82cf5d5c1c94d7f87f69 [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"
Christoph M. Wintersteigercc91fe22019-02-20 18:06:00 +000025#if !defined(MBEDTLS_PLATFORM_C)
Rich Evans18b78c72015-02-11 14:06:19 +000026#include <stdio.h>
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010027#include <stdlib.h>
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#define mbedtls_exit exit
29#define mbedtls_printf printf
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020030#define mbedtls_free free
Rich Evansf90016a2015-01-19 14:26:37 +000031#endif
32
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020033#if !defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000034int main( void )
35{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020036 mbedtls_printf("MBEDTLS_TIMING_C not defined.\n");
k-stachowiak776521a2019-05-23 09:46:47 +020037 mbedtls_exit( 0 );
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000038}
39#else
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010040
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000041#include <string.h>
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020042#include <stdlib.h>
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010043
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000044#include "mbedtls/timing.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000045
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000046#include "mbedtls/md5.h"
47#include "mbedtls/ripemd160.h"
48#include "mbedtls/sha1.h"
49#include "mbedtls/sha256.h"
50#include "mbedtls/sha512.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010051
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000052#include "mbedtls/des.h"
53#include "mbedtls/aes.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010054#include "mbedtls/aria.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000055#include "mbedtls/camellia.h"
Daniel King34b822c2016-05-15 17:28:08 -030056#include "mbedtls/chacha20.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000057#include "mbedtls/gcm.h"
58#include "mbedtls/ccm.h"
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +020059#include "mbedtls/chachapoly.h"
Simon Butcher549dc3d2016-10-05 14:14:19 +010060#include "mbedtls/cmac.h"
Daniel Kingadc32c02016-05-16 18:25:45 -030061#include "mbedtls/poly1305.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010062
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000063#include "mbedtls/ctr_drbg.h"
64#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010065
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000066#include "mbedtls/rsa.h"
67#include "mbedtls/dhm.h"
68#include "mbedtls/ecdsa.h"
69#include "mbedtls/ecdh.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010070
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000071#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000072
TRodziewicz90f304f2021-06-11 11:56:47 +020073#ifndef asm
74#define asm __asm
75#endif
76
TRodziewiczd8540832021-06-10 15:16:50 +020077#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
78
79#include <windows.h>
80#include <process.h>
81
82struct _hr_time
83{
84 LARGE_INTEGER start;
85};
86
87#else
88
89#include <unistd.h>
90#include <sys/types.h>
91#include <sys/time.h>
92#include <signal.h>
93#include <time.h>
94
95struct _hr_time
96{
97 struct timeval start;
98};
99
100#endif /* _WIN32 && !EFIX64 && !EFI32 */
101
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200102#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000103#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +0000104#endif
105
TRodziewiczd8540832021-06-10 15:16:50 +0200106static void mbedtls_set_alarm( int seconds );
107
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000108/*
109 * For heap usage estimates, we need an estimate of the overhead per allocated
110 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
111 * so use that as our baseline.
112 */
113#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
114
115/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200116 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000117 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +0100118#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000119
Paul Bakker02faf452011-11-29 11:23:58 +0000120#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100121#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +0100122#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +0000123
Rich Evans85b05ec2015-02-12 11:37:29 +0000124#define OPTIONS \
TRodziewicz10e8cf52021-05-31 17:58:57 +0200125 "md5, ripemd160, sha1, sha256, sha512,\n" \
126 "des3, des, camellia, chacha20,\n" \
Zhai Zhaoxuane22da992020-05-09 23:50:32 +0800127 "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -0300128 "aes_cmac, des3_cmac, poly1305\n" \
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100129 "ctr_drbg, hmac_drbg\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +0000130 "rsa, dhm, ecdsa, ecdh.\n"
131
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200132#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000133#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100134 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200135 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000136#else
137#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200138 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000139#endif
140
141#define TIME_AND_TSC( TITLE, CODE ) \
142do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200143 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200144 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000145 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200146 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000147 fflush( stdout ); \
148 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200149 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200150 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000151 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200152 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000153 } \
154 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200155 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200156 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000157 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200158 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000159 } \
160 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200161 if( ret != 0 ) \
162 { \
163 PRINT_ERROR; \
164 } \
165 else \
166 { \
167 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
168 ii * BUFSIZE / 1024, \
169 ( mbedtls_timing_hardclock() - tsc ) \
170 / ( jj * BUFSIZE ) ); \
171 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000172} while( 0 )
173
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200174#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100175
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200176/* How much space to reserve for the title when printing heap usage results.
177 * Updated manually as the output of the following command:
178 *
179 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
Manuel Pégourié-Gonnardbf5b46c2022-01-05 10:34:17 +0100180 * awk '{print length+3}' | sort -rn | head -n1
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200181 *
Manuel Pégourié-Gonnardbf5b46c2022-01-05 10:34:17 +0100182 * This computes the maximum length of a title +3, because we appends "/s" and
183 * want at least one space. (If the value is too small, the only consequence
184 * is poor alignement.) */
185#define TITLE_SPACE 17
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200186
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100187#define MEMORY_MEASURE_INIT \
188 size_t max_used, max_blocks, max_bytes; \
189 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100190 size_t alloc_cnt, free_cnt, prv_alloc, prv_free; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200191 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200192 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100193
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100194#define MEMORY_MEASURE_RESET \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100195 mbedtls_memory_buffer_alloc_count_get( &prv_alloc, &prv_free );
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100196
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100197#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200198 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100199 mbedtls_memory_buffer_alloc_count_get( &alloc_cnt, &free_cnt ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200200 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
201 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100202 max_used -= prv_used; \
203 max_blocks -= prv_blocks; \
204 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100205 mbedtls_printf( "%6u heap bytes, %6u allocs", \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100206 (unsigned) max_bytes, \
207 (unsigned)( alloc_cnt - prv_alloc ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100208
209#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000210#define MEMORY_MEASURE_INIT
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100211#define MEMORY_MEASURE_RESET
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000212#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100213#endif
214
Rich Evans85b05ec2015-02-12 11:37:29 +0000215#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
216do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200217 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000218 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100219 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000220 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200221 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000222 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200223 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000224 \
225 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200226 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000227 { \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100228 MEMORY_MEASURE_RESET; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000229 CODE; \
230 } \
231 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000232 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
233 { \
234 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
235 ret = 0; \
236 } \
237 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000238 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100239 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000240 } \
241 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100242 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200243 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100244 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200245 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100246 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000247} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000248
TRodziewiczd8540832021-06-10 15:16:50 +0200249#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
250 ( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__)
251
252#define HAVE_HARDCLOCK
253
TRodziewicz9a9609e2021-06-11 13:35:10 +0200254static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200255{
256 unsigned long tsc;
257 __asm rdtsc
258 __asm mov [tsc], eax
259 return( tsc );
260}
261#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
262 ( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
263
264/* some versions of mingw-64 have 32-bit longs even on x84_64 */
265#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
266 defined(__GNUC__) && ( defined(__i386__) || ( \
267 ( defined(__amd64__) || defined( __x86_64__) ) && __SIZEOF_LONG__ == 4 ) )
268
269#define HAVE_HARDCLOCK
270
TRodziewicz9a9609e2021-06-11 13:35:10 +0200271static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200272{
273 unsigned long lo, hi;
274 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
275 return( lo );
276}
277#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
278 __GNUC__ && __i386__ */
279
280#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
281 defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) )
282
283#define HAVE_HARDCLOCK
284
TRodziewicz9a9609e2021-06-11 13:35:10 +0200285static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200286{
287 unsigned long lo, hi;
288 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
289 return( lo | ( hi << 32 ) );
290}
291#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
292 __GNUC__ && ( __amd64__ || __x86_64__ ) */
293
294#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
295 defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) )
296
297#define HAVE_HARDCLOCK
298
TRodziewicz9a9609e2021-06-11 13:35:10 +0200299static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200300{
301 unsigned long tbl, tbu0, tbu1;
302
303 do
304 {
305 asm volatile( "mftbu %0" : "=r" (tbu0) );
306 asm volatile( "mftb %0" : "=r" (tbl ) );
307 asm volatile( "mftbu %0" : "=r" (tbu1) );
308 }
309 while( tbu0 != tbu1 );
310
311 return( tbl );
312}
313#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
314 __GNUC__ && ( __powerpc__ || __ppc__ ) */
315
316#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
317 defined(__GNUC__) && defined(__sparc64__)
318
319#if defined(__OpenBSD__)
320#warning OpenBSD does not allow access to tick register using software version instead
321#else
322#define HAVE_HARDCLOCK
323
TRodziewicz9a9609e2021-06-11 13:35:10 +0200324static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200325{
326 unsigned long tick;
327 asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
328 return( tick );
329}
330#endif /* __OpenBSD__ */
331#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
332 __GNUC__ && __sparc64__ */
333
334#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
335 defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__)
336
337#define HAVE_HARDCLOCK
338
TRodziewicz9a9609e2021-06-11 13:35:10 +0200339static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200340{
341 unsigned long tick;
342 asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
343 asm volatile( "mov %%g1, %0" : "=r" (tick) );
344 return( tick );
345}
346#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
347 __GNUC__ && __sparc__ && !__sparc64__ */
348
349#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
350 defined(__GNUC__) && defined(__alpha__)
351
352#define HAVE_HARDCLOCK
353
TRodziewicz9a9609e2021-06-11 13:35:10 +0200354static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200355{
356 unsigned long cc;
357 asm volatile( "rpcc %0" : "=r" (cc) );
358 return( cc & 0xFFFFFFFF );
359}
360#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
361 __GNUC__ && __alpha__ */
362
363#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
364 defined(__GNUC__) && defined(__ia64__)
365
366#define HAVE_HARDCLOCK
367
TRodziewicz9a9609e2021-06-11 13:35:10 +0200368static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200369{
370 unsigned long itc;
371 asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
372 return( itc );
373}
374#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
375 __GNUC__ && __ia64__ */
376
377#if !defined(HAVE_HARDCLOCK) && defined(_MSC_VER) && \
378 !defined(EFIX64) && !defined(EFI32)
379
380#define HAVE_HARDCLOCK
381
TRodziewicz9a9609e2021-06-11 13:35:10 +0200382static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200383{
384 LARGE_INTEGER offset;
385
386 QueryPerformanceCounter( &offset );
387
388 return( (unsigned long)( offset.QuadPart ) );
389}
390#endif /* !HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */
391
392#if !defined(HAVE_HARDCLOCK)
393
394#define HAVE_HARDCLOCK
395
396static int hardclock_init = 0;
397static struct timeval tv_init;
398
TRodziewicz9a9609e2021-06-11 13:35:10 +0200399static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200400{
401 struct timeval tv_cur;
402
403 if( hardclock_init == 0 )
404 {
405 gettimeofday( &tv_init, NULL );
406 hardclock_init = 1;
407 }
408
409 gettimeofday( &tv_cur, NULL );
410 return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000
411 + ( tv_cur.tv_usec - tv_init.tv_usec ) );
412}
413#endif /* !HAVE_HARDCLOCK */
414
415volatile int mbedtls_timing_alarmed = 0;
416
417#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
418
419/* It's OK to use a global because alarm() is supposed to be global anyway */
420static DWORD alarmMs;
421
422static void TimerProc( void *TimerContext )
423{
424 (void) TimerContext;
425 Sleep( alarmMs );
426 mbedtls_timing_alarmed = 1;
427 /* _endthread will be called implicitly on return
428 * That ensures execution of thread funcition's epilogue */
429}
430
431static void mbedtls_set_alarm( int seconds )
432{
433 if( seconds == 0 )
434 {
435 /* No need to create a thread for this simple case.
436 * Also, this shorcut is more reliable at least on MinGW32 */
437 mbedtls_timing_alarmed = 1;
438 return;
439 }
440
441 mbedtls_timing_alarmed = 0;
442 alarmMs = seconds * 1000;
443 (void) _beginthread( TimerProc, 0, NULL );
444}
445
446#else /* _WIN32 && !EFIX64 && !EFI32 */
447
448static void sighandler( int signum )
449{
450 mbedtls_timing_alarmed = 1;
451 signal( signum, sighandler );
452}
453
454static void mbedtls_set_alarm( int seconds )
455{
456 mbedtls_timing_alarmed = 0;
457 signal( SIGALRM, sighandler );
458 alarm( seconds );
459 if( seconds == 0 )
460 {
461 /* alarm(0) cancelled any previous pending alarm, but the
462 handler won't fire, so raise the flag straight away. */
463 mbedtls_timing_alarmed = 1;
464 }
465}
466
467#endif /* _WIN32 && !EFIX64 && !EFI32 */
468
Paul Bakkera3d195c2011-11-27 21:07:34 +0000469static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000470{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000471 size_t use_len;
472 int rnd;
473
Paul Bakker5121ce52009-01-03 21:22:43 +0000474 if( rng_state != NULL )
475 rng_state = NULL;
476
Paul Bakkera3d195c2011-11-27 21:07:34 +0000477 while( len > 0 )
478 {
479 use_len = len;
480 if( use_len > sizeof(int) )
481 use_len = sizeof(int);
482
483 rnd = rand();
484 memcpy( output, &rnd, use_len );
485 output += use_len;
486 len -= use_len;
487 }
488
489 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000490}
491
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000492#define CHECK_AND_CONTINUE( R ) \
493 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100494 int CHECK_AND_CONTINUE_ret = ( R ); \
495 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000496 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
497 continue; \
498 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100499 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000500 mbedtls_exit( 1 ); \
501 } \
502 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000503
Gilles Peskine28f62f62020-07-24 02:06:46 +0200504#if defined(MBEDTLS_ECP_C)
505static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve )
506{
507 const mbedtls_ecp_curve_info *found =
508 mbedtls_ecp_curve_info_from_name( string );
509 if( found != NULL )
510 {
511 *curve = *found;
512 return( 1 );
513 }
514 else
515 return( 0 );
516}
517#endif
518
Paul Bakker5121ce52009-01-03 21:22:43 +0000519unsigned char buf[BUFSIZE];
520
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200521typedef struct {
TRodziewicz10e8cf52021-05-31 17:58:57 +0200522 char md5, ripemd160, sha1, sha256, sha512,
523 des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200524 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200525 aes_cmac, des3_cmac,
TRodziewicz10e8cf52021-05-31 17:58:57 +0200526 aria, camellia, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300527 poly1305,
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100528 ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200529 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200530} todo_list;
531
Simon Butcher63cb97e2018-12-06 17:43:31 +0000532
Paul Bakkercce9d772011-11-18 14:26:47 +0000533int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000534{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100535 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200536 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200537 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200538 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200539#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200540 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000541#endif
Gilles Peskine28f62f62020-07-24 02:06:46 +0200542#if defined(MBEDTLS_ECP_C)
543 mbedtls_ecp_curve_info single_curve[2] = {
544 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
545 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
546 };
547 const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( );
548#endif
549
550#if defined(MBEDTLS_ECP_C)
551 (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */
552#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000553
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000554 if( argc <= 1 )
555 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200556 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000557 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200558 else
559 {
560 memset( &todo, 0, sizeof( todo ) );
561
562 for( i = 1; i < argc; i++ )
563 {
TRodziewicz10e8cf52021-05-31 17:58:57 +0200564 if( strcmp( argv[i], "md5" ) == 0 )
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200565 todo.md5 = 1;
566 else if( strcmp( argv[i], "ripemd160" ) == 0 )
567 todo.ripemd160 = 1;
568 else if( strcmp( argv[i], "sha1" ) == 0 )
569 todo.sha1 = 1;
570 else if( strcmp( argv[i], "sha256" ) == 0 )
571 todo.sha256 = 1;
572 else if( strcmp( argv[i], "sha512" ) == 0 )
573 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200574 else if( strcmp( argv[i], "des3" ) == 0 )
575 todo.des3 = 1;
576 else if( strcmp( argv[i], "des" ) == 0 )
577 todo.des = 1;
578 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
579 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200580 else if( strcmp( argv[i], "aes_xts" ) == 0 )
581 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200582 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
583 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200584 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
585 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200586 else if( strcmp( argv[i], "chachapoly" ) == 0 )
587 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100588 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
589 todo.aes_cmac = 1;
590 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
591 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100592 else if( strcmp( argv[i], "aria" ) == 0 )
593 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200594 else if( strcmp( argv[i], "camellia" ) == 0 )
595 todo.camellia = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300596 else if( strcmp( argv[i], "chacha20" ) == 0 )
597 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300598 else if( strcmp( argv[i], "poly1305" ) == 0 )
599 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200600 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
601 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100602 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
603 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200604 else if( strcmp( argv[i], "rsa" ) == 0 )
605 todo.rsa = 1;
606 else if( strcmp( argv[i], "dhm" ) == 0 )
607 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200608 else if( strcmp( argv[i], "ecdsa" ) == 0 )
609 todo.ecdsa = 1;
610 else if( strcmp( argv[i], "ecdh" ) == 0 )
611 todo.ecdh = 1;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200612#if defined(MBEDTLS_ECP_C)
613 else if( set_ecp_curve( argv[i], single_curve ) )
614 curve_list = single_curve;
615#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200616 else
617 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200618 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
619 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200620 }
621 }
622 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000623
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200624 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000625
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200626#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200627 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000628#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200629 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200630 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200631
Manuel Pégourié-Gonnarda93aa582022-01-04 09:47:54 +0100632 /* Avoid "unused static function" warning in configurations without
633 * symmetric crypto. */
Manuel Pégourié-Gonnardcd4ad0c2022-01-05 09:54:37 +0100634 (void) mbedtls_timing_hardclock;
Manuel Pégourié-Gonnarda93aa582022-01-04 09:47:54 +0100635
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200636#if defined(MBEDTLS_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200637 if( todo.md5 )
TRodziewicz26371e42021-06-08 16:45:41 +0200638 TIME_AND_TSC( "MD5", mbedtls_md5( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000639#endif
640
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200641#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200642 if( todo.ripemd160 )
TRodziewicz26371e42021-06-08 16:45:41 +0200643 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100644#endif
645
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200646#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200647 if( todo.sha1 )
TRodziewicz26371e42021-06-08 16:45:41 +0200648 TIME_AND_TSC( "SHA-1", mbedtls_sha1( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000649#endif
650
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200651#if defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200652 if( todo.sha256 )
TRodziewicz26371e42021-06-08 16:45:41 +0200653 TIME_AND_TSC( "SHA-256", mbedtls_sha256( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000654#endif
655
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200656#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200657 if( todo.sha512 )
TRodziewicz26371e42021-06-08 16:45:41 +0200658 TIME_AND_TSC( "SHA-512", mbedtls_sha512( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000659#endif
660
Simon Butcher549dc3d2016-10-05 14:14:19 +0100661#if defined(MBEDTLS_DES_C)
662#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200663 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200664 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200665 mbedtls_des3_context des3;
666 mbedtls_des3_init( &des3 );
Gilles Peskine7820a572021-07-07 21:08:28 +0200667 if( mbedtls_des3_set3key_enc( &des3, tmp ) != 0 )
668 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200669 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200670 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
671 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200672 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000673
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200674 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200675 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200676 mbedtls_des_context des;
677 mbedtls_des_init( &des );
Gilles Peskine7820a572021-07-07 21:08:28 +0200678 if( mbedtls_des_setkey_enc( &des, tmp ) != 0 )
679 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200680 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200681 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
682 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200683 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100684
685#endif /* MBEDTLS_CIPHER_MODE_CBC */
686#if defined(MBEDTLS_CMAC_C)
687 if( todo.des3_cmac )
688 {
689 unsigned char output[8];
690 const mbedtls_cipher_info_t *cipher_info;
691
692 memset( buf, 0, sizeof( buf ) );
693 memset( tmp, 0, sizeof( tmp ) );
694
695 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
696
697 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100698 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
699 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100700 }
701#endif /* MBEDTLS_CMAC_C */
702#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000703
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200704#if defined(MBEDTLS_AES_C)
705#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200706 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000707 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100708 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200709 mbedtls_aes_context aes;
710 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200711 for( keysize = 128; keysize <= 256; keysize += 64 )
712 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200713 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000714
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200715 memset( buf, 0, sizeof( buf ) );
716 memset( tmp, 0, sizeof( tmp ) );
Gilles Peskine7820a572021-07-07 21:08:28 +0200717 CHECK_AND_CONTINUE( mbedtls_aes_setkey_enc( &aes, tmp, keysize ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000718
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200719 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200720 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200721 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200722 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000723 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200724#endif
Aorimn5f778012016-06-09 23:22:58 +0200725#if defined(MBEDTLS_CIPHER_MODE_XTS)
726 if( todo.aes_xts )
727 {
728 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100729 mbedtls_aes_xts_context ctx;
730
731 mbedtls_aes_xts_init( &ctx );
732 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200733 {
734 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
735
736 memset( buf, 0, sizeof( buf ) );
737 memset( tmp, 0, sizeof( tmp ) );
Gilles Peskine7820a572021-07-07 21:08:28 +0200738 CHECK_AND_CONTINUE( mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 ) );
Aorimn5f778012016-06-09 23:22:58 +0200739
740 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100741 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
742 tmp, buf, buf ) );
743
744 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200745 }
Aorimn5f778012016-06-09 23:22:58 +0200746 }
747#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200748#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200749 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000750 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100751 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200752 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200753
754 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200755 for( keysize = 128; keysize <= 256; keysize += 64 )
756 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200757 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000758
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200759 memset( buf, 0, sizeof( buf ) );
760 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200761 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000762
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200763 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200764 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200765 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100766
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200767 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200768 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000769 }
770#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200771#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200772 if( todo.aes_ccm )
773 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100774 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200775 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200776
777 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200778 for( keysize = 128; keysize <= 256; keysize += 64 )
779 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200780 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200781
782 memset( buf, 0, sizeof( buf ) );
783 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200784 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200785
786 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200787 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200788 12, NULL, 0, buf, buf, tmp, 16 ) );
789
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200790 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200791 }
792 }
793#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200794#if defined(MBEDTLS_CHACHAPOLY_C)
795 if( todo.chachapoly )
796 {
797 mbedtls_chachapoly_context chachapoly;
798
799 mbedtls_chachapoly_init( &chachapoly );
800 memset( buf, 0, sizeof( buf ) );
801 memset( tmp, 0, sizeof( tmp ) );
802
803 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
804
805 mbedtls_chachapoly_setkey( &chachapoly, tmp );
806
807 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200808 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
809 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200810
811 mbedtls_chachapoly_free( &chachapoly );
812 }
813#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100814#if defined(MBEDTLS_CMAC_C)
815 if( todo.aes_cmac )
816 {
817 unsigned char output[16];
818 const mbedtls_cipher_info_t *cipher_info;
819 mbedtls_cipher_type_t cipher_type;
820 int keysize;
821
822 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
823 keysize <= 256;
824 keysize += 64, cipher_type++ )
825 {
826 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
827
828 memset( buf, 0, sizeof( buf ) );
829 memset( tmp, 0, sizeof( tmp ) );
830
831 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
832
833 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100834 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
835 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100836 }
837
838 memset( buf, 0, sizeof( buf ) );
839 memset( tmp, 0, sizeof( tmp ) );
840 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100841 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
842 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100843 }
844#endif /* MBEDTLS_CMAC_C */
845#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000846
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100847#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
848 if( todo.aria )
849 {
850 int keysize;
851 mbedtls_aria_context aria;
852 mbedtls_aria_init( &aria );
853 for( keysize = 128; keysize <= 256; keysize += 64 )
854 {
855 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
856
857 memset( buf, 0, sizeof( buf ) );
858 memset( tmp, 0, sizeof( tmp ) );
859 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
860
861 TIME_AND_TSC( title,
862 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
863 BUFSIZE, tmp, buf, buf ) );
864 }
865 mbedtls_aria_free( &aria );
866 }
867#endif
868
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200869#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200870 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000871 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100872 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200873 mbedtls_camellia_context camellia;
874 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200875 for( keysize = 128; keysize <= 256; keysize += 64 )
876 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200877 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000878
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200879 memset( buf, 0, sizeof( buf ) );
880 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200881 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000882
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200883 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200884 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200885 BUFSIZE, tmp, buf, buf ) );
886 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200887 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000888 }
889#endif
890
Daniel King34b822c2016-05-15 17:28:08 -0300891#if defined(MBEDTLS_CHACHA20_C)
892 if ( todo.chacha20 )
893 {
894 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
895 }
896#endif
897
Daniel Kingadc32c02016-05-16 18:25:45 -0300898#if defined(MBEDTLS_POLY1305_C)
899 if ( todo.poly1305 )
900 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200901 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300902 }
903#endif
904
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200905#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200906 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200907 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200908 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000909
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200910 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200911 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200912 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200913 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200914 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100915 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000916
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100917 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200918 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200919 mbedtls_exit(1);
920 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200921 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200922 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200923 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200924 }
Paul Bakker02faf452011-11-29 11:23:58 +0000925#endif
926
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200927#if defined(MBEDTLS_HMAC_DRBG_C)
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100928 if( todo.hmac_drbg )
929 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200930 mbedtls_hmac_drbg_context hmac_drbg;
931 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100932
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200933 mbedtls_hmac_drbg_init( &hmac_drbg );
934
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200935#if defined(MBEDTLS_SHA1_C)
936 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
937 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100938
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200939 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200940 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100941 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200942 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100943
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200944 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200945 mbedtls_exit(1);
946 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
947 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100948 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200949 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100950#endif
951
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200952#if defined(MBEDTLS_SHA256_C)
953 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL )
954 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100955
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200956 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200957 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100958 TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200959 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100960
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200961 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200962 mbedtls_exit(1);
963 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
964 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100965 TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200966 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100967#endif
Ron Eldor278af452018-06-20 18:40:21 +0300968 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100969 }
970#endif
971
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200972#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200973 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +0000974 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100975 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200976 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +0200977 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200978 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200979 mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200980
Ronald Cronc1905a12021-06-05 11:11:14 +0200981 mbedtls_rsa_init( &rsa );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200982 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200983
984 TIME_PUBLIC( title, " public",
985 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200986 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200987
988 TIME_PUBLIC( title, "private",
989 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200990 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200991
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200992 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200993 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000994 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000995#endif
996
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200997#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200998 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100999 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001000 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -08001001 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001002 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001003 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001004 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001005 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001006 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001007 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001008 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
1009
1010 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
1011 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
1012 sizeof( dhm_P_3072 ) };
1013
1014 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
1015 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
1016 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001017
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001018 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001019 size_t olen;
Gilles Peskine487bbf62021-05-27 22:17:07 +02001020 size_t n;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001021 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001022 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001023 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001024
Hanno Beckerb9539212017-10-04 13:13:34 +01001025 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
1026 dhm_P_size[i] ) != 0 ||
1027 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
1028 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001029 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001030 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001031 }
1032
Gilles Peskine487bbf62021-05-27 22:17:07 +02001033 n = mbedtls_mpi_size( &dhm.P );
1034 mbedtls_dhm_make_public( &dhm, (int) n, buf, n, myrand, NULL );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001035 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
1036 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001037
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001038 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001039 TIME_PUBLIC( title, "handshake",
Gilles Peskine487bbf62021-05-27 22:17:07 +02001040 ret |= mbedtls_dhm_make_public( &dhm, (int) n, buf, n,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001041 myrand, NULL );
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001042 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001043
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001044 mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001045 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001046 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001047
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001048 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001049 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001050 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001051#endif
1052
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001053#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001054 if( todo.ecdsa )
1055 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001056 mbedtls_ecdsa_context ecdsa;
1057 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001058 size_t sig_len;
1059
1060 memset( buf, 0x2A, sizeof( buf ) );
1061
Gilles Peskine28f62f62020-07-24 02:06:46 +02001062 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001063 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001064 curve_info++ )
1065 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001066 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001067 continue;
1068
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001069 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001070
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001071 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
1072 mbedtls_exit( 1 );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001073
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001074 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001075 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001076 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001077 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Gilles Peskinef00f1522021-06-22 00:09:00 +02001078 tmp, sizeof( tmp ), &sig_len, myrand, NULL ) );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001079
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001080 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001081 }
1082
Gilles Peskine28f62f62020-07-24 02:06:46 +02001083 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001084 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001085 curve_info++ )
1086 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001087 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001088 continue;
1089
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001090 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001091
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001092 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001093 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Gilles Peskinef00f1522021-06-22 00:09:00 +02001094 tmp, sizeof( tmp ), &sig_len, myrand, NULL ) != 0 )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001095 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001096 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001097 }
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001098
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001099 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001100 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001101 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001102 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001103 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001104
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001105 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001106 }
1107 }
1108#endif
1109
Janos Follath52735ef2018-08-15 10:19:16 +01001110#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001111 if( todo.ecdh )
1112 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001113 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001114 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001115 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
1116#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
1117 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001118#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001119#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
1120 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
1121#endif
1122 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
1123 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001124 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001125 size_t olen;
Gilles Peskine28f62f62020-07-24 02:06:46 +02001126 const mbedtls_ecp_curve_info *selected_montgomery_curve_list =
1127 montgomery_curve_list;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001128
Gilles Peskine28f62f62020-07-24 02:06:46 +02001129 if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve )
1130 {
1131 mbedtls_ecp_group grp;
1132 mbedtls_ecp_group_init( &grp );
1133 if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 )
1134 mbedtls_exit( 1 );
1135 if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
1136 selected_montgomery_curve_list = single_curve;
1137 else /* empty list */
1138 selected_montgomery_curve_list = single_curve + 1;
1139 mbedtls_ecp_group_free( &grp );
1140 }
1141
1142 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001143 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001144 curve_info++ )
1145 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001146 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1147 continue;
1148
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001149 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001150
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001151 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1152 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1153 myrand, NULL ) );
1154 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001155
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001156 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001157 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001158 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001159 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001160 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001161 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1162 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001163 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001164 }
1165
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001166 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001167 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001168 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1169 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001170 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001171 mbedtls_ecdh_init( &ecdh );
1172 mbedtls_mpi_init( &z );
1173
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001174 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1175 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001176
1177 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
1178 curve_info->name );
1179 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001180 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
1181 myrand, NULL ) );
1182 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1183 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001184
1185 mbedtls_ecdh_free( &ecdh );
1186 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001187 }
1188
Gilles Peskine28f62f62020-07-24 02:06:46 +02001189 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001190 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001191 curve_info++ )
1192 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001193 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1194 continue;
1195
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001196 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001197
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001198 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1199 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1200 myrand, NULL ) );
1201 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
1202 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1203 myrand, NULL ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001204
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001205 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001206 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001207 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001208 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1209 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001210 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001211 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001212
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001213 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001214 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001215 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1216 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001217 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001218 mbedtls_ecdh_init( &ecdh );
1219 mbedtls_mpi_init( &z );
1220
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001221 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1222 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1223 myrand, NULL ) );
1224 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001225
1226 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1227 curve_info->name );
1228 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001229 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1230 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001231
1232 mbedtls_ecdh_free( &ecdh );
1233 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001234 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001235 }
1236#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001237
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001238#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001239 if( todo.ecdh )
1240 {
1241 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1242 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001243 const mbedtls_ecp_curve_info *curve_info;
1244 size_t olen;
1245
1246 for( curve_info = curve_list;
1247 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1248 curve_info++ )
1249 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001250 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1251 continue;
1252
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001253 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001254 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001255
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001256 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001257 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001258 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001259
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001260 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001261 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 +01001262
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001263 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1264 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 +01001265
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001266 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1267 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 +01001268
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001269 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 +00001270 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001271
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001272 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001273 );
1274
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001275 }
1276 }
1277#endif
1278
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001279 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001280
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001281#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1282 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001283#endif
1284
Paul Bakkercce9d772011-11-18 14:26:47 +00001285#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001286 mbedtls_printf( " Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00001287 fflush( stdout ); getchar();
1288#endif
1289
k-stachowiak776521a2019-05-23 09:46:47 +02001290 mbedtls_exit( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +00001291}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001292
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001293#endif /* MBEDTLS_TIMING_C */