blob: a6d83e75bd9f162fdf5a2ba6c2d537561e7ce6d8 [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
Bence Szépkútic662b362021-05-27 11:25:03 +020022#include "mbedtls/build_info.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000023
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000024#include "mbedtls/platform.h"
Christoph M. Wintersteigercc91fe22019-02-20 18:06:00 +000025#if !defined(MBEDTLS_PLATFORM_C)
Rich Evans18b78c72015-02-11 14:06:19 +000026#include <stdio.h>
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010027#include <stdlib.h>
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#define mbedtls_exit exit
29#define mbedtls_printf printf
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020030#define mbedtls_free free
Rich Evansf90016a2015-01-19 14:26:37 +000031#endif
32
Andrzej Kurek6056e7a2022-03-02 12:01:10 -050033#if !defined(MBEDTLS_HAVE_TIME)
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000034int main( void )
35{
Andrzej Kurek6056e7a2022-03-02 12:01:10 -050036 mbedtls_printf("MBEDTLS_HAVE_TIME not defined.\n");
k-stachowiak776521a2019-05-23 09:46:47 +020037 mbedtls_exit( 0 );
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000038}
39#else
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010040
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +000041#include <string.h>
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +020042#include <stdlib.h>
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +010043
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000044#include "mbedtls/md5.h"
45#include "mbedtls/ripemd160.h"
46#include "mbedtls/sha1.h"
47#include "mbedtls/sha256.h"
48#include "mbedtls/sha512.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010049
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000050#include "mbedtls/des.h"
51#include "mbedtls/aes.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010052#include "mbedtls/aria.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000053#include "mbedtls/camellia.h"
Daniel King34b822c2016-05-15 17:28:08 -030054#include "mbedtls/chacha20.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000055#include "mbedtls/gcm.h"
56#include "mbedtls/ccm.h"
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +020057#include "mbedtls/chachapoly.h"
Simon Butcher549dc3d2016-10-05 14:14:19 +010058#include "mbedtls/cmac.h"
Daniel Kingadc32c02016-05-16 18:25:45 -030059#include "mbedtls/poly1305.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010060
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000061#include "mbedtls/ctr_drbg.h"
62#include "mbedtls/hmac_drbg.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010063
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000064#include "mbedtls/rsa.h"
65#include "mbedtls/dhm.h"
66#include "mbedtls/ecdsa.h"
67#include "mbedtls/ecdh.h"
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +010068
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000069#include "mbedtls/error.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000070
TRodziewicz90f304f2021-06-11 11:56:47 +020071#ifndef asm
72#define asm __asm
73#endif
74
TRodziewiczd8540832021-06-10 15:16:50 +020075#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
76
77#include <windows.h>
78#include <process.h>
79
80struct _hr_time
81{
82 LARGE_INTEGER start;
83};
84
85#else
86
87#include <unistd.h>
88#include <sys/types.h>
89#include <sys/time.h>
90#include <signal.h>
91#include <time.h>
92
93struct _hr_time
94{
95 struct timeval start;
96};
97
98#endif /* _WIN32 && !EFIX64 && !EFI32 */
99
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200100#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +0000101#include "mbedtls/memory_buffer_alloc.h"
Rich Evans18b78c72015-02-11 14:06:19 +0000102#endif
103
TRodziewiczd8540832021-06-10 15:16:50 +0200104static void mbedtls_set_alarm( int seconds );
105
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000106/*
107 * For heap usage estimates, we need an estimate of the overhead per allocated
108 * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block,
109 * so use that as our baseline.
110 */
111#define MEM_BLOCK_OVERHEAD ( 2 * sizeof( size_t ) )
112
113/*
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200114 * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined.
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000115 */
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +0100116#define HEAP_SIZE (1u << 16) /* 64k */
Manuel Pégourié-Gonnard714929b2015-02-16 17:32:47 +0000117
Paul Bakker02faf452011-11-29 11:23:58 +0000118#define BUFSIZE 1024
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100119#define HEADER_FORMAT " %-24s : "
Gergely Budaia5d336b2014-01-27 23:27:06 +0100120#define TITLE_LEN 25
Manuel Pégourié-Gonnard6c5abfa2015-02-13 14:12:07 +0000121
Rich Evans85b05ec2015-02-12 11:37:29 +0000122#define OPTIONS \
TRodziewicz10e8cf52021-05-31 17:58:57 +0200123 "md5, ripemd160, sha1, sha256, sha512,\n" \
124 "des3, des, camellia, chacha20,\n" \
Zhai Zhaoxuane22da992020-05-09 23:50:32 +0800125 "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n" \
Daniel Kingadc32c02016-05-16 18:25:45 -0300126 "aes_cmac, des3_cmac, poly1305\n" \
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100127 "ctr_drbg, hmac_drbg\n" \
Rich Evans85b05ec2015-02-12 11:37:29 +0000128 "rsa, dhm, ecdsa, ecdh.\n"
129
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200130#if defined(MBEDTLS_ERROR_C)
Rich Evans85b05ec2015-02-12 11:37:29 +0000131#define PRINT_ERROR \
Simon Butcherb981b162016-10-06 10:27:22 +0100132 mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200133 mbedtls_printf( "FAILED: %s\n", tmp );
Rich Evans85b05ec2015-02-12 11:37:29 +0000134#else
135#define PRINT_ERROR \
Kenneth Soerensen518d4352020-04-01 17:22:45 +0200136 mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret );
Rich Evans85b05ec2015-02-12 11:37:29 +0000137#endif
138
139#define TIME_AND_TSC( TITLE, CODE ) \
140do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200141 unsigned long ii, jj, tsc; \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200142 int ret = 0; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000143 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200144 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000145 fflush( stdout ); \
146 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200147 mbedtls_set_alarm( 1 ); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200148 for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000149 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200150 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000151 } \
152 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200153 tsc = mbedtls_timing_hardclock(); \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200154 for( jj = 0; ret == 0 && jj < 1024; jj++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000155 { \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200156 ret = CODE; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000157 } \
158 \
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200159 if( ret != 0 ) \
160 { \
161 PRINT_ERROR; \
162 } \
163 else \
164 { \
165 mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \
166 ii * BUFSIZE / 1024, \
167 ( mbedtls_timing_hardclock() - tsc ) \
168 / ( jj * BUFSIZE ) ); \
169 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000170} while( 0 )
171
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200172#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100173
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200174/* How much space to reserve for the title when printing heap usage results.
175 * Updated manually as the output of the following command:
176 *
177 * sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c |
Manuel Pégourié-Gonnardbf5b46c2022-01-05 10:34:17 +0100178 * awk '{print length+3}' | sort -rn | head -n1
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200179 *
Manuel Pégourié-Gonnardbf5b46c2022-01-05 10:34:17 +0100180 * This computes the maximum length of a title +3, because we appends "/s" and
181 * want at least one space. (If the value is too small, the only consequence
Shaun Case8b0ecbc2021-12-20 21:14:10 -0800182 * is poor alignment.) */
Manuel Pégourié-Gonnardbf5b46c2022-01-05 10:34:17 +0100183#define TITLE_SPACE 17
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200184
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100185#define MEMORY_MEASURE_INIT \
186 size_t max_used, max_blocks, max_bytes; \
187 size_t prv_used, prv_blocks; \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100188 size_t alloc_cnt, free_cnt, prv_alloc, prv_free; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200189 mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks ); \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200190 mbedtls_memory_buffer_alloc_max_reset( );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100191
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100192#define MEMORY_MEASURE_RESET \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100193 mbedtls_memory_buffer_alloc_count_get( &prv_alloc, &prv_free );
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100194
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100195#define MEMORY_MEASURE_PRINT( title_len ) \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200196 mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks ); \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100197 mbedtls_memory_buffer_alloc_count_get( &alloc_cnt, &free_cnt ); \
Manuel Pégourié-Gonnard5edd3882020-04-09 10:40:03 +0200198 ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1; \
199 while( ii-- ) mbedtls_printf( " " ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100200 max_used -= prv_used; \
201 max_blocks -= prv_blocks; \
202 max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks; \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100203 mbedtls_printf( "%6u heap bytes, %6u allocs", \
Manuel Pégourié-Gonnard6ced0022022-01-05 10:05:54 +0100204 (unsigned) max_bytes, \
205 (unsigned)( alloc_cnt - prv_alloc ) );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100206
207#else
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000208#define MEMORY_MEASURE_INIT
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100209#define MEMORY_MEASURE_RESET
Manuel Pégourié-Gonnarde579dab2015-01-29 16:28:44 +0000210#define MEMORY_MEASURE_PRINT( title_len )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100211#endif
212
Rich Evans85b05ec2015-02-12 11:37:29 +0000213#define TIME_PUBLIC( TITLE, TYPE, CODE ) \
214do { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200215 unsigned long ii; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000216 int ret; \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100217 MEMORY_MEASURE_INIT; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000218 \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200219 mbedtls_printf( HEADER_FORMAT, TITLE ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000220 fflush( stdout ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200221 mbedtls_set_alarm( 3 ); \
Rich Evans85b05ec2015-02-12 11:37:29 +0000222 \
223 ret = 0; \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200224 for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000225 { \
Manuel Pégourié-Gonnardc4055442022-01-04 10:24:01 +0100226 MEMORY_MEASURE_RESET; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000227 CODE; \
228 } \
229 \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000230 if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) \
231 { \
232 mbedtls_printf( "Feature Not Supported. Skipping.\n" ); \
233 ret = 0; \
234 } \
235 else if( ret != 0 ) \
Rich Evans85b05ec2015-02-12 11:37:29 +0000236 { \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100237 PRINT_ERROR; \
Rich Evans85b05ec2015-02-12 11:37:29 +0000238 } \
239 else \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100240 { \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200241 mbedtls_printf( "%6lu " TYPE "/s", ii / 3 ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100242 MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 ); \
Manuel Pégourié-Gonnardea356662015-08-27 12:02:40 +0200243 mbedtls_printf( "\n" ); \
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100244 } \
Rich Evans85b05ec2015-02-12 11:37:29 +0000245} while( 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000246
TRodziewiczd8540832021-06-10 15:16:50 +0200247#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
248 ( defined(_MSC_VER) && defined(_M_IX86) ) || defined(__WATCOMC__)
249
250#define HAVE_HARDCLOCK
251
TRodziewicz9a9609e2021-06-11 13:35:10 +0200252static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200253{
254 unsigned long tsc;
255 __asm rdtsc
256 __asm mov [tsc], eax
257 return( tsc );
258}
259#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
260 ( _MSC_VER && _M_IX86 ) || __WATCOMC__ */
261
262/* some versions of mingw-64 have 32-bit longs even on x84_64 */
263#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
264 defined(__GNUC__) && ( defined(__i386__) || ( \
265 ( defined(__amd64__) || defined( __x86_64__) ) && __SIZEOF_LONG__ == 4 ) )
266
267#define HAVE_HARDCLOCK
268
TRodziewicz9a9609e2021-06-11 13:35:10 +0200269static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200270{
271 unsigned long lo, hi;
272 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
273 return( lo );
274}
275#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
276 __GNUC__ && __i386__ */
277
278#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
279 defined(__GNUC__) && ( defined(__amd64__) || defined(__x86_64__) )
280
281#define HAVE_HARDCLOCK
282
TRodziewicz9a9609e2021-06-11 13:35:10 +0200283static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200284{
285 unsigned long lo, hi;
286 asm volatile( "rdtsc" : "=a" (lo), "=d" (hi) );
287 return( lo | ( hi << 32 ) );
288}
289#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
290 __GNUC__ && ( __amd64__ || __x86_64__ ) */
291
292#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
293 defined(__GNUC__) && ( defined(__powerpc__) || defined(__ppc__) )
294
295#define HAVE_HARDCLOCK
296
TRodziewicz9a9609e2021-06-11 13:35:10 +0200297static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200298{
299 unsigned long tbl, tbu0, tbu1;
300
301 do
302 {
303 asm volatile( "mftbu %0" : "=r" (tbu0) );
304 asm volatile( "mftb %0" : "=r" (tbl ) );
305 asm volatile( "mftbu %0" : "=r" (tbu1) );
306 }
307 while( tbu0 != tbu1 );
308
309 return( tbl );
310}
311#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
312 __GNUC__ && ( __powerpc__ || __ppc__ ) */
313
314#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
315 defined(__GNUC__) && defined(__sparc64__)
316
317#if defined(__OpenBSD__)
318#warning OpenBSD does not allow access to tick register using software version instead
319#else
320#define HAVE_HARDCLOCK
321
TRodziewicz9a9609e2021-06-11 13:35:10 +0200322static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200323{
324 unsigned long tick;
325 asm volatile( "rdpr %%tick, %0;" : "=&r" (tick) );
326 return( tick );
327}
328#endif /* __OpenBSD__ */
329#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
330 __GNUC__ && __sparc64__ */
331
332#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
333 defined(__GNUC__) && defined(__sparc__) && !defined(__sparc64__)
334
335#define HAVE_HARDCLOCK
336
TRodziewicz9a9609e2021-06-11 13:35:10 +0200337static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200338{
339 unsigned long tick;
340 asm volatile( ".byte 0x83, 0x41, 0x00, 0x00" );
341 asm volatile( "mov %%g1, %0" : "=r" (tick) );
342 return( tick );
343}
344#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
345 __GNUC__ && __sparc__ && !__sparc64__ */
346
347#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
348 defined(__GNUC__) && defined(__alpha__)
349
350#define HAVE_HARDCLOCK
351
TRodziewicz9a9609e2021-06-11 13:35:10 +0200352static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200353{
354 unsigned long cc;
355 asm volatile( "rpcc %0" : "=r" (cc) );
356 return( cc & 0xFFFFFFFF );
357}
358#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
359 __GNUC__ && __alpha__ */
360
361#if !defined(HAVE_HARDCLOCK) && defined(MBEDTLS_HAVE_ASM) && \
362 defined(__GNUC__) && defined(__ia64__)
363
364#define HAVE_HARDCLOCK
365
TRodziewicz9a9609e2021-06-11 13:35:10 +0200366static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200367{
368 unsigned long itc;
369 asm volatile( "mov %0 = ar.itc" : "=r" (itc) );
370 return( itc );
371}
372#endif /* !HAVE_HARDCLOCK && MBEDTLS_HAVE_ASM &&
373 __GNUC__ && __ia64__ */
374
375#if !defined(HAVE_HARDCLOCK) && defined(_MSC_VER) && \
376 !defined(EFIX64) && !defined(EFI32)
377
378#define HAVE_HARDCLOCK
379
TRodziewicz9a9609e2021-06-11 13:35:10 +0200380static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200381{
382 LARGE_INTEGER offset;
383
384 QueryPerformanceCounter( &offset );
385
386 return( (unsigned long)( offset.QuadPart ) );
387}
388#endif /* !HAVE_HARDCLOCK && _MSC_VER && !EFIX64 && !EFI32 */
389
390#if !defined(HAVE_HARDCLOCK)
391
392#define HAVE_HARDCLOCK
393
394static int hardclock_init = 0;
395static struct timeval tv_init;
396
TRodziewicz9a9609e2021-06-11 13:35:10 +0200397static unsigned long mbedtls_timing_hardclock( void )
TRodziewiczd8540832021-06-10 15:16:50 +0200398{
399 struct timeval tv_cur;
400
401 if( hardclock_init == 0 )
402 {
403 gettimeofday( &tv_init, NULL );
404 hardclock_init = 1;
405 }
406
407 gettimeofday( &tv_cur, NULL );
408 return( ( tv_cur.tv_sec - tv_init.tv_sec ) * 1000000
409 + ( tv_cur.tv_usec - tv_init.tv_usec ) );
410}
411#endif /* !HAVE_HARDCLOCK */
412
413volatile int mbedtls_timing_alarmed = 0;
414
415#if defined(_WIN32) && !defined(EFIX64) && !defined(EFI32)
416
417/* It's OK to use a global because alarm() is supposed to be global anyway */
418static DWORD alarmMs;
419
420static void TimerProc( void *TimerContext )
421{
422 (void) TimerContext;
423 Sleep( alarmMs );
424 mbedtls_timing_alarmed = 1;
425 /* _endthread will be called implicitly on return
426 * That ensures execution of thread funcition's epilogue */
427}
428
429static void mbedtls_set_alarm( int seconds )
430{
431 if( seconds == 0 )
432 {
433 /* No need to create a thread for this simple case.
434 * Also, this shorcut is more reliable at least on MinGW32 */
435 mbedtls_timing_alarmed = 1;
436 return;
437 }
438
439 mbedtls_timing_alarmed = 0;
440 alarmMs = seconds * 1000;
441 (void) _beginthread( TimerProc, 0, NULL );
442}
443
444#else /* _WIN32 && !EFIX64 && !EFI32 */
445
446static void sighandler( int signum )
447{
448 mbedtls_timing_alarmed = 1;
449 signal( signum, sighandler );
450}
451
452static void mbedtls_set_alarm( int seconds )
453{
454 mbedtls_timing_alarmed = 0;
455 signal( SIGALRM, sighandler );
456 alarm( seconds );
457 if( seconds == 0 )
458 {
459 /* alarm(0) cancelled any previous pending alarm, but the
460 handler won't fire, so raise the flag straight away. */
461 mbedtls_timing_alarmed = 1;
462 }
463}
464
465#endif /* _WIN32 && !EFIX64 && !EFI32 */
466
Paul Bakkera3d195c2011-11-27 21:07:34 +0000467static int myrand( void *rng_state, unsigned char *output, size_t len )
Paul Bakker5121ce52009-01-03 21:22:43 +0000468{
Paul Bakkera3d195c2011-11-27 21:07:34 +0000469 size_t use_len;
470 int rnd;
471
Paul Bakker5121ce52009-01-03 21:22:43 +0000472 if( rng_state != NULL )
473 rng_state = NULL;
474
Paul Bakkera3d195c2011-11-27 21:07:34 +0000475 while( len > 0 )
476 {
477 use_len = len;
478 if( use_len > sizeof(int) )
479 use_len = sizeof(int);
480
481 rnd = rand();
482 memcpy( output, &rnd, use_len );
483 output += use_len;
484 len -= use_len;
485 }
486
487 return( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000488}
489
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000490#define CHECK_AND_CONTINUE( R ) \
491 { \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100492 int CHECK_AND_CONTINUE_ret = ( R ); \
493 if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000494 mbedtls_printf( "Feature not supported. Skipping.\n" ); \
495 continue; \
496 } \
Gilles Peskineb14c4a52019-02-11 18:23:42 +0100497 else if( CHECK_AND_CONTINUE_ret != 0 ) { \
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +0000498 mbedtls_exit( 1 ); \
499 } \
500 }
Christoph M. Wintersteiger3dca1a42018-12-14 11:54:59 +0000501
Gilles Peskine28f62f62020-07-24 02:06:46 +0200502#if defined(MBEDTLS_ECP_C)
503static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve )
504{
505 const mbedtls_ecp_curve_info *found =
506 mbedtls_ecp_curve_info_from_name( string );
507 if( found != NULL )
508 {
509 *curve = *found;
510 return( 1 );
511 }
512 else
513 return( 0 );
514}
515#endif
516
Paul Bakker5121ce52009-01-03 21:22:43 +0000517unsigned char buf[BUFSIZE];
518
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200519typedef struct {
TRodziewicz10e8cf52021-05-31 17:58:57 +0200520 char md5, ripemd160, sha1, sha256, sha512,
521 des3, des,
Manuel Pégourié-Gonnard0dadba22018-06-19 11:11:15 +0200522 aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200523 aes_cmac, des3_cmac,
TRodziewicz10e8cf52021-05-31 17:58:57 +0200524 aria, camellia, chacha20,
Daniel Kingadc32c02016-05-16 18:25:45 -0300525 poly1305,
Mateusz Starzyk0fdcc8e2021-01-29 16:46:31 +0100526 ctr_drbg, hmac_drbg,
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200527 rsa, dhm, ecdsa, ecdh;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200528} todo_list;
529
Simon Butcher63cb97e2018-12-06 17:43:31 +0000530
Paul Bakkercce9d772011-11-18 14:26:47 +0000531int main( int argc, char *argv[] )
Paul Bakker5690efc2011-05-26 13:16:06 +0000532{
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100533 int i;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200534 unsigned char tmp[200];
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200535 char title[TITLE_LEN];
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200536 todo_list todo;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200537#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200538 unsigned char alloc_buf[HEAP_SIZE] = { 0 };
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000539#endif
Gilles Peskine28f62f62020-07-24 02:06:46 +0200540#if defined(MBEDTLS_ECP_C)
541 mbedtls_ecp_curve_info single_curve[2] = {
542 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
543 { MBEDTLS_ECP_DP_NONE, 0, 0, NULL },
544 };
545 const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( );
546#endif
547
548#if defined(MBEDTLS_ECP_C)
549 (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */
550#endif
Paul Bakkercce9d772011-11-18 14:26:47 +0000551
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000552 if( argc <= 1 )
553 {
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200554 memset( &todo, 1, sizeof( todo ) );
Manuel Pégourié-Gonnardc439e7b2015-03-03 13:12:00 +0000555 }
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200556 else
557 {
558 memset( &todo, 0, sizeof( todo ) );
559
560 for( i = 1; i < argc; i++ )
561 {
TRodziewicz10e8cf52021-05-31 17:58:57 +0200562 if( strcmp( argv[i], "md5" ) == 0 )
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200563 todo.md5 = 1;
564 else if( strcmp( argv[i], "ripemd160" ) == 0 )
565 todo.ripemd160 = 1;
566 else if( strcmp( argv[i], "sha1" ) == 0 )
567 todo.sha1 = 1;
568 else if( strcmp( argv[i], "sha256" ) == 0 )
569 todo.sha256 = 1;
570 else if( strcmp( argv[i], "sha512" ) == 0 )
571 todo.sha512 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200572 else if( strcmp( argv[i], "des3" ) == 0 )
573 todo.des3 = 1;
574 else if( strcmp( argv[i], "des" ) == 0 )
575 todo.des = 1;
576 else if( strcmp( argv[i], "aes_cbc" ) == 0 )
577 todo.aes_cbc = 1;
Aorimn5f778012016-06-09 23:22:58 +0200578 else if( strcmp( argv[i], "aes_xts" ) == 0 )
579 todo.aes_xts = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200580 else if( strcmp( argv[i], "aes_gcm" ) == 0 )
581 todo.aes_gcm = 1;
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200582 else if( strcmp( argv[i], "aes_ccm" ) == 0 )
583 todo.aes_ccm = 1;
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200584 else if( strcmp( argv[i], "chachapoly" ) == 0 )
585 todo.chachapoly = 1;
Simon Butcher549dc3d2016-10-05 14:14:19 +0100586 else if( strcmp( argv[i], "aes_cmac" ) == 0 )
587 todo.aes_cmac = 1;
588 else if( strcmp( argv[i], "des3_cmac" ) == 0 )
589 todo.des3_cmac = 1;
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100590 else if( strcmp( argv[i], "aria" ) == 0 )
591 todo.aria = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200592 else if( strcmp( argv[i], "camellia" ) == 0 )
593 todo.camellia = 1;
Daniel King34b822c2016-05-15 17:28:08 -0300594 else if( strcmp( argv[i], "chacha20" ) == 0 )
595 todo.chacha20 = 1;
Daniel Kingadc32c02016-05-16 18:25:45 -0300596 else if( strcmp( argv[i], "poly1305" ) == 0 )
597 todo.poly1305 = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200598 else if( strcmp( argv[i], "ctr_drbg" ) == 0 )
599 todo.ctr_drbg = 1;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100600 else if( strcmp( argv[i], "hmac_drbg" ) == 0 )
601 todo.hmac_drbg = 1;
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200602 else if( strcmp( argv[i], "rsa" ) == 0 )
603 todo.rsa = 1;
604 else if( strcmp( argv[i], "dhm" ) == 0 )
605 todo.dhm = 1;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +0200606 else if( strcmp( argv[i], "ecdsa" ) == 0 )
607 todo.ecdsa = 1;
608 else if( strcmp( argv[i], "ecdh" ) == 0 )
609 todo.ecdh = 1;
Gilles Peskine28f62f62020-07-24 02:06:46 +0200610#if defined(MBEDTLS_ECP_C)
611 else if( set_ecp_curve( argv[i], single_curve ) )
612 curve_list = single_curve;
613#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200614 else
615 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200616 mbedtls_printf( "Unrecognized option: %s\n", argv[i] );
617 mbedtls_printf( "Available options: " OPTIONS );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200618 }
619 }
620 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000621
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200622 mbedtls_printf( "\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000623
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200624#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnardb2a18a22015-05-27 16:29:56 +0200625 mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) );
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +0000626#endif
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200627 memset( buf, 0xAA, sizeof( buf ) );
Paul Bakkerdf71dd12014-04-17 16:03:48 +0200628 memset( tmp, 0xBB, sizeof( tmp ) );
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200629
Manuel Pégourié-Gonnarda93aa582022-01-04 09:47:54 +0100630 /* Avoid "unused static function" warning in configurations without
631 * symmetric crypto. */
Manuel Pégourié-Gonnardcd4ad0c2022-01-05 09:54:37 +0100632 (void) mbedtls_timing_hardclock;
Manuel Pégourié-Gonnarda93aa582022-01-04 09:47:54 +0100633
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200634#if defined(MBEDTLS_MD5_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200635 if( todo.md5 )
TRodziewicz26371e42021-06-08 16:45:41 +0200636 TIME_AND_TSC( "MD5", mbedtls_md5( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000637#endif
638
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200639#if defined(MBEDTLS_RIPEMD160_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200640 if( todo.ripemd160 )
TRodziewicz26371e42021-06-08 16:45:41 +0200641 TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160( buf, BUFSIZE, tmp ) );
Manuel Pégourié-Gonnard01b0b382014-01-17 14:29:46 +0100642#endif
643
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200644#if defined(MBEDTLS_SHA1_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200645 if( todo.sha1 )
TRodziewicz26371e42021-06-08 16:45:41 +0200646 TIME_AND_TSC( "SHA-1", mbedtls_sha1( buf, BUFSIZE, tmp ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000647#endif
648
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200649#if defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200650 if( todo.sha256 )
TRodziewicz26371e42021-06-08 16:45:41 +0200651 TIME_AND_TSC( "SHA-256", mbedtls_sha256( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000652#endif
653
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200654#if defined(MBEDTLS_SHA512_C)
Manuel Pégourié-Gonnarde85fef12015-05-11 19:21:39 +0200655 if( todo.sha512 )
TRodziewicz26371e42021-06-08 16:45:41 +0200656 TIME_AND_TSC( "SHA-512", mbedtls_sha512( buf, BUFSIZE, tmp, 0 ) );
Paul Bakker3a3c3c22009-02-09 22:33:30 +0000657#endif
658
Simon Butcher549dc3d2016-10-05 14:14:19 +0100659#if defined(MBEDTLS_DES_C)
660#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200661 if( todo.des3 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200662 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200663 mbedtls_des3_context des3;
664 mbedtls_des3_init( &des3 );
Gilles Peskine7820a572021-07-07 21:08:28 +0200665 if( mbedtls_des3_set3key_enc( &des3, tmp ) != 0 )
666 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200667 TIME_AND_TSC( "3DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200668 mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
669 mbedtls_des3_free( &des3 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200670 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000671
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200672 if( todo.des )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200673 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200674 mbedtls_des_context des;
675 mbedtls_des_init( &des );
Gilles Peskine7820a572021-07-07 21:08:28 +0200676 if( mbedtls_des_setkey_enc( &des, tmp ) != 0 )
677 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200678 TIME_AND_TSC( "DES",
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200679 mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
680 mbedtls_des_free( &des );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200681 }
Simon Butcher549dc3d2016-10-05 14:14:19 +0100682
683#endif /* MBEDTLS_CIPHER_MODE_CBC */
684#if defined(MBEDTLS_CMAC_C)
685 if( todo.des3_cmac )
686 {
687 unsigned char output[8];
688 const mbedtls_cipher_info_t *cipher_info;
689
690 memset( buf, 0, sizeof( buf ) );
691 memset( tmp, 0, sizeof( tmp ) );
692
693 cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB );
694
695 TIME_AND_TSC( "3DES-CMAC",
Simon Butcherb981b162016-10-06 10:27:22 +0100696 mbedtls_cipher_cmac( cipher_info, tmp, 192, buf,
697 BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100698 }
699#endif /* MBEDTLS_CMAC_C */
700#endif /* MBEDTLS_DES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000701
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200702#if defined(MBEDTLS_AES_C)
703#if defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200704 if( todo.aes_cbc )
Paul Bakker5121ce52009-01-03 21:22:43 +0000705 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100706 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200707 mbedtls_aes_context aes;
708 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200709 for( keysize = 128; keysize <= 256; keysize += 64 )
710 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200711 mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize );
Paul Bakker5121ce52009-01-03 21:22:43 +0000712
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200713 memset( buf, 0, sizeof( buf ) );
714 memset( tmp, 0, sizeof( tmp ) );
Gilles Peskine7820a572021-07-07 21:08:28 +0200715 CHECK_AND_CONTINUE( mbedtls_aes_setkey_enc( &aes, tmp, keysize ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000716
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200717 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200718 mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200719 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200720 mbedtls_aes_free( &aes );
Paul Bakker5121ce52009-01-03 21:22:43 +0000721 }
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200722#endif
Aorimn5f778012016-06-09 23:22:58 +0200723#if defined(MBEDTLS_CIPHER_MODE_XTS)
724 if( todo.aes_xts )
725 {
726 int keysize;
Jaeden Amero9366feb2018-05-29 18:55:17 +0100727 mbedtls_aes_xts_context ctx;
728
729 mbedtls_aes_xts_init( &ctx );
730 for( keysize = 128; keysize <= 256; keysize += 128 )
Aorimn5f778012016-06-09 23:22:58 +0200731 {
732 mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize );
733
734 memset( buf, 0, sizeof( buf ) );
735 memset( tmp, 0, sizeof( tmp ) );
Gilles Peskine7820a572021-07-07 21:08:28 +0200736 CHECK_AND_CONTINUE( mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 ) );
Aorimn5f778012016-06-09 23:22:58 +0200737
738 TIME_AND_TSC( title,
Jaeden Amero9366feb2018-05-29 18:55:17 +0100739 mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE,
740 tmp, buf, buf ) );
741
742 mbedtls_aes_xts_free( &ctx );
Aorimn5f778012016-06-09 23:22:58 +0200743 }
Aorimn5f778012016-06-09 23:22:58 +0200744 }
745#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200746#if defined(MBEDTLS_GCM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200747 if( todo.aes_gcm )
Paul Bakker89e80c92012-03-20 13:50:09 +0000748 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100749 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200750 mbedtls_gcm_context gcm;
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200751
752 mbedtls_gcm_init( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200753 for( keysize = 128; keysize <= 256; keysize += 64 )
754 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200755 mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000756
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200757 memset( buf, 0, sizeof( buf ) );
758 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnardc34e8dd2015-04-28 21:42:17 +0200759 mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Paul Bakker89e80c92012-03-20 13:50:09 +0000760
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200761 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200762 mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200763 12, NULL, 0, buf, buf, 16, tmp ) );
Paul Bakkerf70fe812013-12-16 16:43:10 +0100764
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200765 mbedtls_gcm_free( &gcm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200766 }
Paul Bakker89e80c92012-03-20 13:50:09 +0000767 }
768#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200769#if defined(MBEDTLS_CCM_C)
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200770 if( todo.aes_ccm )
771 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100772 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200773 mbedtls_ccm_context ccm;
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200774
775 mbedtls_ccm_init( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200776 for( keysize = 128; keysize <= 256; keysize += 64 )
777 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200778 mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200779
780 memset( buf, 0, sizeof( buf ) );
781 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard6963ff02015-04-28 18:02:54 +0200782 mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200783
784 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200785 mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp,
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200786 12, NULL, 0, buf, buf, tmp, 16 ) );
787
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200788 mbedtls_ccm_free( &ccm );
Manuel Pégourié-Gonnard58d78a82014-05-07 12:03:02 +0200789 }
790 }
791#endif
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200792#if defined(MBEDTLS_CHACHAPOLY_C)
793 if( todo.chachapoly )
794 {
795 mbedtls_chachapoly_context chachapoly;
796
797 mbedtls_chachapoly_init( &chachapoly );
798 memset( buf, 0, sizeof( buf ) );
799 memset( tmp, 0, sizeof( tmp ) );
800
801 mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" );
802
803 mbedtls_chachapoly_setkey( &chachapoly, tmp );
804
805 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard3dc62a02018-06-04 12:18:19 +0200806 mbedtls_chachapoly_encrypt_and_tag( &chachapoly,
807 BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) );
Manuel Pégourié-Gonnardd6aea182018-05-09 10:21:28 +0200808
809 mbedtls_chachapoly_free( &chachapoly );
810 }
811#endif
Simon Butcher549dc3d2016-10-05 14:14:19 +0100812#if defined(MBEDTLS_CMAC_C)
813 if( todo.aes_cmac )
814 {
815 unsigned char output[16];
816 const mbedtls_cipher_info_t *cipher_info;
817 mbedtls_cipher_type_t cipher_type;
818 int keysize;
819
820 for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB;
821 keysize <= 256;
822 keysize += 64, cipher_type++ )
823 {
824 mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize );
825
826 memset( buf, 0, sizeof( buf ) );
827 memset( tmp, 0, sizeof( tmp ) );
828
829 cipher_info = mbedtls_cipher_info_from_type( cipher_type );
830
831 TIME_AND_TSC( title,
Andres AGa592dcc2016-10-06 15:23:39 +0100832 mbedtls_cipher_cmac( cipher_info, tmp, keysize,
833 buf, BUFSIZE, output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100834 }
835
836 memset( buf, 0, sizeof( buf ) );
837 memset( tmp, 0, sizeof( tmp ) );
838 TIME_AND_TSC( "AES-CMAC-PRF-128",
Simon Butcherb981b162016-10-06 10:27:22 +0100839 mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE,
840 output ) );
Simon Butcher549dc3d2016-10-05 14:14:19 +0100841 }
842#endif /* MBEDTLS_CMAC_C */
843#endif /* MBEDTLS_AES_C */
Paul Bakker5121ce52009-01-03 21:22:43 +0000844
Manuel Pégourié-Gonnard62e813c2018-02-21 10:47:47 +0100845#if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
846 if( todo.aria )
847 {
848 int keysize;
849 mbedtls_aria_context aria;
850 mbedtls_aria_init( &aria );
851 for( keysize = 128; keysize <= 256; keysize += 64 )
852 {
853 mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize );
854
855 memset( buf, 0, sizeof( buf ) );
856 memset( tmp, 0, sizeof( tmp ) );
857 mbedtls_aria_setkey_enc( &aria, tmp, keysize );
858
859 TIME_AND_TSC( title,
860 mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT,
861 BUFSIZE, tmp, buf, buf ) );
862 }
863 mbedtls_aria_free( &aria );
864 }
865#endif
866
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200867#if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200868 if( todo.camellia )
Paul Bakker38119b12009-01-10 23:31:23 +0000869 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100870 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200871 mbedtls_camellia_context camellia;
872 mbedtls_camellia_init( &camellia );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200873 for( keysize = 128; keysize <= 256; keysize += 64 )
874 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200875 mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000876
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200877 memset( buf, 0, sizeof( buf ) );
878 memset( tmp, 0, sizeof( tmp ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200879 mbedtls_camellia_setkey_enc( &camellia, tmp, keysize );
Paul Bakker38119b12009-01-10 23:31:23 +0000880
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200881 TIME_AND_TSC( title,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200882 mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200883 BUFSIZE, tmp, buf, buf ) );
884 }
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200885 mbedtls_camellia_free( &camellia );
Paul Bakker38119b12009-01-10 23:31:23 +0000886 }
887#endif
888
Daniel King34b822c2016-05-15 17:28:08 -0300889#if defined(MBEDTLS_CHACHA20_C)
890 if ( todo.chacha20 )
891 {
892 TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) );
893 }
894#endif
895
Daniel Kingadc32c02016-05-16 18:25:45 -0300896#if defined(MBEDTLS_POLY1305_C)
897 if ( todo.poly1305 )
898 {
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200899 TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) );
Daniel Kingadc32c02016-05-16 18:25:45 -0300900 }
901#endif
902
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200903#if defined(MBEDTLS_CTR_DRBG_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200904 if( todo.ctr_drbg )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200905 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200906 mbedtls_ctr_drbg_context ctr_drbg;
Paul Bakker02faf452011-11-29 11:23:58 +0000907
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200908 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200909 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200910 mbedtls_exit(1);
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200911 TIME_AND_TSC( "CTR_DRBG (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200912 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100913 mbedtls_ctr_drbg_free( &ctr_drbg );
Paul Bakker02faf452011-11-29 11:23:58 +0000914
Gilles Peskinedb0cb252019-10-28 17:28:46 +0100915 mbedtls_ctr_drbg_init( &ctr_drbg );
Manuel Pégourié-Gonnard8d128ef2015-04-28 22:38:08 +0200916 if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200917 mbedtls_exit(1);
918 mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200919 TIME_AND_TSC( "CTR_DRBG (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200920 mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200921 mbedtls_ctr_drbg_free( &ctr_drbg );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200922 }
Paul Bakker02faf452011-11-29 11:23:58 +0000923#endif
924
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200925#if defined(MBEDTLS_HMAC_DRBG_C)
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100926 if( todo.hmac_drbg )
927 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200928 mbedtls_hmac_drbg_context hmac_drbg;
929 const mbedtls_md_info_t *md_info;
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100930
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200931 mbedtls_hmac_drbg_init( &hmac_drbg );
932
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200933#if defined(MBEDTLS_SHA1_C)
934 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL )
935 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100936
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200937 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200938 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100939 TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200940 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100941
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200942 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200943 mbedtls_exit(1);
944 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
945 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100946 TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200947 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100948#endif
949
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200950#if defined(MBEDTLS_SHA256_C)
951 if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL )
952 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100953
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200954 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200955 mbedtls_exit(1);
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100956 TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200957 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100958
Manuel Pégourié-Gonnardf9e94812015-04-28 22:07:14 +0200959 if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200960 mbedtls_exit(1);
961 mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg,
962 MBEDTLS_HMAC_DRBG_PR_ON );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100963 TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)",
Manuel Pégourié-Gonnard51d7cfe2018-06-25 11:19:51 +0200964 mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100965#endif
Ron Eldor278af452018-06-20 18:40:21 +0300966 mbedtls_hmac_drbg_free( &hmac_drbg );
Manuel Pégourié-Gonnardfef0f8f2014-01-30 20:59:00 +0100967 }
968#endif
969
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200970#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200971 if( todo.rsa )
Paul Bakker5121ce52009-01-03 21:22:43 +0000972 {
Manuel Pégourié-Gonnard71e75dc2014-12-19 18:05:43 +0100973 int keysize;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200974 mbedtls_rsa_context rsa;
Manuel Pégourié-Gonnarda6dbddc2015-07-06 11:20:33 +0200975 for( keysize = 2048; keysize <= 4096; keysize *= 2 )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200976 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200977 mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200978
Ronald Cronc1905a12021-06-05 11:11:14 +0200979 mbedtls_rsa_init( &rsa );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200980 mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200981
982 TIME_PUBLIC( title, " public",
983 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200984 ret = mbedtls_rsa_public( &rsa, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200985
986 TIME_PUBLIC( title, "private",
987 buf[0] = 0;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200988 ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200989
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200990 mbedtls_rsa_free( &rsa );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +0200991 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000992 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000993#endif
994
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200995#if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C)
Manuel Pégourié-Gonnarded7cbe92013-09-17 15:30:51 +0200996 if( todo.dhm )
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +0100997 {
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +0200998 int dhm_sizes[] = { 2048, 3072 };
Brendan Shankse61514d2018-03-08 17:40:56 -0800999 static const unsigned char dhm_P_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001000 MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001001 static const unsigned char dhm_P_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001002 MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001003 static const unsigned char dhm_G_2048[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001004 MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN;
Brendan Shankse61514d2018-03-08 17:40:56 -08001005 static const unsigned char dhm_G_3072[] =
Hanno Beckerb9539212017-10-04 13:13:34 +01001006 MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN;
1007
1008 const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 };
1009 const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ),
1010 sizeof( dhm_P_3072 ) };
1011
1012 const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 };
1013 const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ),
1014 sizeof( dhm_G_3072 ) };
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001015
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001016 mbedtls_dhm_context dhm;
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001017 size_t olen;
Gilles Peskine487bbf62021-05-27 22:17:07 +02001018 size_t n;
Manuel Pégourié-Gonnard4f3368e2015-07-19 15:01:28 +02001019 for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ )
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001020 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001021 mbedtls_dhm_init( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001022
Hanno Beckerb9539212017-10-04 13:13:34 +01001023 if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i],
1024 dhm_P_size[i] ) != 0 ||
1025 mbedtls_mpi_read_binary( &dhm.G, dhm_G[i],
1026 dhm_G_size[i] ) != 0 )
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001027 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001028 mbedtls_exit( 1 );
Paul Bakkercbe3d0d2014-04-17 16:00:59 +02001029 }
1030
Gilles Peskine487bbf62021-05-27 22:17:07 +02001031 n = mbedtls_mpi_size( &dhm.P );
1032 mbedtls_dhm_make_public( &dhm, (int) n, buf, n, myrand, NULL );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001033 if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 )
1034 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001035
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001036 mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001037 TIME_PUBLIC( title, "handshake",
Gilles Peskine487bbf62021-05-27 22:17:07 +02001038 ret |= mbedtls_dhm_make_public( &dhm, (int) n, buf, n,
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001039 myrand, NULL );
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001040 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001041
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001042 mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001043 TIME_PUBLIC( title, "handshake",
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +01001044 ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001045
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001046 mbedtls_dhm_free( &dhm );
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001047 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001048 }
Manuel Pégourié-Gonnarde870c0a2012-11-08 11:31:48 +01001049#endif
1050
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001051#if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001052 if( todo.ecdsa )
1053 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001054 mbedtls_ecdsa_context ecdsa;
1055 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001056 size_t sig_len;
1057
1058 memset( buf, 0x2A, sizeof( buf ) );
1059
Gilles Peskine28f62f62020-07-24 02:06:46 +02001060 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001061 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001062 curve_info++ )
1063 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001064 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001065 continue;
1066
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001067 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001068
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001069 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 )
1070 mbedtls_exit( 1 );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001071
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001072 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001073 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001074 TIME_PUBLIC( title, "sign",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001075 ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Gilles Peskinef00f1522021-06-22 00:09:00 +02001076 tmp, sizeof( tmp ), &sig_len, myrand, NULL ) );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001077
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001078 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001079 }
1080
Gilles Peskine28f62f62020-07-24 02:06:46 +02001081 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001082 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001083 curve_info++ )
1084 {
Christoph M. Wintersteiger8cd4fba2019-02-15 12:34:40 +00001085 if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) )
Christoph M. Wintersteiger6a1a9e42019-01-07 13:47:30 +00001086 continue;
1087
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001088 mbedtls_ecdsa_init( &ecdsa );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001089
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001090 if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ||
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001091 mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size,
Gilles Peskinef00f1522021-06-22 00:09:00 +02001092 tmp, sizeof( tmp ), &sig_len, myrand, NULL ) != 0 )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001093 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001094 mbedtls_exit( 1 );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001095 }
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001096
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001097 mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s",
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001098 curve_info->name );
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001099 TIME_PUBLIC( title, "verify",
Manuel Pégourié-Gonnard797f48a2015-06-18 15:45:05 +02001100 ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size,
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001101 tmp, sig_len ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001102
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001103 mbedtls_ecdsa_free( &ecdsa );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001104 }
1105 }
1106#endif
1107
Janos Follath52735ef2018-08-15 10:19:16 +01001108#if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001109 if( todo.ecdh )
1110 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001111 mbedtls_ecdh_context ecdh;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001112 mbedtls_mpi z;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001113 const mbedtls_ecp_curve_info montgomery_curve_list[] = {
1114#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED)
1115 { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" },
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001116#endif
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001117#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED)
1118 { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" },
1119#endif
1120 { MBEDTLS_ECP_DP_NONE, 0, 0, 0 }
1121 };
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001122 const mbedtls_ecp_curve_info *curve_info;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001123 size_t olen;
Gilles Peskine28f62f62020-07-24 02:06:46 +02001124 const mbedtls_ecp_curve_info *selected_montgomery_curve_list =
1125 montgomery_curve_list;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001126
Gilles Peskine28f62f62020-07-24 02:06:46 +02001127 if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve )
1128 {
1129 mbedtls_ecp_group grp;
1130 mbedtls_ecp_group_init( &grp );
1131 if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 )
1132 mbedtls_exit( 1 );
1133 if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY )
1134 selected_montgomery_curve_list = single_curve;
1135 else /* empty list */
1136 selected_montgomery_curve_list = single_curve + 1;
1137 mbedtls_ecp_group_free( &grp );
1138 }
1139
1140 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001141 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001142 curve_info++ )
1143 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001144 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1145 continue;
1146
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001147 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001148
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001149 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1150 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1151 myrand, NULL ) );
1152 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001153
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001154 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001155 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001156 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001157 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001158 myrand, NULL ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001159 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1160 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001161 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001162 }
1163
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001164 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001165 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001166 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1167 curve_info++ )
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001168 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001169 mbedtls_ecdh_init( &ecdh );
1170 mbedtls_mpi_init( &z );
1171
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001172 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1173 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001174
1175 mbedtls_snprintf( title, sizeof(title), "ECDHE-%s",
1176 curve_info->name );
1177 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001178 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q,
1179 myrand, NULL ) );
1180 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1181 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001182
1183 mbedtls_ecdh_free( &ecdh );
1184 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001185 }
1186
Gilles Peskine28f62f62020-07-24 02:06:46 +02001187 for( curve_info = curve_list;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001188 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001189 curve_info++ )
1190 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001191 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1192 continue;
1193
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001194 mbedtls_ecdh_init( &ecdh );
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001195
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001196 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1197 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1198 myrand, NULL ) );
1199 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) );
1200 CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf),
1201 myrand, NULL ) );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001202
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001203 mbedtls_snprintf( title, sizeof( title ), "ECDH-%s",
Manuel Pégourié-Gonnard56cd3192013-09-17 17:23:07 +02001204 curve_info->name );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001205 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001206 CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ),
1207 myrand, NULL ) ) );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001208 mbedtls_ecdh_free( &ecdh );
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001209 }
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001210
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001211 /* Montgomery curves need to be handled separately */
Gilles Peskine28f62f62020-07-24 02:06:46 +02001212 for ( curve_info = selected_montgomery_curve_list;
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001213 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1214 curve_info++)
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001215 {
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001216 mbedtls_ecdh_init( &ecdh );
1217 mbedtls_mpi_init( &z );
1218
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001219 CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) );
1220 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp,
1221 myrand, NULL ) );
1222 CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001223
1224 mbedtls_snprintf( title, sizeof(title), "ECDH-%s",
1225 curve_info->name );
1226 TIME_PUBLIC( title, "handshake",
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001227 CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d,
1228 myrand, NULL ) ) );
Nicholas Wilson08f3ef12015-11-10 13:10:01 +00001229
1230 mbedtls_ecdh_free( &ecdh );
1231 mbedtls_mpi_free( &z );
Manuel Pégourié-Gonnard85391f22015-02-05 09:54:48 +00001232 }
Manuel Pégourié-Gonnardcc34f952013-09-17 16:04:08 +02001233 }
1234#endif
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +01001235
Christoph M. Wintersteigere50b9702018-12-14 11:03:02 +00001236#if defined(MBEDTLS_ECDH_C)
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001237 if( todo.ecdh )
1238 {
1239 mbedtls_ecdh_context ecdh_srv, ecdh_cli;
1240 unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE];
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001241 const mbedtls_ecp_curve_info *curve_info;
1242 size_t olen;
1243
1244 for( curve_info = curve_list;
1245 curve_info->grp_id != MBEDTLS_ECP_DP_NONE;
1246 curve_info++ )
1247 {
Gilles Peskinec6c7c492019-02-11 18:41:27 +01001248 if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) )
1249 continue;
1250
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001251 mbedtls_ecdh_init( &ecdh_srv );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001252 mbedtls_ecdh_init( &ecdh_cli );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001253
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001254 mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name );
Christoph M. Wintersteiger0b931022018-12-06 17:15:12 +00001255 TIME_PUBLIC( title, "full handshake",
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001256 const unsigned char * p_srv = buf_srv;
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001257
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001258 CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) );
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001259 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 +01001260
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001261 CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) );
1262 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 +01001263
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001264 CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) );
1265 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 +01001266
Christoph M. Wintersteiger21411d22019-02-06 18:06:15 +00001267 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 +00001268 mbedtls_ecdh_free( &ecdh_cli );
Christoph M. Wintersteiger12f359f2019-02-26 12:26:04 +00001269
Christoph M. Wintersteiger5d536cd2019-02-20 17:26:42 +00001270 mbedtls_ecdh_free( &ecdh_srv );
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001271 );
1272
Christoph M. Wintersteiger0bc9c692018-10-25 12:47:18 +01001273 }
1274 }
1275#endif
1276
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001277 mbedtls_printf( "\n" );
Paul Bakker1d4da2e2009-10-25 12:36:53 +00001278
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001279#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
1280 mbedtls_memory_buffer_alloc_free();
Manuel Pégourié-Gonnard128657d2014-12-18 16:35:52 +00001281#endif
1282
k-stachowiak776521a2019-05-23 09:46:47 +02001283 mbedtls_exit( 0 );
Paul Bakker5121ce52009-01-03 21:22:43 +00001284}
Manuel Pégourié-Gonnard8271f2f2013-09-17 14:57:55 +02001285
Andrzej Kurek6056e7a2022-03-02 12:01:10 -05001286#endif /* MBEDTLS_HAVE_TIME */