blob: 6a53647d08f060f42e9e96683a0568f66b28d9ed [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/md5.h"
51#include "mbedtls/ripemd160.h"
52#include "mbedtls/sha1.h"
53#include "mbedtls/sha256.h"
54#include "mbedtls/sha512.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010055
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000056#include "mbedtls/des.h"
57#include "mbedtls/aes.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010058#include "mbedtls/aria.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000059#include "mbedtls/camellia.h"
Daniel King34b822c2016-05-15 17:28:08 -030060#include "mbedtls/chacha20.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000061#include "mbedtls/gcm.h"
62#include "mbedtls/ccm.h"
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +020063#include "mbedtls/chachapoly.h"
Simon Butcher549dc3d2016-10-05 14:14:19 +010064#include "mbedtls/cmac.h"
Daniel Kingadc32c02016-05-16 18:25:45 -030065#include "mbedtls/poly1305.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010066
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000067#include "mbedtls/ctr_drbg.h"
68#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010069
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000070#include "mbedtls/rsa.h"
71#include "mbedtls/dhm.h"
72#include "mbedtls/ecdsa.h"
73#include "mbedtls/ecdh.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010074
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000075#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000076
TRodziewicz90f304f2021-06-11 11:56:47 +020077#ifndef asm
78#define asm __asm
79#endif
80
TRodziewiczd8540832021-06-10 15:16:50 +020081#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
82
83#include <windows.h>
84#include <process.h>
85
86struct _hr_time
87{
88 LARGE_INTEGER start;
89};
90
91#else
92
93#include <unistd.h>
94#include <sys/types.h>
95#include <sys/time.h>
96#include <signal.h>
97#include <time.h>
98
99struct _hr_time
100{
101 struct timeval start;
102};
103
104#endif /* _WIN32 && !EFIX64 && !EFI32 */
105
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200106#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000107#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +0000108#endif
109
TRodziewiczd8540832021-06-10 15:16:50 +0200110static void mbedtls_set_alarm( int seconds );
111
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000112/*
113 * For heap usage estimates, we need an estimate of the overhead per allocated
114 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
115 * so use that as our baseline.
116 */
117#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
118
119/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200120 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000121 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +0100122#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000123
Paul Bakker02faf452011-11-29 11:23:58 +0000124#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100125#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +0100126#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +0000127
Rich Evans85b05ec2015-02-12 11:37:29 +0000128#define OPTIONS \
TRodziewicz10e8cf52021-05-31 17:58:57 +0200129 "md5, ripemd160, sha1, sha256, sha512,\n" \
130 "des3, des, camellia, chacha20,\n" \
Zhai Zhaoxuane22da992020-05-09 23:50:32 +0800131 "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -0300132 "aes_cmac, des3_cmac, poly1305\n" \
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100133 "ctr_drbg, hmac_drbg\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +0000134 "rsa, dhm, ecdsa, ecdh.\n"
135
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200136#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000137#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100138 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200139 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000140#else
141#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200142 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000143#endif
144
145#define TIME_AND_TSC( TITLE, CODE ) \
146do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200147 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200148 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000149 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200150 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000151 fflush( stdout ); \
152 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200153 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200154 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000155 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200156 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000157 } \
158 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200159 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200160 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000161 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200162 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000163 } \
164 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200165 if( ret != 0 ) \
166 { \
167 PRINT_ERROR; \
168 } \
169 else \
170 { \
171 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
172 ii * BUFSIZE / 1024, \
173 ( mbedtls_timing_hardclock() - tsc ) \
174 / ( jj * BUFSIZE ) ); \
175 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000176} while( 0 )
177
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200178#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100179
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200180/* How much space to reserve for the title when printing heap usage results.
181 * Updated manually as the output of the following command:
182 *
183 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
184 * awk '{print length+2}' | sort -rn | head -n1
185 *
186 * This computes the maximum length of a title +2 (because we appends "/s").
187 * (If the value is too small, the only consequence is poor alignement.) */
188#define TITLE_SPACE 16
189
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100190#define MEMORY_MEASURE_INIT \
191 size_t max_used, max_blocks, max_bytes; \
192 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200193 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200194 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100195
196#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200197 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200198 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
199 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100200 max_used -= prv_used; \
201 max_blocks -= prv_blocks; \
202 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200203 mbedtls_printf( "%6u heap bytes", (unsigned) max_bytes );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100204
205#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000206#define MEMORY_MEASURE_INIT
207#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100208#endif
209
Rich Evans85b05ec2015-02-12 11:37:29 +0000210#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
211do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200212 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000213 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100214 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000215 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200216 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000217 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200218 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000219 \
220 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200221 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000222 { \
223 CODE; \
224 } \
225 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000226 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
227 { \
228 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
229 ret = 0; \
230 } \
231 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000232 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100233 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000234 } \
235 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100236 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200237 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100238 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200239 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100240 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000241} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000242
TRodziewiczd8540832021-06-10 15:16:50 +0200243#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
244 ( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__)
245
246#define HAVE_HARDCLOCK
247
TRodziewicz9a9609e2021-06-11 13:35:10 +0200248static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200249{
250 unsigned long tsc;
251 __asm rdtsc
252 __asm mov [tsc], eax
253 return( tsc );
254}
255#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
256 ( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
257
258/* some versions of mingw-64 have 32-bit longs even on x84_64 */
259#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
260 defined(__GNUC__) && ( defined(__i386__) || ( \
261 ( defined(__amd64__) || defined( __x86_64__) ) && __SIZEOF_LONG__ == 4 ) )
262
263#define HAVE_HARDCLOCK
264
TRodziewicz9a9609e2021-06-11 13:35:10 +0200265static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200266{
267 unsigned long lo, hi;
268 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
269 return( lo );
270}
271#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
272 __GNUC__ && __i386__ */
273
274#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
275 defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) )
276
277#define HAVE_HARDCLOCK
278
TRodziewicz9a9609e2021-06-11 13:35:10 +0200279static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200280{
281 unsigned long lo, hi;
282 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
283 return( lo | ( hi << 32 ) );
284}
285#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
286 __GNUC__ && ( __amd64__ || __x86_64__ ) */
287
288#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
289 defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) )
290
291#define HAVE_HARDCLOCK
292
TRodziewicz9a9609e2021-06-11 13:35:10 +0200293static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200294{
295 unsigned long tbl, tbu0, tbu1;
296
297 do
298 {
299 asm volatile( "mftbu %0" : "=r" (tbu0) );
300 asm volatile( "mftb %0" : "=r" (tbl ) );
301 asm volatile( "mftbu %0" : "=r" (tbu1) );
302 }
303 while( tbu0 != tbu1 );
304
305 return( tbl );
306}
307#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
308 __GNUC__ && ( __powerpc__ || __ppc__ ) */
309
310#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
311 defined(__GNUC__) && defined(__sparc64__)
312
313#if defined(__OpenBSD__)
314#warning OpenBSD does not allow access to tick register using software version instead
315#else
316#define HAVE_HARDCLOCK
317
TRodziewicz9a9609e2021-06-11 13:35:10 +0200318static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200319{
320 unsigned long tick;
321 asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
322 return( tick );
323}
324#endif /* __OpenBSD__ */
325#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
326 __GNUC__ && __sparc64__ */
327
328#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
329 defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__)
330
331#define HAVE_HARDCLOCK
332
TRodziewicz9a9609e2021-06-11 13:35:10 +0200333static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200334{
335 unsigned long tick;
336 asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
337 asm volatile( "mov %%g1, %0" : "=r" (tick) );
338 return( tick );
339}
340#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
341 __GNUC__ && __sparc__ && !__sparc64__ */
342
343#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
344 defined(__GNUC__) && defined(__alpha__)
345
346#define HAVE_HARDCLOCK
347
TRodziewicz9a9609e2021-06-11 13:35:10 +0200348static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200349{
350 unsigned long cc;
351 asm volatile( "rpcc %0" : "=r" (cc) );
352 return( cc & 0xFFFFFFFF );
353}
354#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
355 __GNUC__ && __alpha__ */
356
357#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
358 defined(__GNUC__) && defined(__ia64__)
359
360#define HAVE_HARDCLOCK
361
TRodziewicz9a9609e2021-06-11 13:35:10 +0200362static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200363{
364 unsigned long itc;
365 asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
366 return( itc );
367}
368#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
369 __GNUC__ && __ia64__ */
370
371#if !defined(HAVE_HARDCLOCK) && defined(_MSC_VER) && \
372 !defined(EFIX64) && !defined(EFI32)
373
374#define HAVE_HARDCLOCK
375
TRodziewicz9a9609e2021-06-11 13:35:10 +0200376static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200377{
378 LARGE_INTEGER offset;
379
380 QueryPerformanceCounter( &offset );
381
382 return( (unsigned long)( offset.QuadPart ) );
383}
384#endif /* !HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */
385
386#if !defined(HAVE_HARDCLOCK)
387
388#define HAVE_HARDCLOCK
389
390static int hardclock_init = 0;
391static struct timeval tv_init;
392
TRodziewicz9a9609e2021-06-11 13:35:10 +0200393static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200394{
395 struct timeval tv_cur;
396
397 if( hardclock_init == 0 )
398 {
399 gettimeofday( &tv_init, NULL );
400 hardclock_init = 1;
401 }
402
403 gettimeofday( &tv_cur, NULL );
404 return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000
405 + ( tv_cur.tv_usec - tv_init.tv_usec ) );
406}
407#endif /* !HAVE_HARDCLOCK */
408
409volatile int mbedtls_timing_alarmed = 0;
410
411#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
412
413/* It's OK to use a global because alarm() is supposed to be global anyway */
414static DWORD alarmMs;
415
416static void TimerProc( void *TimerContext )
417{
418 (void) TimerContext;
419 Sleep( alarmMs );
420 mbedtls_timing_alarmed = 1;
421 /* _endthread will be called implicitly on return
422 * That ensures execution of thread funcition's epilogue */
423}
424
425static void mbedtls_set_alarm( int seconds )
426{
427 if( seconds == 0 )
428 {
429 /* No need to create a thread for this simple case.
430 * Also, this shorcut is more reliable at least on MinGW32 */
431 mbedtls_timing_alarmed = 1;
432 return;
433 }
434
435 mbedtls_timing_alarmed = 0;
436 alarmMs = seconds * 1000;
437 (void) _beginthread( TimerProc, 0, NULL );
438}
439
440#else /* _WIN32 && !EFIX64 && !EFI32 */
441
442static void sighandler( int signum )
443{
444 mbedtls_timing_alarmed = 1;
445 signal( signum, sighandler );
446}
447
448static void mbedtls_set_alarm( int seconds )
449{
450 mbedtls_timing_alarmed = 0;
451 signal( SIGALRM, sighandler );
452 alarm( seconds );
453 if( seconds == 0 )
454 {
455 /* alarm(0) cancelled any previous pending alarm, but the
456 handler won't fire, so raise the flag straight away. */
457 mbedtls_timing_alarmed = 1;
458 }
459}
460
461#endif /* _WIN32 && !EFIX64 && !EFI32 */
462
Paul Bakkera3d195c2011-11-27 21:07:34 +0000463static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000464{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000465 size_t use_len;
466 int rnd;
467
Paul Bakker5121ce52009-01-03 21:22:43 +0000468 if( rng_state != NULL )
469 rng_state = NULL;
470
Paul Bakkera3d195c2011-11-27 21:07:34 +0000471 while( len > 0 )
472 {
473 use_len = len;
474 if( use_len > sizeof(int) )
475 use_len = sizeof(int);
476
477 rnd = rand();
478 memcpy( output, &rnd, use_len );
479 output += use_len;
480 len -= use_len;
481 }
482
483 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000484}
485
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000486#define CHECK_AND_CONTINUE( R ) \
487 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100488 int CHECK_AND_CONTINUE_ret = ( R ); \
489 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000490 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
491 continue; \
492 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100493 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000494 mbedtls_exit( 1 ); \
495 } \
496 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000497
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100498/*
499 * Clear some memory that was used to prepare the context
500 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200501#if defined(MBEDTLS_ECP_C)
502void ecp_clear_precomputed( mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100503{
kXuanba9cb762021-04-08 14:32:06 +0800504 if( grp->T != NULL
505#if MBEDTLS_ECP_FIXED_POINT_OPTIM == 1
506 && grp->T_size != 0
507#endif
508 )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100509 {
510 size_t i;
511 for( i = 0; i < grp->T_size; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200512 mbedtls_ecp_point_free( &grp->T[i] );
513 mbedtls_free( grp->T );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100514 }
515 grp->T = NULL;
516 grp->T_size = 0;
517}
518#else
519#define ecp_clear_precomputed( g )
520#endif
521
Gilles Peskine28f62f62020-07-24 02:06:46 +0200522#if defined(MBEDTLS_ECP_C)
523static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve )
524{
525 const mbedtls_ecp_curve_info *found =
526 mbedtls_ecp_curve_info_from_name( string );
527 if( found != NULL )
528 {
529 *curve = *found;
530 return( 1 );
531 }
532 else
533 return( 0 );
534}
535#endif
536
Paul Bakker5121ce52009-01-03 21:22:43 +0000537unsigned char buf[BUFSIZE];
538
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200539typedef struct {
TRodziewicz10e8cf52021-05-31 17:58:57 +0200540 char md5, ripemd160, sha1, sha256, sha512,
541 des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200542 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200543 aes_cmac, des3_cmac,
TRodziewicz10e8cf52021-05-31 17:58:57 +0200544 aria, camellia, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300545 poly1305,
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100546 ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200547 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200548} todo_list;
549
Simon Butcher63cb97e2018-12-06 17:43:31 +0000550
Paul Bakkercce9d772011-11-18 14:26:47 +0000551int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000552{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100553 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200554 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200555 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200556 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200557#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200558 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000559#endif
Gilles Peskine28f62f62020-07-24 02:06:46 +0200560#if defined(MBEDTLS_ECP_C)
561 mbedtls_ecp_curve_info single_curve[2] = {
562 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
563 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
564 };
565 const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( );
566#endif
567
568#if defined(MBEDTLS_ECP_C)
569 (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */
570#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000571
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000572 if( argc <= 1 )
573 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200574 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000575 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200576 else
577 {
578 memset( &todo, 0, sizeof( todo ) );
579
580 for( i = 1; i < argc; i++ )
581 {
TRodziewicz10e8cf52021-05-31 17:58:57 +0200582 if( strcmp( argv[i], "md5" ) == 0 )
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200583 todo.md5 = 1;
584 else if( strcmp( argv[i], "ripemd160" ) == 0 )
585 todo.ripemd160 = 1;
586 else if( strcmp( argv[i], "sha1" ) == 0 )
587 todo.sha1 = 1;
588 else if( strcmp( argv[i], "sha256" ) == 0 )
589 todo.sha256 = 1;
590 else if( strcmp( argv[i], "sha512" ) == 0 )
591 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200592 else if( strcmp( argv[i], "des3" ) == 0 )
593 todo.des3 = 1;
594 else if( strcmp( argv[i], "des" ) == 0 )
595 todo.des = 1;
596 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
597 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200598 else if( strcmp( argv[i], "aes_xts" ) == 0 )
599 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200600 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
601 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200602 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
603 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200604 else if( strcmp( argv[i], "chachapoly" ) == 0 )
605 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100606 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
607 todo.aes_cmac = 1;
608 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
609 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100610 else if( strcmp( argv[i], "aria" ) == 0 )
611 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200612 else if( strcmp( argv[i], "camellia" ) == 0 )
613 todo.camellia = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300614 else if( strcmp( argv[i], "chacha20" ) == 0 )
615 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300616 else if( strcmp( argv[i], "poly1305" ) == 0 )
617 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200618 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
619 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100620 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
621 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200622 else if( strcmp( argv[i], "rsa" ) == 0 )
623 todo.rsa = 1;
624 else if( strcmp( argv[i], "dhm" ) == 0 )
625 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200626 else if( strcmp( argv[i], "ecdsa" ) == 0 )
627 todo.ecdsa = 1;
628 else if( strcmp( argv[i], "ecdh" ) == 0 )
629 todo.ecdh = 1;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200630#if defined(MBEDTLS_ECP_C)
631 else if( set_ecp_curve( argv[i], single_curve ) )
632 curve_list = single_curve;
633#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200634 else
635 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200636 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
637 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200638 }
639 }
640 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000641
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200642 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000643
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200644#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200645 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000646#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200647 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200648 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200649
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200650#if defined(MBEDTLS_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200651 if( todo.md5 )
TRodziewicz26371e42021-06-08 16:45:41 +0200652 TIME_AND_TSC( "MD5", mbedtls_md5( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000653#endif
654
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200655#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200656 if( todo.ripemd160 )
TRodziewicz26371e42021-06-08 16:45:41 +0200657 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100658#endif
659
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200660#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200661 if( todo.sha1 )
TRodziewicz26371e42021-06-08 16:45:41 +0200662 TIME_AND_TSC( "SHA-1", mbedtls_sha1( 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_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200666 if( todo.sha256 )
TRodziewicz26371e42021-06-08 16:45:41 +0200667 TIME_AND_TSC( "SHA-256", mbedtls_sha256( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000668#endif
669
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200670#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200671 if( todo.sha512 )
TRodziewicz26371e42021-06-08 16:45:41 +0200672 TIME_AND_TSC( "SHA-512", mbedtls_sha512( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000673#endif
674
Simon Butcher549dc3d2016-10-05 14:14:19 +0100675#if defined(MBEDTLS_DES_C)
676#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200677 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200678 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200679 mbedtls_des3_context des3;
680 mbedtls_des3_init( &des3 );
681 mbedtls_des3_set3key_enc( &des3, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200682 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200683 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
684 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200685 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000686
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200687 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200688 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200689 mbedtls_des_context des;
690 mbedtls_des_init( &des );
691 mbedtls_des_setkey_enc( &des, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200692 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200693 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
694 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200695 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100696
697#endif /* MBEDTLS_CIPHER_MODE_CBC */
698#if defined(MBEDTLS_CMAC_C)
699 if( todo.des3_cmac )
700 {
701 unsigned char output[8];
702 const mbedtls_cipher_info_t *cipher_info;
703
704 memset( buf, 0, sizeof( buf ) );
705 memset( tmp, 0, sizeof( tmp ) );
706
707 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
708
709 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100710 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
711 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100712 }
713#endif /* MBEDTLS_CMAC_C */
714#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000715
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200716#if defined(MBEDTLS_AES_C)
717#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200718 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000719 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100720 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200721 mbedtls_aes_context aes;
722 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200723 for( keysize = 128; keysize <= 256; keysize += 64 )
724 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200725 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000726
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200727 memset( buf, 0, sizeof( buf ) );
728 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200729 mbedtls_aes_setkey_enc( &aes, tmp, keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000730
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200731 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200732 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200733 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200734 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000735 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200736#endif
Aorimn5f778012016-06-09 23:22:58 +0200737#if defined(MBEDTLS_CIPHER_MODE_XTS)
738 if( todo.aes_xts )
739 {
740 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100741 mbedtls_aes_xts_context ctx;
742
743 mbedtls_aes_xts_init( &ctx );
744 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200745 {
746 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
747
748 memset( buf, 0, sizeof( buf ) );
749 memset( tmp, 0, sizeof( tmp ) );
Jaeden Amero9366feb2018-05-29 18:55:17 +0100750 mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 );
Aorimn5f778012016-06-09 23:22:58 +0200751
752 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100753 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
754 tmp, buf, buf ) );
755
756 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200757 }
Aorimn5f778012016-06-09 23:22:58 +0200758 }
759#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200760#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200761 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000762 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100763 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200764 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200765
766 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200767 for( keysize = 128; keysize <= 256; keysize += 64 )
768 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200769 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000770
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200771 memset( buf, 0, sizeof( buf ) );
772 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200773 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000774
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200775 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200776 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200777 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100778
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200779 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200780 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000781 }
782#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200783#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200784 if( todo.aes_ccm )
785 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100786 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200787 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200788
789 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200790 for( keysize = 128; keysize <= 256; keysize += 64 )
791 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200792 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200793
794 memset( buf, 0, sizeof( buf ) );
795 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200796 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200797
798 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200799 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200800 12, NULL, 0, buf, buf, tmp, 16 ) );
801
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200802 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200803 }
804 }
805#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200806#if defined(MBEDTLS_CHACHAPOLY_C)
807 if( todo.chachapoly )
808 {
809 mbedtls_chachapoly_context chachapoly;
810
811 mbedtls_chachapoly_init( &chachapoly );
812 memset( buf, 0, sizeof( buf ) );
813 memset( tmp, 0, sizeof( tmp ) );
814
815 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
816
817 mbedtls_chachapoly_setkey( &chachapoly, tmp );
818
819 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200820 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
821 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200822
823 mbedtls_chachapoly_free( &chachapoly );
824 }
825#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100826#if defined(MBEDTLS_CMAC_C)
827 if( todo.aes_cmac )
828 {
829 unsigned char output[16];
830 const mbedtls_cipher_info_t *cipher_info;
831 mbedtls_cipher_type_t cipher_type;
832 int keysize;
833
834 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
835 keysize <= 256;
836 keysize += 64, cipher_type++ )
837 {
838 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
839
840 memset( buf, 0, sizeof( buf ) );
841 memset( tmp, 0, sizeof( tmp ) );
842
843 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
844
845 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100846 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
847 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100848 }
849
850 memset( buf, 0, sizeof( buf ) );
851 memset( tmp, 0, sizeof( tmp ) );
852 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100853 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
854 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100855 }
856#endif /* MBEDTLS_CMAC_C */
857#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000858
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100859#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
860 if( todo.aria )
861 {
862 int keysize;
863 mbedtls_aria_context aria;
864 mbedtls_aria_init( &aria );
865 for( keysize = 128; keysize <= 256; keysize += 64 )
866 {
867 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
868
869 memset( buf, 0, sizeof( buf ) );
870 memset( tmp, 0, sizeof( tmp ) );
871 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
872
873 TIME_AND_TSC( title,
874 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
875 BUFSIZE, tmp, buf, buf ) );
876 }
877 mbedtls_aria_free( &aria );
878 }
879#endif
880
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200881#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200882 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000883 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100884 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200885 mbedtls_camellia_context camellia;
886 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200887 for( keysize = 128; keysize <= 256; keysize += 64 )
888 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200889 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000890
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200891 memset( buf, 0, sizeof( buf ) );
892 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200893 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000894
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200895 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200896 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200897 BUFSIZE, tmp, buf, buf ) );
898 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200899 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000900 }
901#endif
902
Daniel King34b822c2016-05-15 17:28:08 -0300903#if defined(MBEDTLS_CHACHA20_C)
904 if ( todo.chacha20 )
905 {
906 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
907 }
908#endif
909
Daniel Kingadc32c02016-05-16 18:25:45 -0300910#if defined(MBEDTLS_POLY1305_C)
911 if ( todo.poly1305 )
912 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200913 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300914 }
915#endif
916
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200917#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200918 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200919 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200920 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000921
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200922 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200923 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200924 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200925 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200926 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100927 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000928
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100929 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200930 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200931 mbedtls_exit(1);
932 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200933 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200934 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200935 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200936 }
Paul Bakker02faf452011-11-29 11:23:58 +0000937#endif
938
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200939#if defined(MBEDTLS_HMAC_DRBG_C)
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100940 if( todo.hmac_drbg )
941 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200942 mbedtls_hmac_drbg_context hmac_drbg;
943 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100944
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200945 mbedtls_hmac_drbg_init( &hmac_drbg );
946
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200947#if defined(MBEDTLS_SHA1_C)
948 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
949 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100950
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200951 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200952 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100953 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200954 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100955
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200956 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200957 mbedtls_exit(1);
958 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
959 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100960 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200961 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100962#endif
963
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200964#if defined(MBEDTLS_SHA256_C)
965 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL )
966 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100967
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200968 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200969 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100970 TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200971 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100972
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200973 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200974 mbedtls_exit(1);
975 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
976 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100977 TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200978 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100979#endif
Ron Eldor278af452018-06-20 18:40:21 +0300980 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100981 }
982#endif
983
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200984#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200985 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +0000986 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100987 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200988 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +0200989 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200990 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200991 mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200992
Ronald Cronc1905a12021-06-05 11:11:14 +0200993 mbedtls_rsa_init( &rsa );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200994 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200995
996 TIME_PUBLIC( title, " public",
997 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200998 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200999
1000 TIME_PUBLIC( title, "private",
1001 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001002 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001003
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001004 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001005 }
Paul Bakker5121ce52009-01-03 21:22:43 +00001006 }
Paul Bakker5121ce52009-01-03 21:22:43 +00001007#endif
1008
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001009#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +02001010 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001011 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001012 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -08001013 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001014 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001015 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001016 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001017 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001018 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001019 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001020 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
1021
1022 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
1023 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
1024 sizeof( dhm_P_3072 ) };
1025
1026 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
1027 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
1028 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001029
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001030 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001031 size_t olen;
Gilles Peskine487bbf62021-05-27 22:17:07 +02001032 size_t n;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001033 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001034 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001035 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001036
Hanno Beckerb9539212017-10-04 13:13:34 +01001037 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
1038 dhm_P_size[i] ) != 0 ||
1039 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
1040 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001041 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001042 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001043 }
1044
Gilles Peskine487bbf62021-05-27 22:17:07 +02001045 n = mbedtls_mpi_size( &dhm.P );
1046 mbedtls_dhm_make_public( &dhm, (int) n, buf, n, myrand, NULL );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001047 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
1048 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001049
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001050 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001051 TIME_PUBLIC( title, "handshake",
Gilles Peskine487bbf62021-05-27 22:17:07 +02001052 ret |= mbedtls_dhm_make_public( &dhm, (int) n, buf, n,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001053 myrand, NULL );
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001054 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001055
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001056 mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001057 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001058 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001059
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001060 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001061 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001062 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001063#endif
1064
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001065#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001066 if( todo.ecdsa )
1067 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001068 mbedtls_ecdsa_context ecdsa;
1069 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001070 size_t sig_len;
1071
1072 memset( buf, 0x2A, sizeof( buf ) );
1073
Gilles Peskine28f62f62020-07-24 02:06:46 +02001074 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001075 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001076 curve_info++ )
1077 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001078 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001079 continue;
1080
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001081 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001082
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001083 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
1084 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001085 ecp_clear_precomputed( &ecdsa.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001086
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001087 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001088 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001089 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001090 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001091 tmp, &sig_len, myrand, NULL ) );
1092
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001093 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001094 }
1095
Gilles Peskine28f62f62020-07-24 02:06:46 +02001096 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001097 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001098 curve_info++ )
1099 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001100 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001101 continue;
1102
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001103 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001104
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001105 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001106 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001107 tmp, &sig_len, myrand, NULL ) != 0 )
1108 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001109 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001110 }
1111 ecp_clear_precomputed( &ecdsa.grp );
1112
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001113 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001114 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001115 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001116 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001117 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001118
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001119 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001120 }
1121 }
1122#endif
1123
Janos Follath52735ef2018-08-15 10:19:16 +01001124#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001125 if( todo.ecdh )
1126 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001127 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001128 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001129 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
1130#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
1131 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001132#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001133#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
1134 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
1135#endif
1136 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
1137 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001138 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001139 size_t olen;
Gilles Peskine28f62f62020-07-24 02:06:46 +02001140 const mbedtls_ecp_curve_info *selected_montgomery_curve_list =
1141 montgomery_curve_list;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001142
Gilles Peskine28f62f62020-07-24 02:06:46 +02001143 if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve )
1144 {
1145 mbedtls_ecp_group grp;
1146 mbedtls_ecp_group_init( &grp );
1147 if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 )
1148 mbedtls_exit( 1 );
1149 if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
1150 selected_montgomery_curve_list = single_curve;
1151 else /* empty list */
1152 selected_montgomery_curve_list = single_curve + 1;
1153 mbedtls_ecp_group_free( &grp );
1154 }
1155
1156 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001157 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001158 curve_info++ )
1159 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001160 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1161 continue;
1162
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001163 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001164
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001165 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1166 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1167 myrand, NULL ) );
1168 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001169 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001170
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001171 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001172 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001173 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001174 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001175 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001176 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1177 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001178 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001179 }
1180
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001181 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001182 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001183 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1184 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001185 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001186 mbedtls_ecdh_init( &ecdh );
1187 mbedtls_mpi_init( &z );
1188
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001189 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1190 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001191
1192 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
1193 curve_info->name );
1194 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001195 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
1196 myrand, NULL ) );
1197 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1198 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001199
1200 mbedtls_ecdh_free( &ecdh );
1201 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001202 }
1203
Gilles Peskine28f62f62020-07-24 02:06:46 +02001204 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001205 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001206 curve_info++ )
1207 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001208 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1209 continue;
1210
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001211 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001212
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001213 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1214 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1215 myrand, NULL ) );
1216 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
1217 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1218 myrand, NULL ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001219 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001220
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001221 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001222 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001223 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001224 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1225 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001226 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001227 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001228
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001229 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001230 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001231 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1232 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001233 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001234 mbedtls_ecdh_init( &ecdh );
1235 mbedtls_mpi_init( &z );
1236
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001237 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1238 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1239 myrand, NULL ) );
1240 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001241
1242 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1243 curve_info->name );
1244 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001245 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1246 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001247
1248 mbedtls_ecdh_free( &ecdh );
1249 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001250 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001251 }
1252#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001253
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001254#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001255 if( todo.ecdh )
1256 {
1257 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1258 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001259 const mbedtls_ecp_curve_info *curve_info;
1260 size_t olen;
1261
1262 for( curve_info = curve_list;
1263 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1264 curve_info++ )
1265 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001266 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1267 continue;
1268
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001269 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001270 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001271
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001272 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001273 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001274 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001275
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001276 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001277 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 +01001278
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001279 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1280 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 +01001281
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001282 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1283 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 +01001284
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001285 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 +00001286 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001287
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001288 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001289 );
1290
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001291 }
1292 }
1293#endif
1294
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001295 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001296
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001297#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1298 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001299#endif
1300
Paul Bakkercce9d772011-11-18 14:26:47 +00001301#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001302 mbedtls_printf( " Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00001303 fflush( stdout ); getchar();
1304#endif
1305
k-stachowiak776521a2019-05-23 09:46:47 +02001306 mbedtls_exit( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +00001307}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001308
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001309#endif /* MBEDTLS_TIMING_C */