blob: cbda7986669df514cb6c712485cf403b30331f78 [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
TRodziewicz90f304f2021-06-11 11:56:47 +020080#ifndef asm
81#define asm __asm
82#endif
83
TRodziewiczd8540832021-06-10 15:16:50 +020084#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
85
86#include <windows.h>
87#include <process.h>
88
89struct _hr_time
90{
91 LARGE_INTEGER start;
92};
93
94#else
95
96#include <unistd.h>
97#include <sys/types.h>
98#include <sys/time.h>
99#include <signal.h>
100#include <time.h>
101
102struct _hr_time
103{
104 struct timeval start;
105};
106
107#endif /* _WIN32 && !EFIX64 && !EFI32 */
108
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200109#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000110#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +0000111#endif
112
TRodziewiczd8540832021-06-10 15:16:50 +0200113static void mbedtls_set_alarm( int seconds );
114
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000115/*
116 * For heap usage estimates, we need an estimate of the overhead per allocated
117 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
118 * so use that as our baseline.
119 */
120#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
121
122/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200123 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000124 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +0100125#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000126
Paul Bakker02faf452011-11-29 11:23:58 +0000127#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100128#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +0100129#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +0000130
Rich Evans85b05ec2015-02-12 11:37:29 +0000131#define OPTIONS \
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200132 "md4, md5, ripemd160, sha1, sha256, sha512,\n" \
Daniel King34b822c2016-05-15 17:28:08 -0300133 "arc4, des3, des, camellia, blowfish, chacha20,\n" \
Zhai Zhaoxuane22da992020-05-09 23:50:32 +0800134 "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -0300135 "aes_cmac, des3_cmac, poly1305\n" \
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100136 "ctr_drbg, hmac_drbg\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +0000137 "rsa, dhm, ecdsa, ecdh.\n"
138
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200139#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000140#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100141 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200142 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000143#else
144#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200145 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000146#endif
147
148#define TIME_AND_TSC( TITLE, CODE ) \
149do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200150 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200151 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000152 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200153 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000154 fflush( stdout ); \
155 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200156 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200157 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000158 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200159 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000160 } \
161 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200162 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200163 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000164 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200165 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000166 } \
167 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200168 if( ret != 0 ) \
169 { \
170 PRINT_ERROR; \
171 } \
172 else \
173 { \
174 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
175 ii * BUFSIZE / 1024, \
176 ( mbedtls_timing_hardclock() - tsc ) \
177 / ( jj * BUFSIZE ) ); \
178 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000179} while( 0 )
180
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200181#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100182
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200183/* How much space to reserve for the title when printing heap usage results.
184 * Updated manually as the output of the following command:
185 *
186 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
187 * awk '{print length+2}' | sort -rn | head -n1
188 *
189 * This computes the maximum length of a title +2 (because we appends "/s").
190 * (If the value is too small, the only consequence is poor alignement.) */
191#define TITLE_SPACE 16
192
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100193#define MEMORY_MEASURE_INIT \
194 size_t max_used, max_blocks, max_bytes; \
195 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200196 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200197 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100198
199#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200200 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200201 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
202 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100203 max_used -= prv_used; \
204 max_blocks -= prv_blocks; \
205 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200206 mbedtls_printf( "%6u heap bytes", (unsigned) max_bytes );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100207
208#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000209#define MEMORY_MEASURE_INIT
210#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100211#endif
212
Rich Evans85b05ec2015-02-12 11:37:29 +0000213#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
214do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200215 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000216 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100217 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000218 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200219 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000220 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200221 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000222 \
223 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200224 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000225 { \
226 CODE; \
227 } \
228 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000229 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
230 { \
231 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
232 ret = 0; \
233 } \
234 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000235 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100236 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000237 } \
238 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100239 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200240 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100241 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200242 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100243 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000244} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000245
TRodziewiczd8540832021-06-10 15:16:50 +0200246#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
247 ( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__)
248
249#define HAVE_HARDCLOCK
250
TRodziewicz9a9609e2021-06-11 13:35:10 +0200251static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200252{
253 unsigned long tsc;
254 __asm rdtsc
255 __asm mov [tsc], eax
256 return( tsc );
257}
258#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
259 ( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
260
261/* some versions of mingw-64 have 32-bit longs even on x84_64 */
262#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
263 defined(__GNUC__) && ( defined(__i386__) || ( \
264 ( defined(__amd64__) || defined( __x86_64__) ) && __SIZEOF_LONG__ == 4 ) )
265
266#define HAVE_HARDCLOCK
267
TRodziewicz9a9609e2021-06-11 13:35:10 +0200268static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200269{
270 unsigned long lo, hi;
271 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
272 return( lo );
273}
274#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
275 __GNUC__ && __i386__ */
276
277#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
278 defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) )
279
280#define HAVE_HARDCLOCK
281
TRodziewicz9a9609e2021-06-11 13:35:10 +0200282static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200283{
284 unsigned long lo, hi;
285 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
286 return( lo | ( hi << 32 ) );
287}
288#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
289 __GNUC__ && ( __amd64__ || __x86_64__ ) */
290
291#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
292 defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) )
293
294#define HAVE_HARDCLOCK
295
TRodziewicz9a9609e2021-06-11 13:35:10 +0200296static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200297{
298 unsigned long tbl, tbu0, tbu1;
299
300 do
301 {
302 asm volatile( "mftbu %0" : "=r" (tbu0) );
303 asm volatile( "mftb %0" : "=r" (tbl ) );
304 asm volatile( "mftbu %0" : "=r" (tbu1) );
305 }
306 while( tbu0 != tbu1 );
307
308 return( tbl );
309}
310#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
311 __GNUC__ && ( __powerpc__ || __ppc__ ) */
312
313#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
314 defined(__GNUC__) && defined(__sparc64__)
315
316#if defined(__OpenBSD__)
317#warning OpenBSD does not allow access to tick register using software version instead
318#else
319#define HAVE_HARDCLOCK
320
TRodziewicz9a9609e2021-06-11 13:35:10 +0200321static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200322{
323 unsigned long tick;
324 asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
325 return( tick );
326}
327#endif /* __OpenBSD__ */
328#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
329 __GNUC__ && __sparc64__ */
330
331#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
332 defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__)
333
334#define HAVE_HARDCLOCK
335
TRodziewicz9a9609e2021-06-11 13:35:10 +0200336static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200337{
338 unsigned long tick;
339 asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
340 asm volatile( "mov %%g1, %0" : "=r" (tick) );
341 return( tick );
342}
343#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
344 __GNUC__ && __sparc__ && !__sparc64__ */
345
346#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
347 defined(__GNUC__) && defined(__alpha__)
348
349#define HAVE_HARDCLOCK
350
TRodziewicz9a9609e2021-06-11 13:35:10 +0200351static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200352{
353 unsigned long cc;
354 asm volatile( "rpcc %0" : "=r" (cc) );
355 return( cc & 0xFFFFFFFF );
356}
357#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
358 __GNUC__ && __alpha__ */
359
360#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
361 defined(__GNUC__) && defined(__ia64__)
362
363#define HAVE_HARDCLOCK
364
TRodziewicz9a9609e2021-06-11 13:35:10 +0200365static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200366{
367 unsigned long itc;
368 asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
369 return( itc );
370}
371#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
372 __GNUC__ && __ia64__ */
373
374#if !defined(HAVE_HARDCLOCK) && defined(_MSC_VER) && \
375 !defined(EFIX64) && !defined(EFI32)
376
377#define HAVE_HARDCLOCK
378
TRodziewicz9a9609e2021-06-11 13:35:10 +0200379static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200380{
381 LARGE_INTEGER offset;
382
383 QueryPerformanceCounter( &offset );
384
385 return( (unsigned long)( offset.QuadPart ) );
386}
387#endif /* !HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */
388
389#if !defined(HAVE_HARDCLOCK)
390
391#define HAVE_HARDCLOCK
392
393static int hardclock_init = 0;
394static struct timeval tv_init;
395
TRodziewicz9a9609e2021-06-11 13:35:10 +0200396static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200397{
398 struct timeval tv_cur;
399
400 if( hardclock_init == 0 )
401 {
402 gettimeofday( &tv_init, NULL );
403 hardclock_init = 1;
404 }
405
406 gettimeofday( &tv_cur, NULL );
407 return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000
408 + ( tv_cur.tv_usec - tv_init.tv_usec ) );
409}
410#endif /* !HAVE_HARDCLOCK */
411
412volatile int mbedtls_timing_alarmed = 0;
413
414#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
415
416/* It's OK to use a global because alarm() is supposed to be global anyway */
417static DWORD alarmMs;
418
419static void TimerProc( void *TimerContext )
420{
421 (void) TimerContext;
422 Sleep( alarmMs );
423 mbedtls_timing_alarmed = 1;
424 /* _endthread will be called implicitly on return
425 * That ensures execution of thread funcition's epilogue */
426}
427
428static void mbedtls_set_alarm( int seconds )
429{
430 if( seconds == 0 )
431 {
432 /* No need to create a thread for this simple case.
433 * Also, this shorcut is more reliable at least on MinGW32 */
434 mbedtls_timing_alarmed = 1;
435 return;
436 }
437
438 mbedtls_timing_alarmed = 0;
439 alarmMs = seconds * 1000;
440 (void) _beginthread( TimerProc, 0, NULL );
441}
442
443#else /* _WIN32 && !EFIX64 && !EFI32 */
444
445static void sighandler( int signum )
446{
447 mbedtls_timing_alarmed = 1;
448 signal( signum, sighandler );
449}
450
451static void mbedtls_set_alarm( int seconds )
452{
453 mbedtls_timing_alarmed = 0;
454 signal( SIGALRM, sighandler );
455 alarm( seconds );
456 if( seconds == 0 )
457 {
458 /* alarm(0) cancelled any previous pending alarm, but the
459 handler won't fire, so raise the flag straight away. */
460 mbedtls_timing_alarmed = 1;
461 }
462}
463
464#endif /* _WIN32 && !EFIX64 && !EFI32 */
465
Paul Bakkera3d195c2011-11-27 21:07:34 +0000466static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000467{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000468 size_t use_len;
469 int rnd;
470
Paul Bakker5121ce52009-01-03 21:22:43 +0000471 if( rng_state != NULL )
472 rng_state = NULL;
473
Paul Bakkera3d195c2011-11-27 21:07:34 +0000474 while( len > 0 )
475 {
476 use_len = len;
477 if( use_len > sizeof(int) )
478 use_len = sizeof(int);
479
480 rnd = rand();
481 memcpy( output, &rnd, use_len );
482 output += use_len;
483 len -= use_len;
484 }
485
486 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000487}
488
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000489#define CHECK_AND_CONTINUE( R ) \
490 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100491 int CHECK_AND_CONTINUE_ret = ( R ); \
492 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000493 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
494 continue; \
495 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100496 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000497 mbedtls_exit( 1 ); \
498 } \
499 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000500
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100501/*
502 * Clear some memory that was used to prepare the context
503 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200504#if defined(MBEDTLS_ECP_C)
505void ecp_clear_precomputed( mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100506{
kXuanba9cb762021-04-08 14:32:06 +0800507 if( grp->T != NULL
508#if MBEDTLS_ECP_FIXED_POINT_OPTIM == 1
509 && grp->T_size != 0
510#endif
511 )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100512 {
513 size_t i;
514 for( i = 0; i < grp->T_size; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200515 mbedtls_ecp_point_free( &grp->T[i] );
516 mbedtls_free( grp->T );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100517 }
518 grp->T = NULL;
519 grp->T_size = 0;
520}
521#else
522#define ecp_clear_precomputed( g )
523#endif
524
Gilles Peskine28f62f62020-07-24 02:06:46 +0200525#if defined(MBEDTLS_ECP_C)
526static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve )
527{
528 const mbedtls_ecp_curve_info *found =
529 mbedtls_ecp_curve_info_from_name( string );
530 if( found != NULL )
531 {
532 *curve = *found;
533 return( 1 );
534 }
535 else
536 return( 0 );
537}
538#endif
539
Paul Bakker5121ce52009-01-03 21:22:43 +0000540unsigned char buf[BUFSIZE];
541
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200542typedef struct {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200543 char md4, md5, ripemd160, sha1, sha256, sha512,
Simon Butcher549dc3d2016-10-05 14:14:19 +0100544 arc4, des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200545 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200546 aes_cmac, des3_cmac,
Manuel Pégourié-Gonnard39b19042018-06-07 12:01:33 +0200547 aria, camellia, blowfish, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300548 poly1305,
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100549 ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200550 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200551} todo_list;
552
Simon Butcher63cb97e2018-12-06 17:43:31 +0000553
Paul Bakkercce9d772011-11-18 14:26:47 +0000554int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000555{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100556 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200557 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200558 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200559 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200560#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200561 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000562#endif
Gilles Peskine28f62f62020-07-24 02:06:46 +0200563#if defined(MBEDTLS_ECP_C)
564 mbedtls_ecp_curve_info single_curve[2] = {
565 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
566 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
567 };
568 const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( );
569#endif
570
571#if defined(MBEDTLS_ECP_C)
572 (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */
573#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000574
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000575 if( argc <= 1 )
576 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200577 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000578 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200579 else
580 {
581 memset( &todo, 0, sizeof( todo ) );
582
583 for( i = 1; i < argc; i++ )
584 {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200585 if( strcmp( argv[i], "md4" ) == 0 )
586 todo.md4 = 1;
587 else if( strcmp( argv[i], "md5" ) == 0 )
588 todo.md5 = 1;
589 else if( strcmp( argv[i], "ripemd160" ) == 0 )
590 todo.ripemd160 = 1;
591 else if( strcmp( argv[i], "sha1" ) == 0 )
592 todo.sha1 = 1;
593 else if( strcmp( argv[i], "sha256" ) == 0 )
594 todo.sha256 = 1;
595 else if( strcmp( argv[i], "sha512" ) == 0 )
596 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200597 else if( strcmp( argv[i], "arc4" ) == 0 )
598 todo.arc4 = 1;
599 else if( strcmp( argv[i], "des3" ) == 0 )
600 todo.des3 = 1;
601 else if( strcmp( argv[i], "des" ) == 0 )
602 todo.des = 1;
603 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
604 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200605 else if( strcmp( argv[i], "aes_xts" ) == 0 )
606 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200607 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
608 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200609 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
610 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200611 else if( strcmp( argv[i], "chachapoly" ) == 0 )
612 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100613 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
614 todo.aes_cmac = 1;
615 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
616 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100617 else if( strcmp( argv[i], "aria" ) == 0 )
618 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200619 else if( strcmp( argv[i], "camellia" ) == 0 )
620 todo.camellia = 1;
621 else if( strcmp( argv[i], "blowfish" ) == 0 )
622 todo.blowfish = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300623 else if( strcmp( argv[i], "chacha20" ) == 0 )
624 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300625 else if( strcmp( argv[i], "poly1305" ) == 0 )
626 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200627 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
628 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100629 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
630 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200631 else if( strcmp( argv[i], "rsa" ) == 0 )
632 todo.rsa = 1;
633 else if( strcmp( argv[i], "dhm" ) == 0 )
634 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200635 else if( strcmp( argv[i], "ecdsa" ) == 0 )
636 todo.ecdsa = 1;
637 else if( strcmp( argv[i], "ecdh" ) == 0 )
638 todo.ecdh = 1;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200639#if defined(MBEDTLS_ECP_C)
640 else if( set_ecp_curve( argv[i], single_curve ) )
641 curve_list = single_curve;
642#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200643 else
644 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200645 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
646 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200647 }
648 }
649 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000650
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200651 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000652
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200653#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200654 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000655#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200656 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200657 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200658
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200659#if defined(MBEDTLS_MD4_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200660 if( todo.md4 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100661 TIME_AND_TSC( "MD4", mbedtls_md4_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000662#endif
663
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200664#if defined(MBEDTLS_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200665 if( todo.md5 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100666 TIME_AND_TSC( "MD5", mbedtls_md5_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000667#endif
668
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200669#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200670 if( todo.ripemd160 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100671 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160_ret( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100672#endif
673
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200674#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200675 if( todo.sha1 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100676 TIME_AND_TSC( "SHA-1", mbedtls_sha1_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000677#endif
678
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200679#if defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200680 if( todo.sha256 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100681 TIME_AND_TSC( "SHA-256", mbedtls_sha256_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000682#endif
683
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200684#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200685 if( todo.sha512 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100686 TIME_AND_TSC( "SHA-512", mbedtls_sha512_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000687#endif
688
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200689#if defined(MBEDTLS_ARC4_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200690 if( todo.arc4 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200691 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200692 mbedtls_arc4_context arc4;
693 mbedtls_arc4_init( &arc4 );
694 mbedtls_arc4_setup( &arc4, tmp, 32 );
695 TIME_AND_TSC( "ARC4", mbedtls_arc4_crypt( &arc4, BUFSIZE, buf, buf ) );
696 mbedtls_arc4_free( &arc4 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200697 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000698#endif
699
Simon Butcher549dc3d2016-10-05 14:14:19 +0100700#if defined(MBEDTLS_DES_C)
701#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200702 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200703 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200704 mbedtls_des3_context des3;
705 mbedtls_des3_init( &des3 );
706 mbedtls_des3_set3key_enc( &des3, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200707 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200708 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
709 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200710 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000711
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200712 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200713 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200714 mbedtls_des_context des;
715 mbedtls_des_init( &des );
716 mbedtls_des_setkey_enc( &des, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200717 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200718 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
719 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200720 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100721
722#endif /* MBEDTLS_CIPHER_MODE_CBC */
723#if defined(MBEDTLS_CMAC_C)
724 if( todo.des3_cmac )
725 {
726 unsigned char output[8];
727 const mbedtls_cipher_info_t *cipher_info;
728
729 memset( buf, 0, sizeof( buf ) );
730 memset( tmp, 0, sizeof( tmp ) );
731
732 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
733
734 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100735 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
736 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100737 }
738#endif /* MBEDTLS_CMAC_C */
739#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000740
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200741#if defined(MBEDTLS_AES_C)
742#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200743 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000744 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100745 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200746 mbedtls_aes_context aes;
747 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200748 for( keysize = 128; keysize <= 256; keysize += 64 )
749 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200750 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000751
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200752 memset( buf, 0, sizeof( buf ) );
753 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200754 mbedtls_aes_setkey_enc( &aes, tmp, keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000755
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200756 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200757 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200758 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200759 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000760 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200761#endif
Aorimn5f778012016-06-09 23:22:58 +0200762#if defined(MBEDTLS_CIPHER_MODE_XTS)
763 if( todo.aes_xts )
764 {
765 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100766 mbedtls_aes_xts_context ctx;
767
768 mbedtls_aes_xts_init( &ctx );
769 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200770 {
771 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
772
773 memset( buf, 0, sizeof( buf ) );
774 memset( tmp, 0, sizeof( tmp ) );
Jaeden Amero9366feb2018-05-29 18:55:17 +0100775 mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 );
Aorimn5f778012016-06-09 23:22:58 +0200776
777 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100778 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
779 tmp, buf, buf ) );
780
781 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200782 }
Aorimn5f778012016-06-09 23:22:58 +0200783 }
784#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200785#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200786 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000787 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100788 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200789 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200790
791 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200792 for( keysize = 128; keysize <= 256; keysize += 64 )
793 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200794 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000795
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200796 memset( buf, 0, sizeof( buf ) );
797 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200798 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000799
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200800 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200801 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200802 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100803
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200804 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200805 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000806 }
807#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200808#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200809 if( todo.aes_ccm )
810 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100811 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200812 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200813
814 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200815 for( keysize = 128; keysize <= 256; keysize += 64 )
816 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200817 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200818
819 memset( buf, 0, sizeof( buf ) );
820 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200821 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200822
823 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200824 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200825 12, NULL, 0, buf, buf, tmp, 16 ) );
826
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200827 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200828 }
829 }
830#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200831#if defined(MBEDTLS_CHACHAPOLY_C)
832 if( todo.chachapoly )
833 {
834 mbedtls_chachapoly_context chachapoly;
835
836 mbedtls_chachapoly_init( &chachapoly );
837 memset( buf, 0, sizeof( buf ) );
838 memset( tmp, 0, sizeof( tmp ) );
839
840 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
841
842 mbedtls_chachapoly_setkey( &chachapoly, tmp );
843
844 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200845 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
846 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200847
848 mbedtls_chachapoly_free( &chachapoly );
849 }
850#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100851#if defined(MBEDTLS_CMAC_C)
852 if( todo.aes_cmac )
853 {
854 unsigned char output[16];
855 const mbedtls_cipher_info_t *cipher_info;
856 mbedtls_cipher_type_t cipher_type;
857 int keysize;
858
859 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
860 keysize <= 256;
861 keysize += 64, cipher_type++ )
862 {
863 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
864
865 memset( buf, 0, sizeof( buf ) );
866 memset( tmp, 0, sizeof( tmp ) );
867
868 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
869
870 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100871 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
872 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100873 }
874
875 memset( buf, 0, sizeof( buf ) );
876 memset( tmp, 0, sizeof( tmp ) );
877 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100878 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
879 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100880 }
881#endif /* MBEDTLS_CMAC_C */
882#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000883
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100884#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
885 if( todo.aria )
886 {
887 int keysize;
888 mbedtls_aria_context aria;
889 mbedtls_aria_init( &aria );
890 for( keysize = 128; keysize <= 256; keysize += 64 )
891 {
892 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
893
894 memset( buf, 0, sizeof( buf ) );
895 memset( tmp, 0, sizeof( tmp ) );
896 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
897
898 TIME_AND_TSC( title,
899 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
900 BUFSIZE, tmp, buf, buf ) );
901 }
902 mbedtls_aria_free( &aria );
903 }
904#endif
905
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200906#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200907 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000908 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100909 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200910 mbedtls_camellia_context camellia;
911 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200912 for( keysize = 128; keysize <= 256; keysize += 64 )
913 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200914 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000915
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200916 memset( buf, 0, sizeof( buf ) );
917 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200918 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000919
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200920 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200921 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200922 BUFSIZE, tmp, buf, buf ) );
923 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200924 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000925 }
926#endif
927
Daniel King34b822c2016-05-15 17:28:08 -0300928#if defined(MBEDTLS_CHACHA20_C)
929 if ( todo.chacha20 )
930 {
931 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
932 }
933#endif
934
Daniel Kingadc32c02016-05-16 18:25:45 -0300935#if defined(MBEDTLS_POLY1305_C)
936 if ( todo.poly1305 )
937 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200938 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300939 }
940#endif
941
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200942#if defined(MBEDTLS_BLOWFISH_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200943 if( todo.blowfish )
Paul Bakker3d58fe82012-07-04 17:15:31 +0000944 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100945 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200946 mbedtls_blowfish_context blowfish;
947 mbedtls_blowfish_init( &blowfish );
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200948
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200949 for( keysize = 128; keysize <= 256; keysize += 64 )
950 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200951 mbedtls_snprintf( title, sizeof( title ), "BLOWFISH-CBC-%d", keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000952
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200953 memset( buf, 0, sizeof( buf ) );
954 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200955 mbedtls_blowfish_setkey( &blowfish, tmp, keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000956
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200957 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200958 mbedtls_blowfish_crypt_cbc( &blowfish, MBEDTLS_BLOWFISH_ENCRYPT, BUFSIZE,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200959 tmp, buf, buf ) );
960 }
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200961
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200962 mbedtls_blowfish_free( &blowfish );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000963 }
964#endif
965
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200966#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200967 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200968 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200969 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000970
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200971 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200972 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200973 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200974 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200975 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100976 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000977
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100978 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200979 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200980 mbedtls_exit(1);
981 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200982 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200983 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200984 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200985 }
Paul Bakker02faf452011-11-29 11:23:58 +0000986#endif
987
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200988#if defined(MBEDTLS_HMAC_DRBG_C)
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100989 if( todo.hmac_drbg )
990 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200991 mbedtls_hmac_drbg_context hmac_drbg;
992 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100993
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200994 mbedtls_hmac_drbg_init( &hmac_drbg );
995
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200996#if defined(MBEDTLS_SHA1_C)
997 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
998 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100999
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +02001000 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001001 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001002 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +02001003 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001004
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +02001005 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001006 mbedtls_exit(1);
1007 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
1008 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001009 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +02001010 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001011#endif
1012
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001013#if defined(MBEDTLS_SHA256_C)
1014 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL )
1015 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001016
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +02001017 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001018 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001019 TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +02001020 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001021
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +02001022 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001023 mbedtls_exit(1);
1024 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
1025 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001026 TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +02001027 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001028#endif
Ron Eldor278af452018-06-20 18:40:21 +03001029 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +01001030 }
1031#endif
1032
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001033#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +02001034 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +00001035 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +01001036 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001037 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +02001038 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001039 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001040 mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001041
Ronald Cronc1905a12021-06-05 11:11:14 +02001042 mbedtls_rsa_init( &rsa );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001043 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001044
1045 TIME_PUBLIC( title, " public",
1046 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001047 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001048
1049 TIME_PUBLIC( title, "private",
1050 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001051 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001052
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001053 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001054 }
Paul Bakker5121ce52009-01-03 21:22:43 +00001055 }
Paul Bakker5121ce52009-01-03 21:22:43 +00001056#endif
1057
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001058#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +02001059 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001060 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001061 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -08001062 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001063 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001064 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001065 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001066 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001067 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001068 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001069 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
1070
1071 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
1072 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
1073 sizeof( dhm_P_3072 ) };
1074
1075 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
1076 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
1077 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001078
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001079 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001080 size_t olen;
Gilles Peskine487bbf62021-05-27 22:17:07 +02001081 size_t n;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001082 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001083 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001084 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001085
Hanno Beckerb9539212017-10-04 13:13:34 +01001086 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
1087 dhm_P_size[i] ) != 0 ||
1088 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
1089 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001090 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001091 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001092 }
1093
Gilles Peskine487bbf62021-05-27 22:17:07 +02001094 n = mbedtls_mpi_size( &dhm.P );
1095 mbedtls_dhm_make_public( &dhm, (int) n, buf, n, myrand, NULL );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001096 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
1097 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001098
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001099 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001100 TIME_PUBLIC( title, "handshake",
Gilles Peskine487bbf62021-05-27 22:17:07 +02001101 ret |= mbedtls_dhm_make_public( &dhm, (int) n, buf, n,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001102 myrand, NULL );
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_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001106 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001107 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001108
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001109 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001110 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001111 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001112#endif
1113
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001114#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001115 if( todo.ecdsa )
1116 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001117 mbedtls_ecdsa_context ecdsa;
1118 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001119 size_t sig_len;
1120
1121 memset( buf, 0x2A, sizeof( buf ) );
1122
Gilles Peskine28f62f62020-07-24 02:06:46 +02001123 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001124 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001125 curve_info++ )
1126 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001127 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001128 continue;
1129
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001130 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001131
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001132 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
1133 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001134 ecp_clear_precomputed( &ecdsa.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001135
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001136 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001137 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001138 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001139 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001140 tmp, &sig_len, myrand, NULL ) );
1141
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001142 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001143 }
1144
Gilles Peskine28f62f62020-07-24 02:06:46 +02001145 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001146 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001147 curve_info++ )
1148 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001149 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001150 continue;
1151
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001152 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001153
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001154 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001155 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001156 tmp, &sig_len, myrand, NULL ) != 0 )
1157 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001158 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001159 }
1160 ecp_clear_precomputed( &ecdsa.grp );
1161
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001162 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001163 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001164 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001165 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001166 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001167
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001168 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001169 }
1170 }
1171#endif
1172
Janos Follath52735ef2018-08-15 10:19:16 +01001173#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001174 if( todo.ecdh )
1175 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001176 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001177 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001178 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
1179#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
1180 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001181#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001182#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
1183 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
1184#endif
1185 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
1186 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001187 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001188 size_t olen;
Gilles Peskine28f62f62020-07-24 02:06:46 +02001189 const mbedtls_ecp_curve_info *selected_montgomery_curve_list =
1190 montgomery_curve_list;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001191
Gilles Peskine28f62f62020-07-24 02:06:46 +02001192 if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve )
1193 {
1194 mbedtls_ecp_group grp;
1195 mbedtls_ecp_group_init( &grp );
1196 if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 )
1197 mbedtls_exit( 1 );
1198 if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
1199 selected_montgomery_curve_list = single_curve;
1200 else /* empty list */
1201 selected_montgomery_curve_list = single_curve + 1;
1202 mbedtls_ecp_group_free( &grp );
1203 }
1204
1205 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001206 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001207 curve_info++ )
1208 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001209 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1210 continue;
1211
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001212 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001213
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001214 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1215 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1216 myrand, NULL ) );
1217 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001218 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001219
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001220 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001221 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001222 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001223 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001224 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001225 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1226 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001227 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001228 }
1229
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001230 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001231 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001232 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1233 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001234 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001235 mbedtls_ecdh_init( &ecdh );
1236 mbedtls_mpi_init( &z );
1237
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001238 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1239 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001240
1241 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
1242 curve_info->name );
1243 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001244 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
1245 myrand, NULL ) );
1246 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1247 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001248
1249 mbedtls_ecdh_free( &ecdh );
1250 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001251 }
1252
Gilles Peskine28f62f62020-07-24 02:06:46 +02001253 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001254 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001255 curve_info++ )
1256 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001257 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1258 continue;
1259
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001260 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001261
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001262 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1263 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1264 myrand, NULL ) );
1265 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
1266 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1267 myrand, NULL ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001268 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001269
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001270 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001271 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001272 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001273 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1274 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001275 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001276 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001277
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001278 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001279 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001280 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1281 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001282 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001283 mbedtls_ecdh_init( &ecdh );
1284 mbedtls_mpi_init( &z );
1285
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001286 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1287 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1288 myrand, NULL ) );
1289 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001290
1291 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1292 curve_info->name );
1293 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001294 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1295 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001296
1297 mbedtls_ecdh_free( &ecdh );
1298 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001299 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001300 }
1301#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001302
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001303#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001304 if( todo.ecdh )
1305 {
1306 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1307 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001308 const mbedtls_ecp_curve_info *curve_info;
1309 size_t olen;
1310
1311 for( curve_info = curve_list;
1312 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1313 curve_info++ )
1314 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001315 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1316 continue;
1317
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001318 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001319 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001320
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001321 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001322 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001323 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001324
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001325 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001326 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 +01001327
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001328 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1329 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 +01001330
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001331 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1332 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 +01001333
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001334 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 +00001335 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001336
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001337 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001338 );
1339
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001340 }
1341 }
1342#endif
1343
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001344 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001345
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001346#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1347 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001348#endif
1349
Paul Bakkercce9d772011-11-18 14:26:47 +00001350#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001351 mbedtls_printf( " Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00001352 fflush( stdout ); getchar();
1353#endif
1354
k-stachowiak776521a2019-05-23 09:46:47 +02001355 mbedtls_exit( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +00001356}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001357
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001358#endif /* MBEDTLS_TIMING_C */