blob: 157593066aa1923718db2519c81546285424a67e [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Benchmark demonstration program
3 *
Simon Butcher549dc3d2016-10-05 14:14:19 +01004 * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved
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 Bakkerb96f1542010-07-18 20:36:00 +000018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker5121ce52009-01-03 21:22:43 +000020 */
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");
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000041 return( 0 );
42}
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/havege.h"
71#include "mbedtls/ctr_drbg.h"
72#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010073
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000074#include "mbedtls/rsa.h"
75#include "mbedtls/dhm.h"
76#include "mbedtls/ecdsa.h"
77#include "mbedtls/ecdh.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010078
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000079#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000080
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020081#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000082#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +000083#endif
84
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000085/*
86 * For heap usage estimates, we need an estimate of the overhead per allocated
87 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
88 * so use that as our baseline.
89 */
90#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
91
92/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +020093 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000094 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +010095#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000096
Paul Bakker02faf452011-11-29 11:23:58 +000097#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +010098#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +010099#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +0000100
Rich Evans85b05ec2015-02-12 11:37:29 +0000101#define OPTIONS \
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200102 "md4, md5, ripemd160, sha1, sha256, sha512,\n" \
Daniel King34b822c2016-05-15 17:28:08 -0300103 "arc4, des3, des, camellia, blowfish, chacha20,\n" \
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200104 "aes_cbc, aes_gcm, aes_ccm, aes_ctx, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -0300105 "aes_cmac, des3_cmac, poly1305\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +0000106 "havege, ctr_drbg, hmac_drbg\n" \
107 "rsa, dhm, ecdsa, ecdh.\n"
108
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200109#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000110#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100111 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200112 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000113#else
114#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200115 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000116#endif
117
118#define TIME_AND_TSC( TITLE, CODE ) \
119do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200120 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200121 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000122 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200123 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000124 fflush( stdout ); \
125 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200126 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200127 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000128 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200129 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000130 } \
131 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200132 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200133 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000134 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200135 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000136 } \
137 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200138 if( ret != 0 ) \
139 { \
140 PRINT_ERROR; \
141 } \
142 else \
143 { \
144 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
145 ii * BUFSIZE / 1024, \
146 ( mbedtls_timing_hardclock() - tsc ) \
147 / ( jj * BUFSIZE ) ); \
148 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000149} while( 0 )
150
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200151#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100152
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200153/* How much space to reserve for the title when printing heap usage results.
154 * Updated manually as the output of the following command:
155 *
156 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
157 * awk '{print length+2}' | sort -rn | head -n1
158 *
159 * This computes the maximum length of a title +2 (because we appends "/s").
160 * (If the value is too small, the only consequence is poor alignement.) */
161#define TITLE_SPACE 16
162
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100163#define MEMORY_MEASURE_INIT \
164 size_t max_used, max_blocks, max_bytes; \
165 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200166 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200167 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100168
169#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200170 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200171 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
172 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100173 max_used -= prv_used; \
174 max_blocks -= prv_blocks; \
175 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200176 mbedtls_printf( "%6u heap bytes", (unsigned) max_bytes );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100177
178#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000179#define MEMORY_MEASURE_INIT
180#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100181#endif
182
Rich Evans85b05ec2015-02-12 11:37:29 +0000183#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
184do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200185 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000186 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100187 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000188 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200189 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000190 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200191 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000192 \
193 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200194 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000195 { \
196 CODE; \
197 } \
198 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000199 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
200 { \
201 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
202 ret = 0; \
203 } \
204 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000205 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100206 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000207 } \
208 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100209 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200210 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100211 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200212 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100213 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000214} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000215
Paul Bakkera3d195c2011-11-27 21:07:34 +0000216static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000217{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000218 size_t use_len;
219 int rnd;
220
Paul Bakker5121ce52009-01-03 21:22:43 +0000221 if( rng_state != NULL )
222 rng_state = NULL;
223
Paul Bakkera3d195c2011-11-27 21:07:34 +0000224 while( len > 0 )
225 {
226 use_len = len;
227 if( use_len > sizeof(int) )
228 use_len = sizeof(int);
229
230 rnd = rand();
231 memcpy( output, &rnd, use_len );
232 output += use_len;
233 len -= use_len;
234 }
235
236 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000237}
238
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000239#define CHECK_AND_CONTINUE( R ) \
240 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100241 int CHECK_AND_CONTINUE_ret = ( R ); \
242 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000243 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
244 continue; \
245 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100246 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000247 mbedtls_exit( 1 ); \
248 } \
249 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000250
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100251/*
252 * Clear some memory that was used to prepare the context
253 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200254#if defined(MBEDTLS_ECP_C)
255void ecp_clear_precomputed( mbedtls_ecp_group *grp )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100256{
257 if( grp->T != NULL )
258 {
259 size_t i;
260 for( i = 0; i < grp->T_size; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200261 mbedtls_ecp_point_free( &grp->T[i] );
262 mbedtls_free( grp->T );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100263 }
264 grp->T = NULL;
265 grp->T_size = 0;
266}
267#else
268#define ecp_clear_precomputed( g )
269#endif
270
Paul Bakker5121ce52009-01-03 21:22:43 +0000271unsigned char buf[BUFSIZE];
272
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200273typedef struct {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200274 char md4, md5, ripemd160, sha1, sha256, sha512,
Simon Butcher549dc3d2016-10-05 14:14:19 +0100275 arc4, des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200276 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200277 aes_cmac, des3_cmac,
Manuel Pégourié-Gonnard39b19042018-06-07 12:01:33 +0200278 aria, camellia, blowfish, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300279 poly1305,
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100280 havege, ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200281 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200282} todo_list;
283
Simon Butcher63cb97e2018-12-06 17:43:31 +0000284
Paul Bakkercce9d772011-11-18 14:26:47 +0000285int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000286{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100287 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200288 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200289 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200290 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200291#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200292 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000293#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000294
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000295 if( argc <= 1 )
296 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200297 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000298 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200299 else
300 {
301 memset( &todo, 0, sizeof( todo ) );
302
303 for( i = 1; i < argc; i++ )
304 {
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200305 if( strcmp( argv[i], "md4" ) == 0 )
306 todo.md4 = 1;
307 else if( strcmp( argv[i], "md5" ) == 0 )
308 todo.md5 = 1;
309 else if( strcmp( argv[i], "ripemd160" ) == 0 )
310 todo.ripemd160 = 1;
311 else if( strcmp( argv[i], "sha1" ) == 0 )
312 todo.sha1 = 1;
313 else if( strcmp( argv[i], "sha256" ) == 0 )
314 todo.sha256 = 1;
315 else if( strcmp( argv[i], "sha512" ) == 0 )
316 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200317 else if( strcmp( argv[i], "arc4" ) == 0 )
318 todo.arc4 = 1;
319 else if( strcmp( argv[i], "des3" ) == 0 )
320 todo.des3 = 1;
321 else if( strcmp( argv[i], "des" ) == 0 )
322 todo.des = 1;
323 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
324 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200325 else if( strcmp( argv[i], "aes_xts" ) == 0 )
326 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200327 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
328 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200329 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
330 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200331 else if( strcmp( argv[i], "chachapoly" ) == 0 )
332 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100333 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
334 todo.aes_cmac = 1;
335 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
336 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100337 else if( strcmp( argv[i], "aria" ) == 0 )
338 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200339 else if( strcmp( argv[i], "camellia" ) == 0 )
340 todo.camellia = 1;
341 else if( strcmp( argv[i], "blowfish" ) == 0 )
342 todo.blowfish = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300343 else if( strcmp( argv[i], "chacha20" ) == 0 )
344 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300345 else if( strcmp( argv[i], "poly1305" ) == 0 )
346 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200347 else if( strcmp( argv[i], "havege" ) == 0 )
348 todo.havege = 1;
349 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
350 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100351 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
352 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200353 else if( strcmp( argv[i], "rsa" ) == 0 )
354 todo.rsa = 1;
355 else if( strcmp( argv[i], "dhm" ) == 0 )
356 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200357 else if( strcmp( argv[i], "ecdsa" ) == 0 )
358 todo.ecdsa = 1;
359 else if( strcmp( argv[i], "ecdh" ) == 0 )
360 todo.ecdh = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200361 else
362 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200363 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
364 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200365 }
366 }
367 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000368
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200369 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000370
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200371#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200372 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000373#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200374 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200375 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200376
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200377#if defined(MBEDTLS_MD4_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200378 if( todo.md4 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100379 TIME_AND_TSC( "MD4", mbedtls_md4_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000380#endif
381
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200382#if defined(MBEDTLS_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200383 if( todo.md5 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100384 TIME_AND_TSC( "MD5", mbedtls_md5_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000385#endif
386
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200387#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200388 if( todo.ripemd160 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100389 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160_ret( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100390#endif
391
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200392#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200393 if( todo.sha1 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100394 TIME_AND_TSC( "SHA-1", mbedtls_sha1_ret( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000395#endif
396
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200397#if defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200398 if( todo.sha256 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100399 TIME_AND_TSC( "SHA-256", mbedtls_sha256_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000400#endif
401
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200402#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200403 if( todo.sha512 )
Gilles Peskine9e4f77c2018-01-22 11:48:08 +0100404 TIME_AND_TSC( "SHA-512", mbedtls_sha512_ret( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000405#endif
406
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200407#if defined(MBEDTLS_ARC4_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200408 if( todo.arc4 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200409 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200410 mbedtls_arc4_context arc4;
411 mbedtls_arc4_init( &arc4 );
412 mbedtls_arc4_setup( &arc4, tmp, 32 );
413 TIME_AND_TSC( "ARC4", mbedtls_arc4_crypt( &arc4, BUFSIZE, buf, buf ) );
414 mbedtls_arc4_free( &arc4 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200415 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000416#endif
417
Simon Butcher549dc3d2016-10-05 14:14:19 +0100418#if defined(MBEDTLS_DES_C)
419#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200420 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200421 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200422 mbedtls_des3_context des3;
423 mbedtls_des3_init( &des3 );
424 mbedtls_des3_set3key_enc( &des3, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200425 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200426 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
427 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200428 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000429
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200430 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200431 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200432 mbedtls_des_context des;
433 mbedtls_des_init( &des );
434 mbedtls_des_setkey_enc( &des, tmp );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200435 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200436 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
437 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200438 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100439
440#endif /* MBEDTLS_CIPHER_MODE_CBC */
441#if defined(MBEDTLS_CMAC_C)
442 if( todo.des3_cmac )
443 {
444 unsigned char output[8];
445 const mbedtls_cipher_info_t *cipher_info;
446
447 memset( buf, 0, sizeof( buf ) );
448 memset( tmp, 0, sizeof( tmp ) );
449
450 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
451
452 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100453 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
454 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100455 }
456#endif /* MBEDTLS_CMAC_C */
457#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000458
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200459#if defined(MBEDTLS_AES_C)
460#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200461 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000462 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100463 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200464 mbedtls_aes_context aes;
465 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200466 for( keysize = 128; keysize <= 256; keysize += 64 )
467 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200468 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000469
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200470 memset( buf, 0, sizeof( buf ) );
471 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200472 mbedtls_aes_setkey_enc( &aes, tmp, keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000473
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200474 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200475 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200476 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200477 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000478 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200479#endif
Aorimn5f778012016-06-09 23:22:58 +0200480#if defined(MBEDTLS_CIPHER_MODE_XTS)
481 if( todo.aes_xts )
482 {
483 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100484 mbedtls_aes_xts_context ctx;
485
486 mbedtls_aes_xts_init( &ctx );
487 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200488 {
489 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
490
491 memset( buf, 0, sizeof( buf ) );
492 memset( tmp, 0, sizeof( tmp ) );
Jaeden Amero9366feb2018-05-29 18:55:17 +0100493 mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 );
Aorimn5f778012016-06-09 23:22:58 +0200494
495 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100496 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
497 tmp, buf, buf ) );
498
499 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200500 }
Aorimn5f778012016-06-09 23:22:58 +0200501 }
502#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200503#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200504 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000505 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100506 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200507 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200508
509 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200510 for( keysize = 128; keysize <= 256; keysize += 64 )
511 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200512 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000513
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200514 memset( buf, 0, sizeof( buf ) );
515 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200516 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000517
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200518 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200519 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200520 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100521
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200522 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200523 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000524 }
525#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200526#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200527 if( todo.aes_ccm )
528 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100529 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200530 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200531
532 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200533 for( keysize = 128; keysize <= 256; keysize += 64 )
534 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200535 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200536
537 memset( buf, 0, sizeof( buf ) );
538 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200539 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200540
541 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200542 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200543 12, NULL, 0, buf, buf, tmp, 16 ) );
544
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200545 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200546 }
547 }
548#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200549#if defined(MBEDTLS_CHACHAPOLY_C)
550 if( todo.chachapoly )
551 {
552 mbedtls_chachapoly_context chachapoly;
553
554 mbedtls_chachapoly_init( &chachapoly );
555 memset( buf, 0, sizeof( buf ) );
556 memset( tmp, 0, sizeof( tmp ) );
557
558 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
559
560 mbedtls_chachapoly_setkey( &chachapoly, tmp );
561
562 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200563 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
564 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200565
566 mbedtls_chachapoly_free( &chachapoly );
567 }
568#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100569#if defined(MBEDTLS_CMAC_C)
570 if( todo.aes_cmac )
571 {
572 unsigned char output[16];
573 const mbedtls_cipher_info_t *cipher_info;
574 mbedtls_cipher_type_t cipher_type;
575 int keysize;
576
577 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
578 keysize <= 256;
579 keysize += 64, cipher_type++ )
580 {
581 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
582
583 memset( buf, 0, sizeof( buf ) );
584 memset( tmp, 0, sizeof( tmp ) );
585
586 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
587
588 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100589 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
590 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100591 }
592
593 memset( buf, 0, sizeof( buf ) );
594 memset( tmp, 0, sizeof( tmp ) );
595 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100596 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
597 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100598 }
599#endif /* MBEDTLS_CMAC_C */
600#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000601
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100602#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
603 if( todo.aria )
604 {
605 int keysize;
606 mbedtls_aria_context aria;
607 mbedtls_aria_init( &aria );
608 for( keysize = 128; keysize <= 256; keysize += 64 )
609 {
610 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
611
612 memset( buf, 0, sizeof( buf ) );
613 memset( tmp, 0, sizeof( tmp ) );
614 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
615
616 TIME_AND_TSC( title,
617 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
618 BUFSIZE, tmp, buf, buf ) );
619 }
620 mbedtls_aria_free( &aria );
621 }
622#endif
623
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200624#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200625 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000626 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100627 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200628 mbedtls_camellia_context camellia;
629 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200630 for( keysize = 128; keysize <= 256; keysize += 64 )
631 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200632 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000633
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200634 memset( buf, 0, sizeof( buf ) );
635 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200636 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000637
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200638 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200639 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200640 BUFSIZE, tmp, buf, buf ) );
641 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200642 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000643 }
644#endif
645
Daniel King34b822c2016-05-15 17:28:08 -0300646#if defined(MBEDTLS_CHACHA20_C)
647 if ( todo.chacha20 )
648 {
649 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
650 }
651#endif
652
Daniel Kingadc32c02016-05-16 18:25:45 -0300653#if defined(MBEDTLS_POLY1305_C)
654 if ( todo.poly1305 )
655 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200656 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300657 }
658#endif
659
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200660#if defined(MBEDTLS_BLOWFISH_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200661 if( todo.blowfish )
Paul Bakker3d58fe82012-07-04 17:15:31 +0000662 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100663 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200664 mbedtls_blowfish_context blowfish;
665 mbedtls_blowfish_init( &blowfish );
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200666
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200667 for( keysize = 128; keysize <= 256; keysize += 64 )
668 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200669 mbedtls_snprintf( title, sizeof( title ), "BLOWFISH-CBC-%d", keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000670
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200671 memset( buf, 0, sizeof( buf ) );
672 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200673 mbedtls_blowfish_setkey( &blowfish, tmp, keysize );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000674
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200675 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200676 mbedtls_blowfish_crypt_cbc( &blowfish, MBEDTLS_BLOWFISH_ENCRYPT, BUFSIZE,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200677 tmp, buf, buf ) );
678 }
Paul Bakker8cfd9d82014-06-18 11:16:11 +0200679
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200680 mbedtls_blowfish_free( &blowfish );
Paul Bakker3d58fe82012-07-04 17:15:31 +0000681 }
682#endif
683
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200684#if defined(MBEDTLS_HAVEGE_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200685 if( todo.havege )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200686 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200687 mbedtls_havege_state hs;
688 mbedtls_havege_init( &hs );
689 TIME_AND_TSC( "HAVEGE", mbedtls_havege_random( &hs, buf, BUFSIZE ) );
690 mbedtls_havege_free( &hs );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200691 }
Paul Bakker02faf452011-11-29 11:23:58 +0000692#endif
693
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200694#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200695 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200696 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200697 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000698
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200699 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200700 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200701 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200702 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200703 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100704 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000705
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100706 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200707 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200708 mbedtls_exit(1);
709 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200710 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200711 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200712 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200713 }
Paul Bakker02faf452011-11-29 11:23:58 +0000714#endif
715
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200716#if defined(MBEDTLS_HMAC_DRBG_C)
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100717 if( todo.hmac_drbg )
718 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200719 mbedtls_hmac_drbg_context hmac_drbg;
720 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100721
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200722 mbedtls_hmac_drbg_init( &hmac_drbg );
723
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200724#if defined(MBEDTLS_SHA1_C)
725 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
726 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100727
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200728 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200729 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100730 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200731 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100732
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200733 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200734 mbedtls_exit(1);
735 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
736 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100737 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200738 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100739#endif
740
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200741#if defined(MBEDTLS_SHA256_C)
742 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == 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-256 (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-256 (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
Ron Eldor278af452018-06-20 18:40:21 +0300757 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100758 }
759#endif
760
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200761#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200762 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +0000763 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100764 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200765 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +0200766 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200767 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200768 mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200769
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200770 mbedtls_rsa_init( &rsa, MBEDTLS_RSA_PKCS_V15, 0 );
771 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200772
773 TIME_PUBLIC( title, " public",
774 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200775 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200776
777 TIME_PUBLIC( title, "private",
778 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200779 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200780
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200781 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200782 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000783 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000784#endif
785
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200786#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200787 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100788 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +0200789 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -0800790 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100791 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800792 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100793 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800794 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100795 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -0800796 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +0100797 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
798
799 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
800 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
801 sizeof( dhm_P_3072 ) };
802
803 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
804 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
805 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200806
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200807 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200808 size_t olen;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +0200809 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200810 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200811 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200812
Hanno Beckerb9539212017-10-04 13:13:34 +0100813 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
814 dhm_P_size[i] ) != 0 ||
815 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
816 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200817 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200818 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +0200819 }
820
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200821 dhm.len = mbedtls_mpi_size( &dhm.P );
822 mbedtls_dhm_make_public( &dhm, (int) dhm.len, buf, dhm.len, myrand, NULL );
823 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
824 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200825
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200826 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200827 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200828 ret |= mbedtls_dhm_make_public( &dhm, (int) dhm.len, buf, dhm.len,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200829 myrand, NULL );
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +0100830 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200831
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200832 mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200833 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +0100834 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200835
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200836 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200837 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100838 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100839#endif
840
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200841#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200842 if( todo.ecdsa )
843 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200844 mbedtls_ecdsa_context ecdsa;
845 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200846 size_t sig_len;
847
848 memset( buf, 0x2A, sizeof( buf ) );
849
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200850 for( curve_info = mbedtls_ecp_curve_list();
851 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200852 curve_info++ )
853 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +0000854 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +0000855 continue;
856
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200857 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200858
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200859 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
860 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100861 ecp_clear_precomputed( &ecdsa.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200862
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200863 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200864 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200865 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200866 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200867 tmp, &sig_len, myrand, NULL ) );
868
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200869 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100870 }
871
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200872 for( curve_info = mbedtls_ecp_curve_list();
873 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100874 curve_info++ )
875 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +0000876 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +0000877 continue;
878
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200879 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100880
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200881 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200882 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100883 tmp, &sig_len, myrand, NULL ) != 0 )
884 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200885 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100886 }
887 ecp_clear_precomputed( &ecdsa.grp );
888
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200889 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100890 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200891 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +0200892 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200893 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200894
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200895 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200896 }
897 }
898#endif
899
Janos Follath52735ef2018-08-15 10:19:16 +0100900#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200901 if( todo.ecdh )
902 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200903 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200904 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000905 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
906#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
907 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000908#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000909#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
910 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
911#endif
912 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
913 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200914 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200915 size_t olen;
916
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200917 for( curve_info = mbedtls_ecp_curve_list();
918 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200919 curve_info++ )
920 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +0100921 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
922 continue;
923
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200924 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200925
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000926 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
927 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
928 myrand, NULL ) );
929 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100930 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200931
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200932 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200933 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200934 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000935 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200936 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000937 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
938 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200939 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100940 }
941
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000942 /* Montgomery curves need to be handled separately */
943 for ( curve_info = montgomery_curve_list;
944 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
945 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000946 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000947 mbedtls_ecdh_init( &ecdh );
948 mbedtls_mpi_init( &z );
949
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000950 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
951 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000952
953 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
954 curve_info->name );
955 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000956 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
957 myrand, NULL ) );
958 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
959 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000960
961 mbedtls_ecdh_free( &ecdh );
962 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000963 }
964
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200965 for( curve_info = mbedtls_ecp_curve_list();
966 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100967 curve_info++ )
968 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +0100969 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
970 continue;
971
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200972 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100973
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000974 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
975 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
976 myrand, NULL ) );
977 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
978 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
979 myrand, NULL ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100980 ecp_clear_precomputed( &ecdh.grp );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200981
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200982 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +0200983 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200984 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000985 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
986 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200987 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200988 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000989
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000990 /* Montgomery curves need to be handled separately */
991 for ( curve_info = montgomery_curve_list;
992 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
993 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +0000994 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +0000995 mbedtls_ecdh_init( &ecdh );
996 mbedtls_mpi_init( &z );
997
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000998 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
999 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1000 myrand, NULL ) );
1001 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001002
1003 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1004 curve_info->name );
1005 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001006 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1007 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001008
1009 mbedtls_ecdh_free( &ecdh );
1010 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001011 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001012 }
1013#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001014
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001015#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001016 if( todo.ecdh )
1017 {
1018 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1019 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
1020 const mbedtls_ecp_curve_info * curve_list = mbedtls_ecp_curve_list();
1021 const mbedtls_ecp_curve_info *curve_info;
1022 size_t olen;
1023
1024 for( curve_info = curve_list;
1025 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1026 curve_info++ )
1027 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001028 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1029 continue;
1030
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001031 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001032 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001033
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001034 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001035 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001036 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001037
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001038 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001039 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 +01001040
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001041 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1042 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 +01001043
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001044 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1045 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 +01001046
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001047 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 +00001048 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001049
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001050 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001051 );
1052
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001053 }
1054 }
1055#endif
1056
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001057 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001058
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001059#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1060 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001061#endif
1062
Paul Bakkercce9d772011-11-18 14:26:47 +00001063#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001064 mbedtls_printf( " Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +00001065 fflush( stdout ); getchar();
1066#endif
1067
1068 return( 0 );
1069}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001070
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001071#endif /* MBEDTLS_TIMING_C */