blob: 2f9a67395dc823024ae0e518006a8c69bc5b9923 [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
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020024#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020026#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000027
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000028#include "mbedtls/platform.h"
Christoph M. Wintersteigercc91fe22019-02-20 18:06:00 +000029#if !defined(MBEDTLS_PLATFORM_C)
Rich Evans18b78c72015-02-11 14:06:19 +000030#include <stdio.h>
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010031#include <stdlib.h>
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020032#define mbedtls_exit exit
33#define mbedtls_printf printf
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020034#define mbedtls_free free
Rich Evansf90016a2015-01-19 14:26:37 +000035#endif
36
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020037#if !defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000038int main( void )
39{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020040 mbedtls_printf("MBEDTLS_TIMING_C not defined.\n");
k-stachowiak776521a2019-05-23 09:46:47 +020041 mbedtls_exit( 0 );
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000042}
43#else
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010044
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000045#include <string.h>
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020046#include <stdlib.h>
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010047
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000048#include "mbedtls/timing.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000049
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000050#include "mbedtls/md4.h"
51#include "mbedtls/md5.h"
52#include "mbedtls/ripemd160.h"
53#include "mbedtls/sha1.h"
54#include "mbedtls/sha256.h"
55#include "mbedtls/sha512.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010056
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000057#include "mbedtls/arc4.h"
58#include "mbedtls/des.h"
59#include "mbedtls/aes.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010060#include "mbedtls/aria.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000061#include "mbedtls/blowfish.h"
62#include "mbedtls/camellia.h"
Daniel King34b822c2016-05-15 17:28:08 -030063#include "mbedtls/chacha20.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000064#include "mbedtls/gcm.h"
65#include "mbedtls/ccm.h"
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +020066#include "mbedtls/chachapoly.h"
Simon Butcher549dc3d2016-10-05 14:14:19 +010067#include "mbedtls/cmac.h"
Daniel Kingadc32c02016-05-16 18:25:45 -030068#include "mbedtls/poly1305.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010069
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000070#include "mbedtls/ctr_drbg.h"
71#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010072
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000073#include "mbedtls/rsa.h"
74#include "mbedtls/dhm.h"
75#include "mbedtls/ecdsa.h"
76#include "mbedtls/ecdh.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010077
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000078#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000079
TRodziewiczd8540832021-06-10 15:16:50 +020080#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
81
82#include <windows.h>
83#include <process.h>
84
85struct _hr_time
86{
87 LARGE_INTEGER start;
88};
89
90#else
91
92#include <unistd.h>
93#include <sys/types.h>
94#include <sys/time.h>
95#include <signal.h>
96#include <time.h>
97
98struct _hr_time
99{
100 struct timeval start;
101};
102
103#endif /* _WIN32 && !EFIX64 && !EFI32 */
104
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200105#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000106#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +0000107#endif
108
TRodziewiczd8540832021-06-10 15:16:50 +0200109static void mbedtls_set_alarm( int seconds );
110
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000111/*
112 * For heap usage estimates, we need an estimate of the overhead per allocated
113 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
114 * so use that as our baseline.
115 */
116#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
117
118/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200119 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000120 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +0100121#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000122
Paul Bakker02faf452011-11-29 11:23:58 +0000123#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100124#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +0100125#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +0000126
Rich Evans85b05ec2015-02-12 11:37:29 +0000127#define OPTIONS \
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200128 "md4, md5, ripemd160, sha1, sha256, sha512,\n" \
Daniel King34b822c2016-05-15 17:28:08 -0300129 "arc4, des3, des, camellia, blowfish, chacha20,\n" \
Zhai Zhaoxuane22da992020-05-09 23:50:32 +0800130 "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -0300131 "aes_cmac, des3_cmac, poly1305\n" \
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100132 "ctr_drbg, hmac_drbg\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +0000133 "rsa, dhm, ecdsa, ecdh.\n"
134
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200135#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000136#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100137 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200138 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000139#else
140#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200141 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000142#endif
143
144#define TIME_AND_TSC( TITLE, CODE ) \
145do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200146 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200147 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000148 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200149 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000150 fflush( stdout ); \
151 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200152 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200153 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000154 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200155 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000156 } \
157 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200158 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200159 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000160 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200161 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000162 } \
163 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200164 if( ret != 0 ) \
165 { \
166 PRINT_ERROR; \
167 } \
168 else \
169 { \
170 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
171 ii * BUFSIZE / 1024, \
172 ( mbedtls_timing_hardclock() - tsc ) \
173 / ( jj * BUFSIZE ) ); \
174 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000175} while( 0 )
176
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200177#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100178
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200179/* How much space to reserve for the title when printing heap usage results.
180 * Updated manually as the output of the following command:
181 *
182 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
183 * awk '{print length+2}' | sort -rn | head -n1
184 *
185 * This computes the maximum length of a title +2 (because we appends "/s").
186 * (If the value is too small, the only consequence is poor alignement.) */
187#define TITLE_SPACE 16
188
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100189#define MEMORY_MEASURE_INIT \
190 size_t max_used, max_blocks, max_bytes; \
191 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200192 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200193 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100194
195#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200196 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200197 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
198 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100199 max_used -= prv_used; \
200 max_blocks -= prv_blocks; \
201 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200202 mbedtls_printf( "%6u heap bytes", (unsigned) max_bytes );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100203
204#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000205#define MEMORY_MEASURE_INIT
206#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100207#endif
208
Rich Evans85b05ec2015-02-12 11:37:29 +0000209#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
210do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200211 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000212 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100213 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000214 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200215 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000216 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200217 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000218 \
219 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200220 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000221 { \
222 CODE; \
223 } \
224 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000225 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
226 { \
227 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
228 ret = 0; \
229 } \
230 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000231 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100232 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000233 } \
234 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100235 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200236 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100237 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200238 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100239 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000240} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000241
TRodziewiczd8540832021-06-10 15:16:50 +0200242#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
243 ( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__)
244
245#define HAVE_HARDCLOCK
246
247unsigned long mbedtls_timing_hardclock( void )
248{
249 unsigned long tsc;
250 __asm rdtsc
251 __asm mov [tsc], eax
252 return( tsc );
253}
254#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
255 ( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
256
257/* some versions of mingw-64 have 32-bit longs even on x84_64 */
258#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
259 defined(__GNUC__) && ( defined(__i386__) || ( \
260 ( defined(__amd64__) || defined( __x86_64__) ) && __SIZEOF_LONG__ == 4 ) )
261
262#define HAVE_HARDCLOCK
263
264unsigned long mbedtls_timing_hardclock( void )
265{
266 unsigned long lo, hi;
267 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
268 return( lo );
269}
270#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
271 __GNUC__ && __i386__ */
272
273#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
274 defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) )
275
276#define HAVE_HARDCLOCK
277
278unsigned long mbedtls_timing_hardclock( void )
279{
280 unsigned long lo, hi;
281 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
282 return( lo | ( hi << 32 ) );
283}
284#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
285 __GNUC__ && ( __amd64__ || __x86_64__ ) */
286
287#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
288 defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) )
289
290#define HAVE_HARDCLOCK
291
292unsigned long mbedtls_timing_hardclock( void )
293{
294 unsigned long tbl, tbu0, tbu1;
295
296 do
297 {
298 asm volatile( "mftbu %0" : "=r" (tbu0) );
299 asm volatile( "mftb %0" : "=r" (tbl ) );
300 asm volatile( "mftbu %0" : "=r" (tbu1) );
301 }
302 while( tbu0 != tbu1 );
303
304 return( tbl );
305}
306#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
307 __GNUC__ && ( __powerpc__ || __ppc__ ) */
308
309#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
310 defined(__GNUC__) && defined(__sparc64__)
311
312#if defined(__OpenBSD__)
313#warning OpenBSD does not allow access to tick register using software version instead
314#else
315#define HAVE_HARDCLOCK
316
317unsigned long mbedtls_timing_hardclock( void )
318{
319 unsigned long tick;
320 asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
321 return( tick );
322}
323#endif /* __OpenBSD__ */
324#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
325 __GNUC__ && __sparc64__ */
326
327#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
328 defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__)
329
330#define HAVE_HARDCLOCK
331
332unsigned long mbedtls_timing_hardclock( void )
333{
334 unsigned long tick;
335 asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
336 asm volatile( "mov %%g1, %0" : "=r" (tick) );
337 return( tick );
338}
339#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
340 __GNUC__ && __sparc__ && !__sparc64__ */
341
342#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
343 defined(__GNUC__) && defined(__alpha__)
344
345#define HAVE_HARDCLOCK
346
347unsigned long mbedtls_timing_hardclock( void )
348{
349 unsigned long cc;
350 asm volatile( "rpcc %0" : "=r" (cc) );
351 return( cc & 0xFFFFFFFF );
352}
353#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
354 __GNUC__ && __alpha__ */
355
356#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
357 defined(__GNUC__) && defined(__ia64__)
358
359#define HAVE_HARDCLOCK
360
361unsigned long mbedtls_timing_hardclock( void )
362{
363 unsigned long itc;
364 asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
365 return( itc );
366}
367#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
368 __GNUC__ && __ia64__ */
369
370#if !defined(HAVE_HARDCLOCK) && defined(_MSC_VER) && \
371 !defined(EFIX64) && !defined(EFI32)
372
373#define HAVE_HARDCLOCK
374
375unsigned long mbedtls_timing_hardclock( void )
376{
377 LARGE_INTEGER offset;
378
379 QueryPerformanceCounter( &offset );
380
381 return( (unsigned long)( offset.QuadPart ) );
382}
383#endif /* !HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */
384
385#if !defined(HAVE_HARDCLOCK)
386
387#define HAVE_HARDCLOCK
388
389static int hardclock_init = 0;
390static struct timeval tv_init;
391
392unsigned long mbedtls_timing_hardclock( void )
393{
394 struct timeval tv_cur;
395
396 if( hardclock_init == 0 )
397 {
398 gettimeofday( &tv_init, NULL );
399 hardclock_init = 1;
400 }
401
402 gettimeofday( &tv_cur, NULL );
403 return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000
404 + ( tv_cur.tv_usec - tv_init.tv_usec ) );
405}
406#endif /* !HAVE_HARDCLOCK */
407
408volatile int mbedtls_timing_alarmed = 0;
409
410#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
411
412/* It's OK to use a global because alarm() is supposed to be global anyway */
413static DWORD alarmMs;
414
415static void TimerProc( void *TimerContext )
416{
417 (void) TimerContext;
418 Sleep( alarmMs );
419 mbedtls_timing_alarmed = 1;
420 /* _endthread will be called implicitly on return
421 * That ensures execution of thread funcition's epilogue */
422}
423
424static void mbedtls_set_alarm( int seconds )
425{
426 if( seconds == 0 )
427 {
428 /* No need to create a thread for this simple case.
429 * Also, this shorcut is more reliable at least on MinGW32 */
430 mbedtls_timing_alarmed = 1;
431 return;
432 }
433
434 mbedtls_timing_alarmed = 0;
435 alarmMs = seconds * 1000;
436 (void) _beginthread( TimerProc, 0, NULL );
437}
438
439#else /* _WIN32 && !EFIX64 && !EFI32 */
440
441static void sighandler( int signum )
442{
443 mbedtls_timing_alarmed = 1;
444 signal( signum, sighandler );
445}
446
447static void mbedtls_set_alarm( int seconds )
448{
449 mbedtls_timing_alarmed = 0;
450 signal( SIGALRM, sighandler );
451 alarm( seconds );
452 if( seconds == 0 )
453 {
454 /* alarm(0) cancelled any previous pending alarm, but the
455 handler won't fire, so raise the flag straight away. */
456 mbedtls_timing_alarmed = 1;
457 }
458}
459
460#endif /* _WIN32 && !EFIX64 && !EFI32 */
461
Paul Bakkera3d195c2011-11-27 21:07:34 +0000462static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000463{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000464 size_t use_len;
465 int rnd;
466
Paul Bakker5121ce52009-01-03 21:22:43 +0000467 if( rng_state != NULL )
468 rng_state = NULL;
469
Paul Bakkera3d195c2011-11-27 21:07:34 +0000470 while( len > 0 )
471 {
472 use_len = len;
473 if( use_len > sizeof(int) )
474 use_len = sizeof(int);
475
476 rnd = rand();
477 memcpy( output, &rnd, use_len );
478 output += use_len;
479 len -= use_len;
480 }
481
482 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000483}
484
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000485#define CHECK_AND_CONTINUE( R ) \
486 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100487 int CHECK_AND_CONTINUE_ret = ( R ); \
488 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000489 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
490 continue; \
491 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100492 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000493 mbedtls_exit( 1 ); \
494 } \
495 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000496
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100497/*
498 * Clear some memory that was used to prepare the context
499 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200500#if defined(MBEDTLS_ECP_C)
501void ecp_clear_precomputed( mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100502{
kXuanba9cb762021-04-08 14:32:06 +0800503 if( grp->T != NULL
504#if MBEDTLS_ECP_FIXED_POINT_OPTIM == 1
505 && grp->T_size != 0
506#endif
507 )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100508 {
509 size_t i;
510 for( i = 0; i < grp->T_size; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200511 mbedtls_ecp_point_free( &grp->T[i] );
512 mbedtls_free( grp->T );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100513 }
514 grp->T = NULL;
515 grp->T_size = 0;
516}
517#else
518#define ecp_clear_precomputed( g )
519#endif
520
Gilles Peskine28f62f62020-07-24 02:06:46 +0200521#if defined(MBEDTLS_ECP_C)
522static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve )
523{
524 const mbedtls_ecp_curve_info *found =
525 mbedtls_ecp_curve_info_from_name( string );
526 if( found != NULL )
527 {
528 *curve = *found;
529 return( 1 );
530 }
531 else
532 return( 0 );
533}
534#endif
535
Paul Bakker5121ce52009-01-03 21:22:43 +0000536unsigned char buf[BUFSIZE];
537
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200538typedef struct {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200539 char md4, md5, ripemd160, sha1, sha256, sha512,
Simon Butcher549dc3d2016-10-05 14:14:19 +0100540 arc4, des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200541 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200542 aes_cmac, des3_cmac,
Manuel Pégourié-Gonnard39b19042018-06-07 12:01:33 +0200543 aria, camellia, blowfish, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300544 poly1305,
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100545 ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200546 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200547} todo_list;
548
Simon Butcher63cb97e2018-12-06 17:43:31 +0000549
Paul Bakkercce9d772011-11-18 14:26:47 +0000550int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000551{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100552 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200553 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200554 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200555 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200556#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200557 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000558#endif
Gilles Peskine28f62f62020-07-24 02:06:46 +0200559#if defined(MBEDTLS_ECP_C)
560 mbedtls_ecp_curve_info single_curve[2] = {
561 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
562 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
563 };
564 const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( );
565#endif
566
567#if defined(MBEDTLS_ECP_C)
568 (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */
569#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000570
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000571 if( argc <= 1 )
572 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200573 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000574 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200575 else
576 {
577 memset( &todo, 0, sizeof( todo ) );
578
579 for( i = 1; i < argc; i++ )
580 {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200581 if( strcmp( argv[i], "md4" ) == 0 )
582 todo.md4 = 1;
583 else if( strcmp( argv[i], "md5" ) == 0 )
584 todo.md5 = 1;
585 else if( strcmp( argv[i], "ripemd160" ) == 0 )
586 todo.ripemd160 = 1;
587 else if( strcmp( argv[i], "sha1" ) == 0 )
588 todo.sha1 = 1;
589 else if( strcmp( argv[i], "sha256" ) == 0 )
590 todo.sha256 = 1;
591 else if( strcmp( argv[i], "sha512" ) == 0 )
592 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200593 else if( strcmp( argv[i], "arc4" ) == 0 )
594 todo.arc4 = 1;
595 else if( strcmp( argv[i], "des3" ) == 0 )
596 todo.des3 = 1;
597 else if( strcmp( argv[i], "des" ) == 0 )
598 todo.des = 1;
599 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
600 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200601 else if( strcmp( argv[i], "aes_xts" ) == 0 )
602 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200603 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
604 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200605 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
606 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200607 else if( strcmp( argv[i], "chachapoly" ) == 0 )
608 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100609 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
610 todo.aes_cmac = 1;
611 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
612 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100613 else if( strcmp( argv[i], "aria" ) == 0 )
614 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200615 else if( strcmp( argv[i], "camellia" ) == 0 )
616 todo.camellia = 1;
617 else if( strcmp( argv[i], "blowfish" ) == 0 )
618 todo.blowfish = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300619 else if( strcmp( argv[i], "chacha20" ) == 0 )
620 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300621 else if( strcmp( argv[i], "poly1305" ) == 0 )
622 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200623 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
624 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100625 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
626 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200627 else if( strcmp( argv[i], "rsa" ) == 0 )
628 todo.rsa = 1;
629 else if( strcmp( argv[i], "dhm" ) == 0 )
630 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200631 else if( strcmp( argv[i], "ecdsa" ) == 0 )
632 todo.ecdsa = 1;
633 else if( strcmp( argv[i], "ecdh" ) == 0 )
634 todo.ecdh = 1;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200635#if defined(MBEDTLS_ECP_C)
636 else if( set_ecp_curve( argv[i], single_curve ) )
637 curve_list = single_curve;
638#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200639 else
640 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200641 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
642 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200643 }
644 }
645 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000646
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200647 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000648
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200649#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200650 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000651#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200652 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200653 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200654
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200655#if defined(MBEDTLS_MD4_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200656 if( todo.md4 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100657 TIME_AND_TSC( "MD4", mbedtls_md4_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000658#endif
659
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200660#if defined(MBEDTLS_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200661 if( todo.md5 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100662 TIME_AND_TSC( "MD5", mbedtls_md5_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000663#endif
664
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200665#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200666 if( todo.ripemd160 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100667 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160_ret( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100668#endif
669
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200670#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200671 if( todo.sha1 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100672 TIME_AND_TSC( "SHA-1", mbedtls_sha1_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000673#endif
674
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200675#if defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200676 if( todo.sha256 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100677 TIME_AND_TSC( "SHA-256", mbedtls_sha256_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000678#endif
679
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200680#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200681 if( todo.sha512 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100682 TIME_AND_TSC( "SHA-512", mbedtls_sha512_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000683#endif
684
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200685#if defined(MBEDTLS_ARC4_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200686 if( todo.arc4 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200687 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200688 mbedtls_arc4_context arc4;
689 mbedtls_arc4_init( &arc4 );
690 mbedtls_arc4_setup( &arc4, tmp, 32 );
691 TIME_AND_TSC( "ARC4", mbedtls_arc4_crypt( &arc4, BUFSIZE, buf, buf ) );
692 mbedtls_arc4_free( &arc4 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200693 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000694#endif
695
Simon Butcher549dc3d2016-10-05 14:14:19 +0100696#if defined(MBEDTLS_DES_C)
697#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200698 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200699 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200700 mbedtls_des3_context des3;
701 mbedtls_des3_init( &des3 );
702 mbedtls_des3_set3key_enc( &des3, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200703 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200704 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
705 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200706 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000707
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200708 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200709 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200710 mbedtls_des_context des;
711 mbedtls_des_init( &des );
712 mbedtls_des_setkey_enc( &des, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200713 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200714 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
715 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200716 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100717
718#endif /* MBEDTLS_CIPHER_MODE_CBC */
719#if defined(MBEDTLS_CMAC_C)
720 if( todo.des3_cmac )
721 {
722 unsigned char output[8];
723 const mbedtls_cipher_info_t *cipher_info;
724
725 memset( buf, 0, sizeof( buf ) );
726 memset( tmp, 0, sizeof( tmp ) );
727
728 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
729
730 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100731 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
732 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100733 }
734#endif /* MBEDTLS_CMAC_C */
735#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000736
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200737#if defined(MBEDTLS_AES_C)
738#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200739 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000740 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100741 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200742 mbedtls_aes_context aes;
743 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200744 for( keysize = 128; keysize <= 256; keysize += 64 )
745 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200746 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000747
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200748 memset( buf, 0, sizeof( buf ) );
749 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200750 mbedtls_aes_setkey_enc( &aes, tmp, keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000751
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200752 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200753 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200754 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200755 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000756 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200757#endif
Aorimn5f778012016-06-09 23:22:58 +0200758#if defined(MBEDTLS_CIPHER_MODE_XTS)
759 if( todo.aes_xts )
760 {
761 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100762 mbedtls_aes_xts_context ctx;
763
764 mbedtls_aes_xts_init( &ctx );
765 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200766 {
767 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
768
769 memset( buf, 0, sizeof( buf ) );
770 memset( tmp, 0, sizeof( tmp ) );
Jaeden Amero9366feb2018-05-29 18:55:17 +0100771 mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 );
Aorimn5f778012016-06-09 23:22:58 +0200772
773 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100774 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
775 tmp, buf, buf ) );
776
777 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200778 }
Aorimn5f778012016-06-09 23:22:58 +0200779 }
780#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200781#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200782 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000783 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100784 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200785 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200786
787 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200788 for( keysize = 128; keysize <= 256; keysize += 64 )
789 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200790 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000791
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200792 memset( buf, 0, sizeof( buf ) );
793 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200794 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000795
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200796 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200797 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200798 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100799
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200800 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200801 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000802 }
803#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200804#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200805 if( todo.aes_ccm )
806 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100807 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200808 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200809
810 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200811 for( keysize = 128; keysize <= 256; keysize += 64 )
812 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200813 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200814
815 memset( buf, 0, sizeof( buf ) );
816 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200817 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200818
819 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200820 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200821 12, NULL, 0, buf, buf, tmp, 16 ) );
822
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200823 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200824 }
825 }
826#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200827#if defined(MBEDTLS_CHACHAPOLY_C)
828 if( todo.chachapoly )
829 {
830 mbedtls_chachapoly_context chachapoly;
831
832 mbedtls_chachapoly_init( &chachapoly );
833 memset( buf, 0, sizeof( buf ) );
834 memset( tmp, 0, sizeof( tmp ) );
835
836 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
837
838 mbedtls_chachapoly_setkey( &chachapoly, tmp );
839
840 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200841 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
842 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200843
844 mbedtls_chachapoly_free( &chachapoly );
845 }
846#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100847#if defined(MBEDTLS_CMAC_C)
848 if( todo.aes_cmac )
849 {
850 unsigned char output[16];
851 const mbedtls_cipher_info_t *cipher_info;
852 mbedtls_cipher_type_t cipher_type;
853 int keysize;
854
855 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
856 keysize <= 256;
857 keysize += 64, cipher_type++ )
858 {
859 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
860
861 memset( buf, 0, sizeof( buf ) );
862 memset( tmp, 0, sizeof( tmp ) );
863
864 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
865
866 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100867 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
868 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100869 }
870
871 memset( buf, 0, sizeof( buf ) );
872 memset( tmp, 0, sizeof( tmp ) );
873 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100874 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
875 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100876 }
877#endif /* MBEDTLS_CMAC_C */
878#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000879
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100880#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
881 if( todo.aria )
882 {
883 int keysize;
884 mbedtls_aria_context aria;
885 mbedtls_aria_init( &aria );
886 for( keysize = 128; keysize <= 256; keysize += 64 )
887 {
888 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
889
890 memset( buf, 0, sizeof( buf ) );
891 memset( tmp, 0, sizeof( tmp ) );
892 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
893
894 TIME_AND_TSC( title,
895 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
896 BUFSIZE, tmp, buf, buf ) );
897 }
898 mbedtls_aria_free( &aria );
899 }
900#endif
901
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200902#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200903 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000904 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100905 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200906 mbedtls_camellia_context camellia;
907 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200908 for( keysize = 128; keysize <= 256; keysize += 64 )
909 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200910 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000911
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200912 memset( buf, 0, sizeof( buf ) );
913 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200914 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000915
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200916 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200917 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200918 BUFSIZE, tmp, buf, buf ) );
919 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200920 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000921 }
922#endif
923
Daniel King34b822c2016-05-15 17:28:08 -0300924#if defined(MBEDTLS_CHACHA20_C)
925 if ( todo.chacha20 )
926 {
927 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
928 }
929#endif
930
Daniel Kingadc32c02016-05-16 18:25:45 -0300931#if defined(MBEDTLS_POLY1305_C)
932 if ( todo.poly1305 )
933 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200934 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300935 }
936#endif
937
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200938#if defined(MBEDTLS_BLOWFISH_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200939 if( todo.blowfish )
Paul Bakker3d58fe82012-07-04 17:15:31 +0000940 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100941 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200942 mbedtls_blowfish_context blowfish;
943 mbedtls_blowfish_init( &blowfish );
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200944
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200945 for( keysize = 128; keysize <= 256; keysize += 64 )
946 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200947 mbedtls_snprintf( title, sizeof( title ), "BLOWFISH-CBC-%d", keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000948
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200949 memset( buf, 0, sizeof( buf ) );
950 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200951 mbedtls_blowfish_setkey( &blowfish, tmp, keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000952
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200953 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200954 mbedtls_blowfish_crypt_cbc( &blowfish, MBEDTLS_BLOWFISH_ENCRYPT, BUFSIZE,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200955 tmp, buf, buf ) );
956 }
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200957
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200958 mbedtls_blowfish_free( &blowfish );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000959 }
960#endif
961
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200962#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200963 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200964 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200965 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000966
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200967 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200968 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200969 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200970 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200971 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100972 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000973
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100974 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200975 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200976 mbedtls_exit(1);
977 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200978 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200979 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200980 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200981 }
Paul Bakker02faf452011-11-29 11:23:58 +0000982#endif
983
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200984#if defined(MBEDTLS_HMAC_DRBG_C)
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100985 if( todo.hmac_drbg )
986 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200987 mbedtls_hmac_drbg_context hmac_drbg;
988 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100989
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200990 mbedtls_hmac_drbg_init( &hmac_drbg );
991
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200992#if defined(MBEDTLS_SHA1_C)
993 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
994 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100995
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200996 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200997 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100998 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200999 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001000
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +02001001 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001002 mbedtls_exit(1);
1003 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
1004 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001005 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +02001006 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001007#endif
1008
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001009#if defined(MBEDTLS_SHA256_C)
1010 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL )
1011 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001012
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +02001013 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001014 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001015 TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +02001016 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001017
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +02001018 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001019 mbedtls_exit(1);
1020 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
1021 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001022 TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +02001023 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001024#endif
Ron Eldor278af452018-06-20 18:40:21 +03001025 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001026 }
1027#endif
1028
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001029#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +02001030 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +00001031 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +01001032 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001033 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +02001034 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
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 ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001037
Ronald Cronc1905a12021-06-05 11:11:14 +02001038 mbedtls_rsa_init( &rsa );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001039 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001040
1041 TIME_PUBLIC( title, " public",
1042 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001043 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001044
1045 TIME_PUBLIC( title, "private",
1046 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001047 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001048
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001049 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001050 }
Paul Bakker5121ce52009-01-03 21:22:43 +00001051 }
Paul Bakker5121ce52009-01-03 21:22:43 +00001052#endif
1053
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001054#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +02001055 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001056 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001057 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -08001058 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001059 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001060 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001061 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001062 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001063 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001064 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001065 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
1066
1067 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
1068 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
1069 sizeof( dhm_P_3072 ) };
1070
1071 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
1072 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
1073 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001074
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001075 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001076 size_t olen;
Gilles Peskine487bbf62021-05-27 22:17:07 +02001077 size_t n;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001078 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001079 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001080 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001081
Hanno Beckerb9539212017-10-04 13:13:34 +01001082 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
1083 dhm_P_size[i] ) != 0 ||
1084 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
1085 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001086 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001087 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001088 }
1089
Gilles Peskine487bbf62021-05-27 22:17:07 +02001090 n = mbedtls_mpi_size( &dhm.P );
1091 mbedtls_dhm_make_public( &dhm, (int) n, buf, n, myrand, NULL );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001092 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
1093 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001094
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001095 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001096 TIME_PUBLIC( title, "handshake",
Gilles Peskine487bbf62021-05-27 22:17:07 +02001097 ret |= mbedtls_dhm_make_public( &dhm, (int) n, buf, n,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001098 myrand, NULL );
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001099 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001100
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001101 mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001102 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001103 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001104
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001105 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001106 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001107 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001108#endif
1109
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001110#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001111 if( todo.ecdsa )
1112 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001113 mbedtls_ecdsa_context ecdsa;
1114 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001115 size_t sig_len;
1116
1117 memset( buf, 0x2A, sizeof( buf ) );
1118
Gilles Peskine28f62f62020-07-24 02:06:46 +02001119 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001120 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001121 curve_info++ )
1122 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001123 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001124 continue;
1125
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001126 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001127
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001128 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
1129 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001130 ecp_clear_precomputed( &ecdsa.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001131
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001132 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001133 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001134 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001135 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001136 tmp, &sig_len, myrand, NULL ) );
1137
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001138 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001139 }
1140
Gilles Peskine28f62f62020-07-24 02:06:46 +02001141 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001142 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001143 curve_info++ )
1144 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001145 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001146 continue;
1147
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001148 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001149
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001150 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001151 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001152 tmp, &sig_len, myrand, NULL ) != 0 )
1153 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001154 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001155 }
1156 ecp_clear_precomputed( &ecdsa.grp );
1157
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001158 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001159 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001160 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001161 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001162 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001163
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001164 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001165 }
1166 }
1167#endif
1168
Janos Follath52735ef2018-08-15 10:19:16 +01001169#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001170 if( todo.ecdh )
1171 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001172 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001173 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001174 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
1175#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
1176 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001177#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001178#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
1179 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
1180#endif
1181 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
1182 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001183 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001184 size_t olen;
Gilles Peskine28f62f62020-07-24 02:06:46 +02001185 const mbedtls_ecp_curve_info *selected_montgomery_curve_list =
1186 montgomery_curve_list;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001187
Gilles Peskine28f62f62020-07-24 02:06:46 +02001188 if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve )
1189 {
1190 mbedtls_ecp_group grp;
1191 mbedtls_ecp_group_init( &grp );
1192 if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 )
1193 mbedtls_exit( 1 );
1194 if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
1195 selected_montgomery_curve_list = single_curve;
1196 else /* empty list */
1197 selected_montgomery_curve_list = single_curve + 1;
1198 mbedtls_ecp_group_free( &grp );
1199 }
1200
1201 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001202 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001203 curve_info++ )
1204 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001205 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1206 continue;
1207
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001208 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001209
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001210 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1211 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1212 myrand, NULL ) );
1213 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001214 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001215
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001216 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001217 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001218 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001219 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001220 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001221 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1222 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001223 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001224 }
1225
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001226 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001227 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001228 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1229 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001230 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001231 mbedtls_ecdh_init( &ecdh );
1232 mbedtls_mpi_init( &z );
1233
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001234 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1235 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001236
1237 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
1238 curve_info->name );
1239 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001240 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
1241 myrand, NULL ) );
1242 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1243 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001244
1245 mbedtls_ecdh_free( &ecdh );
1246 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001247 }
1248
Gilles Peskine28f62f62020-07-24 02:06:46 +02001249 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001250 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001251 curve_info++ )
1252 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001253 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1254 continue;
1255
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001256 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001257
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001258 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1259 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1260 myrand, NULL ) );
1261 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
1262 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1263 myrand, NULL ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001264 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001265
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001266 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001267 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001268 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001269 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1270 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001271 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001272 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001273
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001274 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001275 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001276 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1277 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001278 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001279 mbedtls_ecdh_init( &ecdh );
1280 mbedtls_mpi_init( &z );
1281
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001282 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1283 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1284 myrand, NULL ) );
1285 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001286
1287 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1288 curve_info->name );
1289 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001290 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1291 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001292
1293 mbedtls_ecdh_free( &ecdh );
1294 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001295 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001296 }
1297#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001298
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001299#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001300 if( todo.ecdh )
1301 {
1302 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1303 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001304 const mbedtls_ecp_curve_info *curve_info;
1305 size_t olen;
1306
1307 for( curve_info = curve_list;
1308 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1309 curve_info++ )
1310 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001311 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1312 continue;
1313
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001314 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001315 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001316
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001317 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001318 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001319 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001320
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001321 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001322 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 +01001323
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001324 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1325 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 +01001326
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001327 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1328 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 +01001329
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001330 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 +00001331 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001332
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001333 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001334 );
1335
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001336 }
1337 }
1338#endif
1339
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001340 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001341
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001342#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1343 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001344#endif
1345
Paul Bakkercce9d772011-11-18 14:26:47 +00001346#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001347 mbedtls_printf( " Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00001348 fflush( stdout ); getchar();
1349#endif
1350
k-stachowiak776521a2019-05-23 09:46:47 +02001351 mbedtls_exit( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +00001352}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001353
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001354#endif /* MBEDTLS_TIMING_C */