blob: 44e9a5851ef6b097fb170f810bc0241bf96836d8 [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
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020020#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000021#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020022#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020023#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020024#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000025
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000026#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000027
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#if !defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000029int main( void )
30{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020031 mbedtls_printf("MBEDTLS_TIMING_C not defined.\n");
k-stachowiak776521a2019-05-23 09:46:47 +020032 mbedtls_exit( 0 );
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000033}
34#else
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010035
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000036#include <string.h>
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020037#include <stdlib.h>
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010038
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000039#include "mbedtls/timing.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000040
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000041#include "mbedtls/md4.h"
42#include "mbedtls/md5.h"
43#include "mbedtls/ripemd160.h"
44#include "mbedtls/sha1.h"
45#include "mbedtls/sha256.h"
46#include "mbedtls/sha512.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010047
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000048#include "mbedtls/arc4.h"
49#include "mbedtls/des.h"
50#include "mbedtls/aes.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010051#include "mbedtls/aria.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000052#include "mbedtls/blowfish.h"
53#include "mbedtls/camellia.h"
Daniel King34b822c2016-05-15 17:28:08 -030054#include "mbedtls/chacha20.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000055#include "mbedtls/gcm.h"
56#include "mbedtls/ccm.h"
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +020057#include "mbedtls/chachapoly.h"
Simon Butcher549dc3d2016-10-05 14:14:19 +010058#include "mbedtls/cmac.h"
Daniel Kingadc32c02016-05-16 18:25:45 -030059#include "mbedtls/poly1305.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010060
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000061#include "mbedtls/havege.h"
62#include "mbedtls/ctr_drbg.h"
63#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010064
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000065#include "mbedtls/rsa.h"
66#include "mbedtls/dhm.h"
67#include "mbedtls/ecdsa.h"
68#include "mbedtls/ecdh.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010069
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000070#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000071
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020072#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000073#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +000074#endif
75
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000076/*
77 * For heap usage estimates, we need an estimate of the overhead per allocated
78 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
79 * so use that as our baseline.
80 */
81#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
82
83/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +020084 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000085 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +010086#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000087
Paul Bakker02faf452011-11-29 11:23:58 +000088#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +010089#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +010090#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +000091
Rich Evans85b05ec2015-02-12 11:37:29 +000092#define OPTIONS \
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +020093 "md4, md5, ripemd160, sha1, sha256, sha512,\n" \
Daniel King34b822c2016-05-15 17:28:08 -030094 "arc4, des3, des, camellia, blowfish, chacha20,\n" \
Zhai Zhaoxuane22da992020-05-09 23:50:32 +080095 "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -030096 "aes_cmac, des3_cmac, poly1305\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +000097 "havege, ctr_drbg, hmac_drbg\n" \
98 "rsa, dhm, ecdsa, ecdh.\n"
99
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200100#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000101#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100102 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200103 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000104#else
105#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200106 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000107#endif
108
109#define TIME_AND_TSC( TITLE, CODE ) \
110do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200111 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200112 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000113 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200114 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000115 fflush( stdout ); \
116 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200117 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200118 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000119 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200120 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000121 } \
122 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200123 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200124 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000125 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200126 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000127 } \
128 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200129 if( ret != 0 ) \
130 { \
131 PRINT_ERROR; \
132 } \
133 else \
134 { \
135 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
136 ii * BUFSIZE / 1024, \
137 ( mbedtls_timing_hardclock() - tsc ) \
138 / ( jj * BUFSIZE ) ); \
139 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000140} while( 0 )
141
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200142#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100143
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200144/* How much space to reserve for the title when printing heap usage results.
145 * Updated manually as the output of the following command:
146 *
147 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
Manuel Pégourié-Gonnard64084952022-01-05 10:34:17 +0100148 * awk '{print length+3}' | sort -rn | head -n1
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200149 *
Manuel Pégourié-Gonnard64084952022-01-05 10:34:17 +0100150 * This computes the maximum length of a title +3, because we appends "/s" and
151 * want at least one space. (If the value is too small, the only consequence
Shaun Case0e7791f2021-12-20 21:14:10 -0800152 * is poor alignment.) */
Manuel Pégourié-Gonnard64084952022-01-05 10:34:17 +0100153#define TITLE_SPACE 17
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200154
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100155#define MEMORY_MEASURE_INIT \
156 size_t max_used, max_blocks, max_bytes; \
157 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200158 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200159 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100160
161#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200162 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200163 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
164 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100165 max_used -= prv_used; \
166 max_blocks -= prv_blocks; \
167 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200168 mbedtls_printf( "%6u heap bytes", (unsigned) max_bytes );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100169
170#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000171#define MEMORY_MEASURE_INIT
172#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100173#endif
174
Rich Evans85b05ec2015-02-12 11:37:29 +0000175#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
176do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200177 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000178 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100179 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000180 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200181 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000182 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200183 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000184 \
185 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200186 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000187 { \
188 CODE; \
189 } \
190 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000191 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
192 { \
193 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
194 ret = 0; \
195 } \
196 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000197 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100198 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000199 } \
200 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100201 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200202 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100203 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200204 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100205 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000206} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000207
Paul Bakkera3d195c2011-11-27 21:07:34 +0000208static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000209{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000210 size_t use_len;
211 int rnd;
212
Paul Bakker5121ce52009-01-03 21:22:43 +0000213 if( rng_state != NULL )
214 rng_state = NULL;
215
Paul Bakkera3d195c2011-11-27 21:07:34 +0000216 while( len > 0 )
217 {
218 use_len = len;
219 if( use_len > sizeof(int) )
220 use_len = sizeof(int);
221
222 rnd = rand();
223 memcpy( output, &rnd, use_len );
224 output += use_len;
225 len -= use_len;
226 }
227
228 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000229}
230
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000231#define CHECK_AND_CONTINUE( R ) \
232 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100233 int CHECK_AND_CONTINUE_ret = ( R ); \
234 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000235 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
236 continue; \
237 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100238 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000239 mbedtls_exit( 1 ); \
240 } \
241 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000242
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100243/*
244 * Clear some memory that was used to prepare the context
245 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200246#if defined(MBEDTLS_ECP_C)
247void ecp_clear_precomputed( mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100248{
249 if( grp->T != NULL )
250 {
251 size_t i;
252 for( i = 0; i < grp->T_size; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200253 mbedtls_ecp_point_free( &grp->T[i] );
254 mbedtls_free( grp->T );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100255 }
256 grp->T = NULL;
257 grp->T_size = 0;
258}
259#else
260#define ecp_clear_precomputed( g )
261#endif
262
Gilles Peskine28f62f62020-07-24 02:06:46 +0200263#if defined(MBEDTLS_ECP_C)
264static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve )
265{
266 const mbedtls_ecp_curve_info *found =
267 mbedtls_ecp_curve_info_from_name( string );
268 if( found != NULL )
269 {
270 *curve = *found;
271 return( 1 );
272 }
273 else
274 return( 0 );
275}
276#endif
277
Paul Bakker5121ce52009-01-03 21:22:43 +0000278unsigned char buf[BUFSIZE];
279
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200280typedef struct {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200281 char md4, md5, ripemd160, sha1, sha256, sha512,
Simon Butcher549dc3d2016-10-05 14:14:19 +0100282 arc4, des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200283 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200284 aes_cmac, des3_cmac,
Manuel Pégourié-Gonnard39b19042018-06-07 12:01:33 +0200285 aria, camellia, blowfish, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300286 poly1305,
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100287 havege, ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200288 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200289} todo_list;
290
Simon Butcher63cb97e2018-12-06 17:43:31 +0000291
Paul Bakkercce9d772011-11-18 14:26:47 +0000292int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000293{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100294 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200295 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200296 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200297 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200298#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200299 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000300#endif
Gilles Peskine28f62f62020-07-24 02:06:46 +0200301#if defined(MBEDTLS_ECP_C)
302 mbedtls_ecp_curve_info single_curve[2] = {
303 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
304 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
305 };
306 const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( );
307#endif
308
309#if defined(MBEDTLS_ECP_C)
310 (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */
311#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000312
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000313 if( argc <= 1 )
314 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200315 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000316 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200317 else
318 {
319 memset( &todo, 0, sizeof( todo ) );
320
321 for( i = 1; i < argc; i++ )
322 {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200323 if( strcmp( argv[i], "md4" ) == 0 )
324 todo.md4 = 1;
325 else if( strcmp( argv[i], "md5" ) == 0 )
326 todo.md5 = 1;
327 else if( strcmp( argv[i], "ripemd160" ) == 0 )
328 todo.ripemd160 = 1;
329 else if( strcmp( argv[i], "sha1" ) == 0 )
330 todo.sha1 = 1;
331 else if( strcmp( argv[i], "sha256" ) == 0 )
332 todo.sha256 = 1;
333 else if( strcmp( argv[i], "sha512" ) == 0 )
334 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200335 else if( strcmp( argv[i], "arc4" ) == 0 )
336 todo.arc4 = 1;
337 else if( strcmp( argv[i], "des3" ) == 0 )
338 todo.des3 = 1;
339 else if( strcmp( argv[i], "des" ) == 0 )
340 todo.des = 1;
341 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
342 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200343 else if( strcmp( argv[i], "aes_xts" ) == 0 )
344 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200345 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
346 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200347 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
348 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200349 else if( strcmp( argv[i], "chachapoly" ) == 0 )
350 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100351 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
352 todo.aes_cmac = 1;
353 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
354 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100355 else if( strcmp( argv[i], "aria" ) == 0 )
356 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200357 else if( strcmp( argv[i], "camellia" ) == 0 )
358 todo.camellia = 1;
359 else if( strcmp( argv[i], "blowfish" ) == 0 )
360 todo.blowfish = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300361 else if( strcmp( argv[i], "chacha20" ) == 0 )
362 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300363 else if( strcmp( argv[i], "poly1305" ) == 0 )
364 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200365 else if( strcmp( argv[i], "havege" ) == 0 )
366 todo.havege = 1;
367 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
368 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100369 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
370 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200371 else if( strcmp( argv[i], "rsa" ) == 0 )
372 todo.rsa = 1;
373 else if( strcmp( argv[i], "dhm" ) == 0 )
374 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200375 else if( strcmp( argv[i], "ecdsa" ) == 0 )
376 todo.ecdsa = 1;
377 else if( strcmp( argv[i], "ecdh" ) == 0 )
378 todo.ecdh = 1;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200379#if defined(MBEDTLS_ECP_C)
380 else if( set_ecp_curve( argv[i], single_curve ) )
381 curve_list = single_curve;
382#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200383 else
384 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200385 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
386 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200387 }
388 }
389 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000390
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200391 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000392
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200393#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200394 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000395#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200396 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200397 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200398
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200399#if defined(MBEDTLS_MD4_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200400 if( todo.md4 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100401 TIME_AND_TSC( "MD4", mbedtls_md4_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000402#endif
403
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200404#if defined(MBEDTLS_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200405 if( todo.md5 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100406 TIME_AND_TSC( "MD5", mbedtls_md5_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000407#endif
408
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200409#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200410 if( todo.ripemd160 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100411 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160_ret( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100412#endif
413
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200414#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200415 if( todo.sha1 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100416 TIME_AND_TSC( "SHA-1", mbedtls_sha1_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000417#endif
418
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200419#if defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200420 if( todo.sha256 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100421 TIME_AND_TSC( "SHA-256", mbedtls_sha256_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000422#endif
423
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200424#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200425 if( todo.sha512 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100426 TIME_AND_TSC( "SHA-512", mbedtls_sha512_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000427#endif
428
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200429#if defined(MBEDTLS_ARC4_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200430 if( todo.arc4 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200431 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200432 mbedtls_arc4_context arc4;
433 mbedtls_arc4_init( &arc4 );
434 mbedtls_arc4_setup( &arc4, tmp, 32 );
435 TIME_AND_TSC( "ARC4", mbedtls_arc4_crypt( &arc4, BUFSIZE, buf, buf ) );
436 mbedtls_arc4_free( &arc4 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200437 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000438#endif
439
Simon Butcher549dc3d2016-10-05 14:14:19 +0100440#if defined(MBEDTLS_DES_C)
441#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200442 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200443 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200444 mbedtls_des3_context des3;
445 mbedtls_des3_init( &des3 );
Gilles Peskine377a3102021-07-07 21:08:28 +0200446 if( mbedtls_des3_set3key_enc( &des3, tmp ) != 0 )
447 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200448 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200449 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
450 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200451 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000452
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200453 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200454 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200455 mbedtls_des_context des;
456 mbedtls_des_init( &des );
Gilles Peskine377a3102021-07-07 21:08:28 +0200457 if( mbedtls_des_setkey_enc( &des, tmp ) != 0 )
458 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200459 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200460 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
461 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200462 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100463
464#endif /* MBEDTLS_CIPHER_MODE_CBC */
465#if defined(MBEDTLS_CMAC_C)
466 if( todo.des3_cmac )
467 {
468 unsigned char output[8];
469 const mbedtls_cipher_info_t *cipher_info;
470
471 memset( buf, 0, sizeof( buf ) );
472 memset( tmp, 0, sizeof( tmp ) );
473
474 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
475
476 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100477 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
478 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100479 }
480#endif /* MBEDTLS_CMAC_C */
481#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000482
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200483#if defined(MBEDTLS_AES_C)
484#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200485 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000486 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100487 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200488 mbedtls_aes_context aes;
489 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200490 for( keysize = 128; keysize <= 256; keysize += 64 )
491 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200492 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000493
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200494 memset( buf, 0, sizeof( buf ) );
495 memset( tmp, 0, sizeof( tmp ) );
Gilles Peskine377a3102021-07-07 21:08:28 +0200496 CHECK_AND_CONTINUE( mbedtls_aes_setkey_enc( &aes, tmp, keysize ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000497
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200498 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200499 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200500 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200501 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000502 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200503#endif
Aorimn5f778012016-06-09 23:22:58 +0200504#if defined(MBEDTLS_CIPHER_MODE_XTS)
505 if( todo.aes_xts )
506 {
507 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100508 mbedtls_aes_xts_context ctx;
509
510 mbedtls_aes_xts_init( &ctx );
511 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200512 {
513 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
514
515 memset( buf, 0, sizeof( buf ) );
516 memset( tmp, 0, sizeof( tmp ) );
Gilles Peskine377a3102021-07-07 21:08:28 +0200517 CHECK_AND_CONTINUE( mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 ) );
Aorimn5f778012016-06-09 23:22:58 +0200518
519 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100520 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
521 tmp, buf, buf ) );
522
523 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200524 }
Aorimn5f778012016-06-09 23:22:58 +0200525 }
526#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200527#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200528 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000529 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100530 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200531 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200532
533 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200534 for( keysize = 128; keysize <= 256; keysize += 64 )
535 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200536 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000537
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200538 memset( buf, 0, sizeof( buf ) );
539 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200540 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000541
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200542 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200543 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200544 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100545
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200546 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200547 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000548 }
549#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200550#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200551 if( todo.aes_ccm )
552 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100553 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200554 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200555
556 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200557 for( keysize = 128; keysize <= 256; keysize += 64 )
558 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200559 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200560
561 memset( buf, 0, sizeof( buf ) );
562 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200563 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200564
565 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200566 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200567 12, NULL, 0, buf, buf, tmp, 16 ) );
568
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200569 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200570 }
571 }
572#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200573#if defined(MBEDTLS_CHACHAPOLY_C)
574 if( todo.chachapoly )
575 {
576 mbedtls_chachapoly_context chachapoly;
577
578 mbedtls_chachapoly_init( &chachapoly );
579 memset( buf, 0, sizeof( buf ) );
580 memset( tmp, 0, sizeof( tmp ) );
581
582 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
583
584 mbedtls_chachapoly_setkey( &chachapoly, tmp );
585
586 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200587 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
588 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200589
590 mbedtls_chachapoly_free( &chachapoly );
591 }
592#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100593#if defined(MBEDTLS_CMAC_C)
594 if( todo.aes_cmac )
595 {
596 unsigned char output[16];
597 const mbedtls_cipher_info_t *cipher_info;
598 mbedtls_cipher_type_t cipher_type;
599 int keysize;
600
601 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
602 keysize <= 256;
603 keysize += 64, cipher_type++ )
604 {
605 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
606
607 memset( buf, 0, sizeof( buf ) );
608 memset( tmp, 0, sizeof( tmp ) );
609
610 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
611
612 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100613 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
614 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100615 }
616
617 memset( buf, 0, sizeof( buf ) );
618 memset( tmp, 0, sizeof( tmp ) );
619 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100620 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
621 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100622 }
623#endif /* MBEDTLS_CMAC_C */
624#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000625
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100626#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
627 if( todo.aria )
628 {
629 int keysize;
630 mbedtls_aria_context aria;
631 mbedtls_aria_init( &aria );
632 for( keysize = 128; keysize <= 256; keysize += 64 )
633 {
634 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
635
636 memset( buf, 0, sizeof( buf ) );
637 memset( tmp, 0, sizeof( tmp ) );
638 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
639
640 TIME_AND_TSC( title,
641 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
642 BUFSIZE, tmp, buf, buf ) );
643 }
644 mbedtls_aria_free( &aria );
645 }
646#endif
647
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200648#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200649 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000650 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100651 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200652 mbedtls_camellia_context camellia;
653 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200654 for( keysize = 128; keysize <= 256; keysize += 64 )
655 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200656 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000657
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200658 memset( buf, 0, sizeof( buf ) );
659 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200660 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000661
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200662 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200663 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200664 BUFSIZE, tmp, buf, buf ) );
665 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200666 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000667 }
668#endif
669
Daniel King34b822c2016-05-15 17:28:08 -0300670#if defined(MBEDTLS_CHACHA20_C)
671 if ( todo.chacha20 )
672 {
673 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
674 }
675#endif
676
Daniel Kingadc32c02016-05-16 18:25:45 -0300677#if defined(MBEDTLS_POLY1305_C)
678 if ( todo.poly1305 )
679 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200680 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300681 }
682#endif
683
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200684#if defined(MBEDTLS_BLOWFISH_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200685 if( todo.blowfish )
Paul Bakker3d58fe82012-07-04 17:15:31 +0000686 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100687 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200688 mbedtls_blowfish_context blowfish;
689 mbedtls_blowfish_init( &blowfish );
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200690
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200691 for( keysize = 128; keysize <= 256; keysize += 64 )
692 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200693 mbedtls_snprintf( title, sizeof( title ), "BLOWFISH-CBC-%d", keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000694
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200695 memset( buf, 0, sizeof( buf ) );
696 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200697 mbedtls_blowfish_setkey( &blowfish, tmp, keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000698
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200699 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200700 mbedtls_blowfish_crypt_cbc( &blowfish, MBEDTLS_BLOWFISH_ENCRYPT, BUFSIZE,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200701 tmp, buf, buf ) );
702 }
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200703
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200704 mbedtls_blowfish_free( &blowfish );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000705 }
706#endif
707
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200708#if defined(MBEDTLS_HAVEGE_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200709 if( todo.havege )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200710 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200711 mbedtls_havege_state hs;
712 mbedtls_havege_init( &hs );
713 TIME_AND_TSC( "HAVEGE", mbedtls_havege_random( &hs, buf, BUFSIZE ) );
714 mbedtls_havege_free( &hs );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200715 }
Paul Bakker02faf452011-11-29 11:23:58 +0000716#endif
717
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200718#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200719 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200720 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200721 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000722
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200723 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200724 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200725 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200726 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200727 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100728 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000729
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100730 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200731 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200732 mbedtls_exit(1);
733 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200734 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200735 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200736 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200737 }
Paul Bakker02faf452011-11-29 11:23:58 +0000738#endif
739
Andrzej Kurekb3b0ec92022-10-18 08:21:07 -0400740#if defined(MBEDTLS_HMAC_DRBG_C) && \
741 ( defined(MBEDTLS_SHA1_C) || defined(MBEDTLS_SHA256_C) )
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100742 if( todo.hmac_drbg )
743 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200744 mbedtls_hmac_drbg_context hmac_drbg;
745 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100746
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200747 mbedtls_hmac_drbg_init( &hmac_drbg );
748
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200749#if defined(MBEDTLS_SHA1_C)
750 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
751 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100752
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200753 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200754 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100755 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200756 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100757
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200758 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200759 mbedtls_exit(1);
760 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
761 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100762 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200763 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100764#endif
765
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200766#if defined(MBEDTLS_SHA256_C)
767 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL )
768 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100769
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200770 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200771 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100772 TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200773 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100774
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200775 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200776 mbedtls_exit(1);
777 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
778 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100779 TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200780 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100781#endif
Ron Eldor278af452018-06-20 18:40:21 +0300782 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100783 }
Andrzej Kurekb3b0ec92022-10-18 08:21:07 -0400784#endif /* MBEDTLS_HMAC_DRBG_C && ( MBEDTLS_SHA1_C || MBEDTLS_SHA256_C ) */
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100785
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200786#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200787 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +0000788 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100789 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200790 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +0200791 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200792 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200793 mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200794
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200795 mbedtls_rsa_init( &rsa, MBEDTLS_RSA_PKCS_V15, 0 );
796 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200797
798 TIME_PUBLIC( title, " public",
799 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200800 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200801
802 TIME_PUBLIC( title, "private",
803 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200804 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200805
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200806 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200807 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000808 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000809#endif
810
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200811#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200812 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100813 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +0200814 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -0800815 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100816 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800817 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100818 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800819 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100820 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800821 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100822 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
823
824 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
825 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
826 sizeof( dhm_P_3072 ) };
827
828 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
829 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
830 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200831
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200832 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200833 size_t olen;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +0200834 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200835 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200836 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200837
Hanno Beckerb9539212017-10-04 13:13:34 +0100838 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
839 dhm_P_size[i] ) != 0 ||
840 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
841 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200842 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200843 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200844 }
845
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200846 dhm.len = mbedtls_mpi_size( &dhm.P );
847 mbedtls_dhm_make_public( &dhm, (int) dhm.len, buf, dhm.len, myrand, NULL );
848 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
849 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200850
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200851 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200852 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200853 ret |= mbedtls_dhm_make_public( &dhm, (int) dhm.len, buf, dhm.len,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200854 myrand, NULL );
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +0100855 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200856
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200857 mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200858 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +0100859 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200860
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200861 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200862 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100863 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100864#endif
865
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200866#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200867 if( todo.ecdsa )
868 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200869 mbedtls_ecdsa_context ecdsa;
870 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200871 size_t sig_len;
872
873 memset( buf, 0x2A, sizeof( buf ) );
874
Gilles Peskine28f62f62020-07-24 02:06:46 +0200875 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200876 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200877 curve_info++ )
878 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +0000879 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +0000880 continue;
881
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200882 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200883
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200884 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
885 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100886 ecp_clear_precomputed( &ecdsa.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200887
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200888 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200889 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200890 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200891 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200892 tmp, &sig_len, myrand, NULL ) );
893
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200894 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100895 }
896
Gilles Peskine28f62f62020-07-24 02:06:46 +0200897 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200898 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100899 curve_info++ )
900 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +0000901 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +0000902 continue;
903
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200904 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100905
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200906 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200907 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100908 tmp, &sig_len, myrand, NULL ) != 0 )
909 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200910 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100911 }
912 ecp_clear_precomputed( &ecdsa.grp );
913
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200914 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100915 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200916 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200917 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200918 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200919
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200920 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200921 }
922 }
923#endif
924
Janos Follath52735ef2018-08-15 10:19:16 +0100925#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200926 if( todo.ecdh )
927 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200928 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200929 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000930 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
931#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
932 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000933#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000934#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
935 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
936#endif
937 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
938 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200939 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200940 size_t olen;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200941 const mbedtls_ecp_curve_info *selected_montgomery_curve_list =
942 montgomery_curve_list;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200943
Gilles Peskine28f62f62020-07-24 02:06:46 +0200944 if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve )
945 {
946 mbedtls_ecp_group grp;
947 mbedtls_ecp_group_init( &grp );
948 if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 )
949 mbedtls_exit( 1 );
950 if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
951 selected_montgomery_curve_list = single_curve;
952 else /* empty list */
953 selected_montgomery_curve_list = single_curve + 1;
954 mbedtls_ecp_group_free( &grp );
955 }
956
957 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200958 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200959 curve_info++ )
960 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +0100961 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
962 continue;
963
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200964 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200965
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000966 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
967 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
968 myrand, NULL ) );
969 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100970 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200971
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200972 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200973 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200974 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000975 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200976 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000977 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
978 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200979 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100980 }
981
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000982 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +0200983 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000984 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
985 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000986 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000987 mbedtls_ecdh_init( &ecdh );
988 mbedtls_mpi_init( &z );
989
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000990 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
991 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000992
993 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
994 curve_info->name );
995 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000996 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
997 myrand, NULL ) );
998 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
999 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001000
1001 mbedtls_ecdh_free( &ecdh );
1002 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001003 }
1004
Gilles Peskine28f62f62020-07-24 02:06:46 +02001005 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001006 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001007 curve_info++ )
1008 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001009 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1010 continue;
1011
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001012 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001013
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001014 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1015 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1016 myrand, NULL ) );
1017 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
1018 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1019 myrand, NULL ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001020 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001021
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001022 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001023 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001024 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001025 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1026 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001027 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001028 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001029
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001030 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001031 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001032 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1033 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001034 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001035 mbedtls_ecdh_init( &ecdh );
1036 mbedtls_mpi_init( &z );
1037
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001038 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1039 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1040 myrand, NULL ) );
1041 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001042
1043 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1044 curve_info->name );
1045 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001046 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1047 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001048
1049 mbedtls_ecdh_free( &ecdh );
1050 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001051 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001052 }
1053#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001054
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001055#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001056 if( todo.ecdh )
1057 {
1058 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1059 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001060 const mbedtls_ecp_curve_info *curve_info;
1061 size_t olen;
1062
1063 for( curve_info = curve_list;
1064 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1065 curve_info++ )
1066 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001067 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1068 continue;
1069
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001070 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001071 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001072
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001073 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001074 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001075 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001076
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001077 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001078 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 +01001079
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001080 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1081 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 +01001082
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001083 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1084 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 +01001085
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001086 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 +00001087 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001088
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001089 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001090 );
1091
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001092 }
1093 }
1094#endif
1095
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001096 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001097
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001098#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1099 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001100#endif
1101
Paul Bakkercce9d772011-11-18 14:26:47 +00001102#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001103 mbedtls_printf( " Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00001104 fflush( stdout ); getchar();
1105#endif
1106
k-stachowiak776521a2019-05-23 09:46:47 +02001107 mbedtls_exit( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +00001108}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001109
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001110#endif /* MBEDTLS_TIMING_C */