blob: 3320bbf7d508b3e5126930c248f70e2356a69acc [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Benchmark demonstration program
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker5121ce52009-01-03 21:22:43 +000018 */
19
Mateusz Starzyk6c2e9b62021-05-19 17:54:54 +020020#define MBEDTLS_ALLOW_PRIVATE_ACCESS
21
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020024#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020026#endif
Paul Bakker5121ce52009-01-03 21:22:43 +000027
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000028#include "mbedtls/platform.h"
Christoph M. Wintersteigercc91fe22019-02-20 18:06:00 +000029#if !defined(MBEDTLS_PLATFORM_C)
Rich Evans18b78c72015-02-11 14:06:19 +000030#include <stdio.h>
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010031#include <stdlib.h>
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020032#define mbedtls_exit exit
33#define mbedtls_printf printf
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020034#define mbedtls_free free
Rich Evansf90016a2015-01-19 14:26:37 +000035#endif
36
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020037#if !defined(MBEDTLS_TIMING_C)
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000038int main( void )
39{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020040 mbedtls_printf("MBEDTLS_TIMING_C not defined.\n");
k-stachowiak776521a2019-05-23 09:46:47 +020041 mbedtls_exit( 0 );
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000042}
43#else
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010044
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000045#include <string.h>
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020046#include <stdlib.h>
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010047
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000048#include "mbedtls/timing.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000049
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000050#include "mbedtls/md4.h"
51#include "mbedtls/md5.h"
52#include "mbedtls/ripemd160.h"
53#include "mbedtls/sha1.h"
54#include "mbedtls/sha256.h"
55#include "mbedtls/sha512.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010056
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000057#include "mbedtls/arc4.h"
58#include "mbedtls/des.h"
59#include "mbedtls/aes.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010060#include "mbedtls/aria.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000061#include "mbedtls/blowfish.h"
62#include "mbedtls/camellia.h"
Daniel King34b822c2016-05-15 17:28:08 -030063#include "mbedtls/chacha20.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000064#include "mbedtls/gcm.h"
65#include "mbedtls/ccm.h"
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +020066#include "mbedtls/chachapoly.h"
Simon Butcher549dc3d2016-10-05 14:14:19 +010067#include "mbedtls/cmac.h"
Daniel Kingadc32c02016-05-16 18:25:45 -030068#include "mbedtls/poly1305.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010069
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000070#include "mbedtls/ctr_drbg.h"
71#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010072
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000073#include "mbedtls/rsa.h"
74#include "mbedtls/dhm.h"
75#include "mbedtls/ecdsa.h"
76#include "mbedtls/ecdh.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010077
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000078#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000079
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020080#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000081#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +000082#endif
83
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000084/*
85 * For heap usage estimates, we need an estimate of the overhead per allocated
86 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
87 * so use that as our baseline.
88 */
89#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
90
91/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +020092 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000093 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +010094#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000095
Paul Bakker02faf452011-11-29 11:23:58 +000096#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +010097#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +010098#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +000099
Rich Evans85b05ec2015-02-12 11:37:29 +0000100#define OPTIONS \
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200101 "md4, md5, ripemd160, sha1, sha256, sha512,\n" \
Daniel King34b822c2016-05-15 17:28:08 -0300102 "arc4, des3, des, camellia, blowfish, chacha20,\n" \
Zhai Zhaoxuane22da992020-05-09 23:50:32 +0800103 "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -0300104 "aes_cmac, des3_cmac, poly1305\n" \
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100105 "ctr_drbg, hmac_drbg\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +0000106 "rsa, dhm, ecdsa, ecdh.\n"
107
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200108#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000109#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100110 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200111 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000112#else
113#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200114 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000115#endif
116
117#define TIME_AND_TSC( TITLE, CODE ) \
118do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200119 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200120 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000121 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200122 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000123 fflush( stdout ); \
124 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200125 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200126 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000127 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200128 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000129 } \
130 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200131 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200132 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000133 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200134 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000135 } \
136 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200137 if( ret != 0 ) \
138 { \
139 PRINT_ERROR; \
140 } \
141 else \
142 { \
143 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
144 ii * BUFSIZE / 1024, \
145 ( mbedtls_timing_hardclock() - tsc ) \
146 / ( jj * BUFSIZE ) ); \
147 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000148} while( 0 )
149
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200150#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100151
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200152/* How much space to reserve for the title when printing heap usage results.
153 * Updated manually as the output of the following command:
154 *
155 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
156 * awk '{print length+2}' | sort -rn | head -n1
157 *
158 * This computes the maximum length of a title +2 (because we appends "/s").
159 * (If the value is too small, the only consequence is poor alignement.) */
160#define TITLE_SPACE 16
161
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100162#define MEMORY_MEASURE_INIT \
163 size_t max_used, max_blocks, max_bytes; \
164 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200165 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200166 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100167
168#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200169 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200170 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
171 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100172 max_used -= prv_used; \
173 max_blocks -= prv_blocks; \
174 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200175 mbedtls_printf( "%6u heap bytes", (unsigned) max_bytes );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100176
177#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000178#define MEMORY_MEASURE_INIT
179#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100180#endif
181
Rich Evans85b05ec2015-02-12 11:37:29 +0000182#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
183do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200184 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000185 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100186 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000187 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200188 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000189 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200190 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000191 \
192 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200193 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000194 { \
195 CODE; \
196 } \
197 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000198 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
199 { \
200 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
201 ret = 0; \
202 } \
203 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000204 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100205 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000206 } \
207 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100208 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200209 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100210 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200211 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100212 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000213} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000214
Paul Bakkera3d195c2011-11-27 21:07:34 +0000215static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000216{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000217 size_t use_len;
218 int rnd;
219
Paul Bakker5121ce52009-01-03 21:22:43 +0000220 if( rng_state != NULL )
221 rng_state = NULL;
222
Paul Bakkera3d195c2011-11-27 21:07:34 +0000223 while( len > 0 )
224 {
225 use_len = len;
226 if( use_len > sizeof(int) )
227 use_len = sizeof(int);
228
229 rnd = rand();
230 memcpy( output, &rnd, use_len );
231 output += use_len;
232 len -= use_len;
233 }
234
235 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000236}
237
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000238#define CHECK_AND_CONTINUE( R ) \
239 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100240 int CHECK_AND_CONTINUE_ret = ( R ); \
241 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000242 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
243 continue; \
244 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100245 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000246 mbedtls_exit( 1 ); \
247 } \
248 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000249
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100250/*
251 * Clear some memory that was used to prepare the context
252 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200253#if defined(MBEDTLS_ECP_C)
254void ecp_clear_precomputed( mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100255{
256 if( grp->T != NULL )
257 {
258 size_t i;
259 for( i = 0; i < grp->T_size; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200260 mbedtls_ecp_point_free( &grp->T[i] );
261 mbedtls_free( grp->T );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100262 }
263 grp->T = NULL;
264 grp->T_size = 0;
265}
266#else
267#define ecp_clear_precomputed( g )
268#endif
269
Gilles Peskine28f62f62020-07-24 02:06:46 +0200270#if defined(MBEDTLS_ECP_C)
271static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve )
272{
273 const mbedtls_ecp_curve_info *found =
274 mbedtls_ecp_curve_info_from_name( string );
275 if( found != NULL )
276 {
277 *curve = *found;
278 return( 1 );
279 }
280 else
281 return( 0 );
282}
283#endif
284
Paul Bakker5121ce52009-01-03 21:22:43 +0000285unsigned char buf[BUFSIZE];
286
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200287typedef struct {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200288 char md4, md5, ripemd160, sha1, sha256, sha512,
Simon Butcher549dc3d2016-10-05 14:14:19 +0100289 arc4, des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200290 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200291 aes_cmac, des3_cmac,
Manuel Pégourié-Gonnard39b19042018-06-07 12:01:33 +0200292 aria, camellia, blowfish, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300293 poly1305,
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100294 ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200295 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200296} todo_list;
297
Simon Butcher63cb97e2018-12-06 17:43:31 +0000298
Paul Bakkercce9d772011-11-18 14:26:47 +0000299int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000300{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100301 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200302 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200303 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200304 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200305#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200306 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000307#endif
Gilles Peskine28f62f62020-07-24 02:06:46 +0200308#if defined(MBEDTLS_ECP_C)
309 mbedtls_ecp_curve_info single_curve[2] = {
310 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
311 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
312 };
313 const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( );
314#endif
315
316#if defined(MBEDTLS_ECP_C)
317 (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */
318#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000319
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000320 if( argc <= 1 )
321 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200322 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000323 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200324 else
325 {
326 memset( &todo, 0, sizeof( todo ) );
327
328 for( i = 1; i < argc; i++ )
329 {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200330 if( strcmp( argv[i], "md4" ) == 0 )
331 todo.md4 = 1;
332 else if( strcmp( argv[i], "md5" ) == 0 )
333 todo.md5 = 1;
334 else if( strcmp( argv[i], "ripemd160" ) == 0 )
335 todo.ripemd160 = 1;
336 else if( strcmp( argv[i], "sha1" ) == 0 )
337 todo.sha1 = 1;
338 else if( strcmp( argv[i], "sha256" ) == 0 )
339 todo.sha256 = 1;
340 else if( strcmp( argv[i], "sha512" ) == 0 )
341 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200342 else if( strcmp( argv[i], "arc4" ) == 0 )
343 todo.arc4 = 1;
344 else if( strcmp( argv[i], "des3" ) == 0 )
345 todo.des3 = 1;
346 else if( strcmp( argv[i], "des" ) == 0 )
347 todo.des = 1;
348 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
349 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200350 else if( strcmp( argv[i], "aes_xts" ) == 0 )
351 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200352 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
353 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200354 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
355 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200356 else if( strcmp( argv[i], "chachapoly" ) == 0 )
357 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100358 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
359 todo.aes_cmac = 1;
360 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
361 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100362 else if( strcmp( argv[i], "aria" ) == 0 )
363 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200364 else if( strcmp( argv[i], "camellia" ) == 0 )
365 todo.camellia = 1;
366 else if( strcmp( argv[i], "blowfish" ) == 0 )
367 todo.blowfish = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300368 else if( strcmp( argv[i], "chacha20" ) == 0 )
369 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300370 else if( strcmp( argv[i], "poly1305" ) == 0 )
371 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200372 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
373 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100374 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
375 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200376 else if( strcmp( argv[i], "rsa" ) == 0 )
377 todo.rsa = 1;
378 else if( strcmp( argv[i], "dhm" ) == 0 )
379 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200380 else if( strcmp( argv[i], "ecdsa" ) == 0 )
381 todo.ecdsa = 1;
382 else if( strcmp( argv[i], "ecdh" ) == 0 )
383 todo.ecdh = 1;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200384#if defined(MBEDTLS_ECP_C)
385 else if( set_ecp_curve( argv[i], single_curve ) )
386 curve_list = single_curve;
387#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200388 else
389 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200390 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
391 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200392 }
393 }
394 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000395
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200396 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000397
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200398#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200399 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000400#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200401 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200402 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200403
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200404#if defined(MBEDTLS_MD4_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200405 if( todo.md4 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100406 TIME_AND_TSC( "MD4", mbedtls_md4_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_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200410 if( todo.md5 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100411 TIME_AND_TSC( "MD5", mbedtls_md5_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000412#endif
413
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200414#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200415 if( todo.ripemd160 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100416 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160_ret( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100417#endif
418
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200419#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200420 if( todo.sha1 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100421 TIME_AND_TSC( "SHA-1", mbedtls_sha1_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000422#endif
423
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200424#if defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200425 if( todo.sha256 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100426 TIME_AND_TSC( "SHA-256", mbedtls_sha256_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000427#endif
428
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200429#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200430 if( todo.sha512 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100431 TIME_AND_TSC( "SHA-512", mbedtls_sha512_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000432#endif
433
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200434#if defined(MBEDTLS_ARC4_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200435 if( todo.arc4 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200436 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200437 mbedtls_arc4_context arc4;
438 mbedtls_arc4_init( &arc4 );
439 mbedtls_arc4_setup( &arc4, tmp, 32 );
440 TIME_AND_TSC( "ARC4", mbedtls_arc4_crypt( &arc4, BUFSIZE, buf, buf ) );
441 mbedtls_arc4_free( &arc4 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200442 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000443#endif
444
Simon Butcher549dc3d2016-10-05 14:14:19 +0100445#if defined(MBEDTLS_DES_C)
446#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200447 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200448 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200449 mbedtls_des3_context des3;
450 mbedtls_des3_init( &des3 );
451 mbedtls_des3_set3key_enc( &des3, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200452 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200453 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
454 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200455 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000456
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200457 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200458 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200459 mbedtls_des_context des;
460 mbedtls_des_init( &des );
461 mbedtls_des_setkey_enc( &des, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200462 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200463 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
464 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200465 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100466
467#endif /* MBEDTLS_CIPHER_MODE_CBC */
468#if defined(MBEDTLS_CMAC_C)
469 if( todo.des3_cmac )
470 {
471 unsigned char output[8];
472 const mbedtls_cipher_info_t *cipher_info;
473
474 memset( buf, 0, sizeof( buf ) );
475 memset( tmp, 0, sizeof( tmp ) );
476
477 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
478
479 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100480 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
481 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100482 }
483#endif /* MBEDTLS_CMAC_C */
484#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000485
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200486#if defined(MBEDTLS_AES_C)
487#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200488 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000489 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100490 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200491 mbedtls_aes_context aes;
492 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200493 for( keysize = 128; keysize <= 256; keysize += 64 )
494 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200495 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000496
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200497 memset( buf, 0, sizeof( buf ) );
498 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200499 mbedtls_aes_setkey_enc( &aes, tmp, keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000500
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200501 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200502 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200503 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200504 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000505 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200506#endif
Aorimn5f778012016-06-09 23:22:58 +0200507#if defined(MBEDTLS_CIPHER_MODE_XTS)
508 if( todo.aes_xts )
509 {
510 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100511 mbedtls_aes_xts_context ctx;
512
513 mbedtls_aes_xts_init( &ctx );
514 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200515 {
516 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
517
518 memset( buf, 0, sizeof( buf ) );
519 memset( tmp, 0, sizeof( tmp ) );
Jaeden Amero9366feb2018-05-29 18:55:17 +0100520 mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 );
Aorimn5f778012016-06-09 23:22:58 +0200521
522 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100523 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
524 tmp, buf, buf ) );
525
526 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200527 }
Aorimn5f778012016-06-09 23:22:58 +0200528 }
529#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200530#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200531 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000532 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100533 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200534 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200535
536 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200537 for( keysize = 128; keysize <= 256; keysize += 64 )
538 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200539 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000540
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200541 memset( buf, 0, sizeof( buf ) );
542 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200543 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000544
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200545 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200546 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200547 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100548
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200549 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200550 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000551 }
552#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200553#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200554 if( todo.aes_ccm )
555 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100556 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200557 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200558
559 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200560 for( keysize = 128; keysize <= 256; keysize += 64 )
561 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200562 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200563
564 memset( buf, 0, sizeof( buf ) );
565 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200566 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200567
568 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200569 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200570 12, NULL, 0, buf, buf, tmp, 16 ) );
571
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200572 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200573 }
574 }
575#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200576#if defined(MBEDTLS_CHACHAPOLY_C)
577 if( todo.chachapoly )
578 {
579 mbedtls_chachapoly_context chachapoly;
580
581 mbedtls_chachapoly_init( &chachapoly );
582 memset( buf, 0, sizeof( buf ) );
583 memset( tmp, 0, sizeof( tmp ) );
584
585 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
586
587 mbedtls_chachapoly_setkey( &chachapoly, tmp );
588
589 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200590 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
591 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200592
593 mbedtls_chachapoly_free( &chachapoly );
594 }
595#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100596#if defined(MBEDTLS_CMAC_C)
597 if( todo.aes_cmac )
598 {
599 unsigned char output[16];
600 const mbedtls_cipher_info_t *cipher_info;
601 mbedtls_cipher_type_t cipher_type;
602 int keysize;
603
604 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
605 keysize <= 256;
606 keysize += 64, cipher_type++ )
607 {
608 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
609
610 memset( buf, 0, sizeof( buf ) );
611 memset( tmp, 0, sizeof( tmp ) );
612
613 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
614
615 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100616 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
617 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100618 }
619
620 memset( buf, 0, sizeof( buf ) );
621 memset( tmp, 0, sizeof( tmp ) );
622 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100623 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
624 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100625 }
626#endif /* MBEDTLS_CMAC_C */
627#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000628
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100629#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
630 if( todo.aria )
631 {
632 int keysize;
633 mbedtls_aria_context aria;
634 mbedtls_aria_init( &aria );
635 for( keysize = 128; keysize <= 256; keysize += 64 )
636 {
637 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
638
639 memset( buf, 0, sizeof( buf ) );
640 memset( tmp, 0, sizeof( tmp ) );
641 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
642
643 TIME_AND_TSC( title,
644 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
645 BUFSIZE, tmp, buf, buf ) );
646 }
647 mbedtls_aria_free( &aria );
648 }
649#endif
650
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200651#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200652 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000653 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100654 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200655 mbedtls_camellia_context camellia;
656 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200657 for( keysize = 128; keysize <= 256; keysize += 64 )
658 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200659 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000660
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200661 memset( buf, 0, sizeof( buf ) );
662 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200663 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000664
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200665 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200666 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200667 BUFSIZE, tmp, buf, buf ) );
668 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200669 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000670 }
671#endif
672
Daniel King34b822c2016-05-15 17:28:08 -0300673#if defined(MBEDTLS_CHACHA20_C)
674 if ( todo.chacha20 )
675 {
676 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
677 }
678#endif
679
Daniel Kingadc32c02016-05-16 18:25:45 -0300680#if defined(MBEDTLS_POLY1305_C)
681 if ( todo.poly1305 )
682 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200683 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300684 }
685#endif
686
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200687#if defined(MBEDTLS_BLOWFISH_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200688 if( todo.blowfish )
Paul Bakker3d58fe82012-07-04 17:15:31 +0000689 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100690 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200691 mbedtls_blowfish_context blowfish;
692 mbedtls_blowfish_init( &blowfish );
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200693
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200694 for( keysize = 128; keysize <= 256; keysize += 64 )
695 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200696 mbedtls_snprintf( title, sizeof( title ), "BLOWFISH-CBC-%d", keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000697
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200698 memset( buf, 0, sizeof( buf ) );
699 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200700 mbedtls_blowfish_setkey( &blowfish, tmp, keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000701
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200702 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200703 mbedtls_blowfish_crypt_cbc( &blowfish, MBEDTLS_BLOWFISH_ENCRYPT, BUFSIZE,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200704 tmp, buf, buf ) );
705 }
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200706
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200707 mbedtls_blowfish_free( &blowfish );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000708 }
709#endif
710
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200711#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200712 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200713 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200714 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000715
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200716 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200717 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200718 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200719 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200720 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100721 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000722
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100723 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);
726 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200727 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200728 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200729 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200730 }
Paul Bakker02faf452011-11-29 11:23:58 +0000731#endif
732
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200733#if defined(MBEDTLS_HMAC_DRBG_C)
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100734 if( todo.hmac_drbg )
735 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200736 mbedtls_hmac_drbg_context hmac_drbg;
737 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100738
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200739 mbedtls_hmac_drbg_init( &hmac_drbg );
740
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200741#if defined(MBEDTLS_SHA1_C)
742 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
743 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100744
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200745 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200746 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100747 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200748 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100749
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200750 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200751 mbedtls_exit(1);
752 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
753 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100754 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200755 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100756#endif
757
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200758#if defined(MBEDTLS_SHA256_C)
759 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL )
760 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100761
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200762 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200763 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100764 TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200765 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100766
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200767 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200768 mbedtls_exit(1);
769 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
770 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100771 TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200772 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100773#endif
Ron Eldor278af452018-06-20 18:40:21 +0300774 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100775 }
776#endif
777
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200778#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200779 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +0000780 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100781 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200782 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +0200783 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200784 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200785 mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200786
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200787 mbedtls_rsa_init( &rsa, MBEDTLS_RSA_PKCS_V15, 0 );
788 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200789
790 TIME_PUBLIC( title, " public",
791 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200792 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200793
794 TIME_PUBLIC( title, "private",
795 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200796 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200797
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200798 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200799 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000800 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000801#endif
802
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200803#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200804 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100805 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +0200806 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -0800807 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100808 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800809 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100810 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800811 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100812 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800813 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100814 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
815
816 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
817 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
818 sizeof( dhm_P_3072 ) };
819
820 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
821 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
822 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200823
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200824 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200825 size_t olen;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +0200826 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200827 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200828 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200829
Hanno Beckerb9539212017-10-04 13:13:34 +0100830 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
831 dhm_P_size[i] ) != 0 ||
832 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
833 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200834 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200835 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200836 }
837
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200838 dhm.len = mbedtls_mpi_size( &dhm.P );
839 mbedtls_dhm_make_public( &dhm, (int) dhm.len, buf, dhm.len, myrand, NULL );
840 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
841 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200842
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200843 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200844 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200845 ret |= mbedtls_dhm_make_public( &dhm, (int) dhm.len, buf, dhm.len,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200846 myrand, NULL );
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +0100847 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200848
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200849 mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200850 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +0100851 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200852
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200853 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200854 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100855 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100856#endif
857
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200858#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200859 if( todo.ecdsa )
860 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200861 mbedtls_ecdsa_context ecdsa;
862 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200863 size_t sig_len;
864
865 memset( buf, 0x2A, sizeof( buf ) );
866
Gilles Peskine28f62f62020-07-24 02:06:46 +0200867 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200868 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200869 curve_info++ )
870 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +0000871 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +0000872 continue;
873
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200874 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200875
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200876 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
877 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100878 ecp_clear_precomputed( &ecdsa.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200879
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200880 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200881 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200882 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200883 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200884 tmp, &sig_len, myrand, NULL ) );
885
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200886 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100887 }
888
Gilles Peskine28f62f62020-07-24 02:06:46 +0200889 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200890 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100891 curve_info++ )
892 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +0000893 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +0000894 continue;
895
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200896 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100897
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200898 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200899 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100900 tmp, &sig_len, myrand, NULL ) != 0 )
901 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200902 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100903 }
904 ecp_clear_precomputed( &ecdsa.grp );
905
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200906 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100907 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200908 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200909 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200910 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200911
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200912 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200913 }
914 }
915#endif
916
Janos Follath52735ef2018-08-15 10:19:16 +0100917#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200918 if( todo.ecdh )
919 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200920 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200921 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000922 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
923#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
924 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000925#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000926#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
927 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
928#endif
929 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
930 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200931 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200932 size_t olen;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200933 const mbedtls_ecp_curve_info *selected_montgomery_curve_list =
934 montgomery_curve_list;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200935
Gilles Peskine28f62f62020-07-24 02:06:46 +0200936 if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve )
937 {
938 mbedtls_ecp_group grp;
939 mbedtls_ecp_group_init( &grp );
940 if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 )
941 mbedtls_exit( 1 );
942 if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
943 selected_montgomery_curve_list = single_curve;
944 else /* empty list */
945 selected_montgomery_curve_list = single_curve + 1;
946 mbedtls_ecp_group_free( &grp );
947 }
948
949 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200950 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200951 curve_info++ )
952 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +0100953 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
954 continue;
955
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200956 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200957
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000958 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
959 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
960 myrand, NULL ) );
961 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100962 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200963
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200964 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200965 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200966 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000967 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200968 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000969 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
970 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200971 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100972 }
973
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000974 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +0200975 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000976 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
977 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000978 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000979 mbedtls_ecdh_init( &ecdh );
980 mbedtls_mpi_init( &z );
981
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000982 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
983 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000984
985 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
986 curve_info->name );
987 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000988 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
989 myrand, NULL ) );
990 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
991 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000992
993 mbedtls_ecdh_free( &ecdh );
994 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000995 }
996
Gilles Peskine28f62f62020-07-24 02:06:46 +0200997 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200998 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100999 curve_info++ )
1000 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001001 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1002 continue;
1003
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001004 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001005
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001006 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1007 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1008 myrand, NULL ) );
1009 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
1010 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1011 myrand, NULL ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001012 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001013
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001014 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001015 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001016 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001017 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1018 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001019 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001020 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001021
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001022 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001023 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001024 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1025 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001026 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001027 mbedtls_ecdh_init( &ecdh );
1028 mbedtls_mpi_init( &z );
1029
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001030 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1031 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1032 myrand, NULL ) );
1033 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001034
1035 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1036 curve_info->name );
1037 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001038 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1039 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001040
1041 mbedtls_ecdh_free( &ecdh );
1042 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001043 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001044 }
1045#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001046
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001047#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001048 if( todo.ecdh )
1049 {
1050 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1051 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001052 const mbedtls_ecp_curve_info *curve_info;
1053 size_t olen;
1054
1055 for( curve_info = curve_list;
1056 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1057 curve_info++ )
1058 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001059 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1060 continue;
1061
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001062 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001063 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001064
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001065 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001066 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001067 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001068
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001069 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001070 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 +01001071
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001072 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1073 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 +01001074
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001075 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1076 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 +01001077
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001078 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 +00001079 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001080
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001081 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001082 );
1083
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001084 }
1085 }
1086#endif
1087
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001088 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001089
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001090#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1091 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001092#endif
1093
Paul Bakkercce9d772011-11-18 14:26:47 +00001094#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001095 mbedtls_printf( " Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00001096 fflush( stdout ); getchar();
1097#endif
1098
k-stachowiak776521a2019-05-23 09:46:47 +02001099 mbedtls_exit( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +00001100}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001101
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001102#endif /* MBEDTLS_TIMING_C */