| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | /* | 
|  | 2 | *  Benchmark demonstration program | 
|  | 3 | * | 
| Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 4 | *  Copyright The Mbed TLS Contributors | 
| Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 5 | *  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 Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 18 | */ | 
|  | 19 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 20 | #if !defined(MBEDTLS_CONFIG_FILE) | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 21 | #include "mbedtls/config.h" | 
| Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 22 | #else | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 23 | #include MBEDTLS_CONFIG_FILE | 
| Manuel Pégourié-Gonnard | cef4ad2 | 2014-04-29 12:39:06 +0200 | [diff] [blame] | 24 | #endif | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 25 |  | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 26 | #include "mbedtls/platform.h" | 
| Christoph M. Wintersteiger | cc91fe2 | 2019-02-20 18:06:00 +0000 | [diff] [blame] | 27 | #if !defined(MBEDTLS_PLATFORM_C) | 
| Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 28 | #include <stdio.h> | 
| Manuel Pégourié-Gonnard | 3ef6a6d | 2018-12-10 14:31:45 +0100 | [diff] [blame] | 29 | #include <stdlib.h> | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 30 | #define mbedtls_exit       exit | 
|  | 31 | #define mbedtls_printf     printf | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 32 | #define mbedtls_free       free | 
| Rich Evans | f90016a | 2015-01-19 14:26:37 +0000 | [diff] [blame] | 33 | #endif | 
|  | 34 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 35 | #if !defined(MBEDTLS_TIMING_C) | 
| Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 36 | int main( void ) | 
|  | 37 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 38 | mbedtls_printf("MBEDTLS_TIMING_C not defined.\n"); | 
| k-stachowiak | 776521a | 2019-05-23 09:46:47 +0200 | [diff] [blame] | 39 | mbedtls_exit( 0 ); | 
| Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 40 | } | 
|  | 41 | #else | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 42 |  | 
| Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 43 | #include <string.h> | 
| Manuel Pégourié-Gonnard | 7551cb9 | 2015-05-26 16:04:06 +0200 | [diff] [blame] | 44 | #include <stdlib.h> | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 45 |  | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 46 | #include "mbedtls/timing.h" | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 47 |  | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 48 | #include "mbedtls/md4.h" | 
|  | 49 | #include "mbedtls/md5.h" | 
|  | 50 | #include "mbedtls/ripemd160.h" | 
|  | 51 | #include "mbedtls/sha1.h" | 
|  | 52 | #include "mbedtls/sha256.h" | 
|  | 53 | #include "mbedtls/sha512.h" | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 54 |  | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 55 | #include "mbedtls/arc4.h" | 
|  | 56 | #include "mbedtls/des.h" | 
|  | 57 | #include "mbedtls/aes.h" | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 58 | #include "mbedtls/aria.h" | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 59 | #include "mbedtls/blowfish.h" | 
|  | 60 | #include "mbedtls/camellia.h" | 
| Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 61 | #include "mbedtls/chacha20.h" | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 62 | #include "mbedtls/gcm.h" | 
|  | 63 | #include "mbedtls/ccm.h" | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 64 | #include "mbedtls/chachapoly.h" | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 65 | #include "mbedtls/cmac.h" | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 66 | #include "mbedtls/poly1305.h" | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 67 |  | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 68 | #include "mbedtls/ctr_drbg.h" | 
|  | 69 | #include "mbedtls/hmac_drbg.h" | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 70 |  | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 71 | #include "mbedtls/rsa.h" | 
|  | 72 | #include "mbedtls/dhm.h" | 
|  | 73 | #include "mbedtls/ecdsa.h" | 
|  | 74 | #include "mbedtls/ecdh.h" | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 75 |  | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 76 | #include "mbedtls/error.h" | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 77 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 78 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) | 
| Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 79 | #include "mbedtls/memory_buffer_alloc.h" | 
| Rich Evans | 18b78c7 | 2015-02-11 14:06:19 +0000 | [diff] [blame] | 80 | #endif | 
|  | 81 |  | 
| Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 82 | /* | 
|  | 83 | * For heap usage estimates, we need an estimate of the overhead per allocated | 
|  | 84 | * block. ptmalloc2/3 (used in gnu libc for instance) uses 2 size_t per block, | 
|  | 85 | * so use that as our baseline. | 
|  | 86 | */ | 
|  | 87 | #define MEM_BLOCK_OVERHEAD  ( 2 * sizeof( size_t ) ) | 
|  | 88 |  | 
|  | 89 | /* | 
| Manuel Pégourié-Gonnard | b2a18a2 | 2015-05-27 16:29:56 +0200 | [diff] [blame] | 90 | * Size to use for the alloc buffer if MEMORY_BUFFER_ALLOC_C is defined. | 
| Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 91 | */ | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 92 | #define HEAP_SIZE       (1u << 16)  /* 64k */ | 
| Manuel Pégourié-Gonnard | 714929b | 2015-02-16 17:32:47 +0000 | [diff] [blame] | 93 |  | 
| Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 94 | #define BUFSIZE         1024 | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 95 | #define HEADER_FORMAT   "  %-24s :  " | 
| Gergely Budai | a5d336b | 2014-01-27 23:27:06 +0100 | [diff] [blame] | 96 | #define TITLE_LEN       25 | 
| Manuel Pégourié-Gonnard | 6c5abfa | 2015-02-13 14:12:07 +0000 | [diff] [blame] | 97 |  | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 98 | #define OPTIONS                                                         \ | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 99 | "md4, md5, ripemd160, sha1, sha256, sha512,\n"                      \ | 
| Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 100 | "arc4, des3, des, camellia, blowfish, chacha20,\n"                  \ | 
| Zhai Zhaoxuan | e22da99 | 2020-05-09 23:50:32 +0800 | [diff] [blame] | 101 | "aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly,\n"                 \ | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 102 | "aes_cmac, des3_cmac, poly1305\n"                                   \ | 
| Mateusz Starzyk | 0fdcc8e | 2021-01-29 16:46:31 +0100 | [diff] [blame] | 103 | "ctr_drbg, hmac_drbg\n"                                     \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 104 | "rsa, dhm, ecdsa, ecdh.\n" | 
|  | 105 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 106 | #if defined(MBEDTLS_ERROR_C) | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 107 | #define PRINT_ERROR                                                     \ | 
| Simon Butcher | b981b16 | 2016-10-06 10:27:22 +0100 | [diff] [blame] | 108 | mbedtls_strerror( ret, ( char * )tmp, sizeof( tmp ) );          \ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 109 | mbedtls_printf( "FAILED: %s\n", tmp ); | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 110 | #else | 
|  | 111 | #define PRINT_ERROR                                                     \ | 
| Kenneth Soerensen | 518d435 | 2020-04-01 17:22:45 +0200 | [diff] [blame] | 112 | mbedtls_printf( "FAILED: -0x%04x\n", (unsigned int) -ret ); | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 113 | #endif | 
|  | 114 |  | 
|  | 115 | #define TIME_AND_TSC( TITLE, CODE )                                     \ | 
|  | 116 | do {                                                                    \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 117 | unsigned long ii, jj, tsc;                                          \ | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 118 | int ret = 0;                                                        \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 119 | \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 120 | mbedtls_printf( HEADER_FORMAT, TITLE );                             \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 121 | fflush( stdout );                                                   \ | 
|  | 122 | \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 123 | mbedtls_set_alarm( 1 );                                             \ | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 124 | for( ii = 1; ret == 0 && ! mbedtls_timing_alarmed; ii++ )           \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 125 | {                                                                   \ | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 126 | ret = CODE;                                                     \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 127 | }                                                                   \ | 
|  | 128 | \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 129 | tsc = mbedtls_timing_hardclock();                                   \ | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 130 | for( jj = 0; ret == 0 && jj < 1024; jj++ )                          \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 131 | {                                                                   \ | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 132 | ret = CODE;                                                     \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 133 | }                                                                   \ | 
|  | 134 | \ | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 135 | if( ret != 0 )                                                      \ | 
|  | 136 | {                                                                   \ | 
|  | 137 | PRINT_ERROR;                                                    \ | 
|  | 138 | }                                                                   \ | 
|  | 139 | else                                                                \ | 
|  | 140 | {                                                                   \ | 
|  | 141 | mbedtls_printf( "%9lu KiB/s,  %9lu cycles/byte\n",              \ | 
|  | 142 | ii * BUFSIZE / 1024,                           \ | 
|  | 143 | ( mbedtls_timing_hardclock() - tsc )           \ | 
|  | 144 | / ( jj * BUFSIZE ) );                          \ | 
|  | 145 | }                                                                   \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 146 | } while( 0 ) | 
|  | 147 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 148 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && defined(MBEDTLS_MEMORY_DEBUG) | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 149 |  | 
| Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 150 | /* How much space to reserve for the title when printing heap usage results. | 
|  | 151 | * Updated manually as the output of the following command: | 
|  | 152 | * | 
|  | 153 | *  sed -n 's/.*[T]IME_PUBLIC.*"\(.*\)",/\1/p' programs/test/benchmark.c | | 
|  | 154 | *      awk '{print length+2}' | sort -rn | head -n1 | 
|  | 155 | * | 
|  | 156 | * This computes the maximum length of a title +2 (because we appends "/s"). | 
|  | 157 | * (If the value is too small, the only consequence is poor alignement.) */ | 
|  | 158 | #define TITLE_SPACE 16 | 
|  | 159 |  | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 160 | #define MEMORY_MEASURE_INIT                                             \ | 
|  | 161 | size_t max_used, max_blocks, max_bytes;                             \ | 
|  | 162 | size_t prv_used, prv_blocks;                                        \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 163 | mbedtls_memory_buffer_alloc_cur_get( &prv_used, &prv_blocks );      \ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 164 | mbedtls_memory_buffer_alloc_max_reset( ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 165 |  | 
|  | 166 | #define MEMORY_MEASURE_PRINT( title_len )                               \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 167 | mbedtls_memory_buffer_alloc_max_get( &max_used, &max_blocks );      \ | 
| Manuel Pégourié-Gonnard | 5edd388 | 2020-04-09 10:40:03 +0200 | [diff] [blame] | 168 | ii = TITLE_SPACE > (title_len) ? TITLE_SPACE - (title_len) : 1;     \ | 
|  | 169 | while( ii-- ) mbedtls_printf( " " );                                \ | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 170 | max_used -= prv_used;                                               \ | 
|  | 171 | max_blocks -= prv_blocks;                                           \ | 
|  | 172 | max_bytes = max_used + MEM_BLOCK_OVERHEAD * max_blocks;             \ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 173 | mbedtls_printf( "%6u heap bytes", (unsigned) max_bytes ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 174 |  | 
|  | 175 | #else | 
| Manuel Pégourié-Gonnard | e579dab | 2015-01-29 16:28:44 +0000 | [diff] [blame] | 176 | #define MEMORY_MEASURE_INIT | 
|  | 177 | #define MEMORY_MEASURE_PRINT( title_len ) | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 178 | #endif | 
|  | 179 |  | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 180 | #define TIME_PUBLIC( TITLE, TYPE, CODE )                                \ | 
|  | 181 | do {                                                                    \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 182 | unsigned long ii;                                                   \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 183 | int ret;                                                            \ | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 184 | MEMORY_MEASURE_INIT;                                                \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 185 | \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 186 | mbedtls_printf( HEADER_FORMAT, TITLE );                             \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 187 | fflush( stdout );                                                   \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 188 | mbedtls_set_alarm( 3 );                                             \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 189 | \ | 
|  | 190 | ret = 0;                                                            \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 191 | for( ii = 1; ! mbedtls_timing_alarmed && ! ret ; ii++ )             \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 192 | {                                                                   \ | 
|  | 193 | CODE;                                                           \ | 
|  | 194 | }                                                                   \ | 
|  | 195 | \ | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 196 | if( ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED )               \ | 
|  | 197 | {                                                                   \ | 
|  | 198 | mbedtls_printf( "Feature Not Supported. Skipping.\n" );         \ | 
|  | 199 | ret = 0;                                                        \ | 
|  | 200 | }                                                                   \ | 
|  | 201 | else if( ret != 0 )                                                 \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 202 | {                                                                   \ | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 203 | PRINT_ERROR;                                                    \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 204 | }                                                                   \ | 
|  | 205 | else                                                                \ | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 206 | {                                                                   \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 207 | mbedtls_printf( "%6lu " TYPE "/s", ii / 3 );                    \ | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 208 | MEMORY_MEASURE_PRINT( sizeof( TYPE ) + 1 );                     \ | 
| Manuel Pégourié-Gonnard | ea35666 | 2015-08-27 12:02:40 +0200 | [diff] [blame] | 209 | mbedtls_printf( "\n" );                                         \ | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 210 | }                                                                   \ | 
| Rich Evans | 85b05ec | 2015-02-12 11:37:29 +0000 | [diff] [blame] | 211 | } while( 0 ) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 212 |  | 
| Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 213 | static int myrand( void *rng_state, unsigned char *output, size_t len ) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 214 | { | 
| Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 215 | size_t use_len; | 
|  | 216 | int rnd; | 
|  | 217 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 218 | if( rng_state != NULL ) | 
|  | 219 | rng_state  = NULL; | 
|  | 220 |  | 
| Paul Bakker | a3d195c | 2011-11-27 21:07:34 +0000 | [diff] [blame] | 221 | while( len > 0 ) | 
|  | 222 | { | 
|  | 223 | use_len = len; | 
|  | 224 | if( use_len > sizeof(int) ) | 
|  | 225 | use_len = sizeof(int); | 
|  | 226 |  | 
|  | 227 | rnd = rand(); | 
|  | 228 | memcpy( output, &rnd, use_len ); | 
|  | 229 | output += use_len; | 
|  | 230 | len -= use_len; | 
|  | 231 | } | 
|  | 232 |  | 
|  | 233 | return( 0 ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 234 | } | 
|  | 235 |  | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 236 | #define CHECK_AND_CONTINUE( R )                                         \ | 
|  | 237 | {                                                                   \ | 
| Gilles Peskine | b14c4a5 | 2019-02-11 18:23:42 +0100 | [diff] [blame] | 238 | int CHECK_AND_CONTINUE_ret = ( R );                             \ | 
|  | 239 | if( CHECK_AND_CONTINUE_ret == MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED ) { \ | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 240 | mbedtls_printf( "Feature not supported. Skipping.\n" );     \ | 
|  | 241 | continue;                                                   \ | 
|  | 242 | }                                                               \ | 
| Gilles Peskine | b14c4a5 | 2019-02-11 18:23:42 +0100 | [diff] [blame] | 243 | else if( CHECK_AND_CONTINUE_ret != 0 ) {                        \ | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 244 | mbedtls_exit( 1 );                                          \ | 
|  | 245 | }                                                               \ | 
|  | 246 | } | 
| Christoph M. Wintersteiger | 3dca1a4 | 2018-12-14 11:54:59 +0000 | [diff] [blame] | 247 |  | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 248 | /* | 
|  | 249 | * Clear some memory that was used to prepare the context | 
|  | 250 | */ | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 251 | #if defined(MBEDTLS_ECP_C) | 
|  | 252 | void ecp_clear_precomputed( mbedtls_ecp_group *grp ) | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 253 | { | 
|  | 254 | if( grp->T != NULL ) | 
|  | 255 | { | 
|  | 256 | size_t i; | 
|  | 257 | for( i = 0; i < grp->T_size; i++ ) | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 258 | mbedtls_ecp_point_free( &grp->T[i] ); | 
|  | 259 | mbedtls_free( grp->T ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 260 | } | 
|  | 261 | grp->T = NULL; | 
|  | 262 | grp->T_size = 0; | 
|  | 263 | } | 
|  | 264 | #else | 
|  | 265 | #define ecp_clear_precomputed( g ) | 
|  | 266 | #endif | 
|  | 267 |  | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 268 | #if defined(MBEDTLS_ECP_C) | 
|  | 269 | static int set_ecp_curve( const char *string, mbedtls_ecp_curve_info *curve ) | 
|  | 270 | { | 
|  | 271 | const mbedtls_ecp_curve_info *found = | 
|  | 272 | mbedtls_ecp_curve_info_from_name( string ); | 
|  | 273 | if( found != NULL ) | 
|  | 274 | { | 
|  | 275 | *curve = *found; | 
|  | 276 | return( 1 ); | 
|  | 277 | } | 
|  | 278 | else | 
|  | 279 | return( 0 ); | 
|  | 280 | } | 
|  | 281 | #endif | 
|  | 282 |  | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 283 | unsigned char buf[BUFSIZE]; | 
|  | 284 |  | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 285 | typedef struct { | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 286 | char md4, md5, ripemd160, sha1, sha256, sha512, | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 287 | arc4, des3, des, | 
| Manuel Pégourié-Gonnard | 0dadba2 | 2018-06-19 11:11:15 +0200 | [diff] [blame] | 288 | aes_cbc, aes_gcm, aes_ccm, aes_xts, chachapoly, | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 289 | aes_cmac, des3_cmac, | 
| Manuel Pégourié-Gonnard | 39b1904 | 2018-06-07 12:01:33 +0200 | [diff] [blame] | 290 | aria, camellia, blowfish, chacha20, | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 291 | poly1305, | 
| Mateusz Starzyk | 0fdcc8e | 2021-01-29 16:46:31 +0100 | [diff] [blame] | 292 | ctr_drbg, hmac_drbg, | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 293 | rsa, dhm, ecdsa, ecdh; | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 294 | } todo_list; | 
|  | 295 |  | 
| Simon Butcher | 63cb97e | 2018-12-06 17:43:31 +0000 | [diff] [blame] | 296 |  | 
| Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 297 | int main( int argc, char *argv[] ) | 
| Paul Bakker | 5690efc | 2011-05-26 13:16:06 +0000 | [diff] [blame] | 298 | { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 299 | int i; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 300 | unsigned char tmp[200]; | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 301 | char title[TITLE_LEN]; | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 302 | todo_list todo; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 303 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) | 
| Manuel Pégourié-Gonnard | b2a18a2 | 2015-05-27 16:29:56 +0200 | [diff] [blame] | 304 | unsigned char alloc_buf[HEAP_SIZE] = { 0 }; | 
| Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 305 | #endif | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 306 | #if defined(MBEDTLS_ECP_C) | 
|  | 307 | mbedtls_ecp_curve_info single_curve[2] = { | 
|  | 308 | { MBEDTLS_ECP_DP_NONE, 0, 0, NULL }, | 
|  | 309 | { MBEDTLS_ECP_DP_NONE, 0, 0, NULL }, | 
|  | 310 | }; | 
|  | 311 | const mbedtls_ecp_curve_info *curve_list = mbedtls_ecp_curve_list( ); | 
|  | 312 | #endif | 
|  | 313 |  | 
|  | 314 | #if defined(MBEDTLS_ECP_C) | 
|  | 315 | (void) curve_list; /* Unused in some configurations where no benchmark uses ECC */ | 
|  | 316 | #endif | 
| Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 317 |  | 
| Manuel Pégourié-Gonnard | c439e7b | 2015-03-03 13:12:00 +0000 | [diff] [blame] | 318 | if( argc <= 1 ) | 
|  | 319 | { | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 320 | memset( &todo, 1, sizeof( todo ) ); | 
| Manuel Pégourié-Gonnard | c439e7b | 2015-03-03 13:12:00 +0000 | [diff] [blame] | 321 | } | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 322 | else | 
|  | 323 | { | 
|  | 324 | memset( &todo, 0, sizeof( todo ) ); | 
|  | 325 |  | 
|  | 326 | for( i = 1; i < argc; i++ ) | 
|  | 327 | { | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 328 | if( strcmp( argv[i], "md4" ) == 0 ) | 
|  | 329 | todo.md4 = 1; | 
|  | 330 | else if( strcmp( argv[i], "md5" ) == 0 ) | 
|  | 331 | todo.md5 = 1; | 
|  | 332 | else if( strcmp( argv[i], "ripemd160" ) == 0 ) | 
|  | 333 | todo.ripemd160 = 1; | 
|  | 334 | else if( strcmp( argv[i], "sha1" ) == 0 ) | 
|  | 335 | todo.sha1 = 1; | 
|  | 336 | else if( strcmp( argv[i], "sha256" ) == 0 ) | 
|  | 337 | todo.sha256 = 1; | 
|  | 338 | else if( strcmp( argv[i], "sha512" ) == 0 ) | 
|  | 339 | todo.sha512 = 1; | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 340 | else if( strcmp( argv[i], "arc4" ) == 0 ) | 
|  | 341 | todo.arc4 = 1; | 
|  | 342 | else if( strcmp( argv[i], "des3" ) == 0 ) | 
|  | 343 | todo.des3 = 1; | 
|  | 344 | else if( strcmp( argv[i], "des" ) == 0 ) | 
|  | 345 | todo.des = 1; | 
|  | 346 | else if( strcmp( argv[i], "aes_cbc" ) == 0 ) | 
|  | 347 | todo.aes_cbc = 1; | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 348 | else if( strcmp( argv[i], "aes_xts" ) == 0 ) | 
|  | 349 | todo.aes_xts = 1; | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 350 | else if( strcmp( argv[i], "aes_gcm" ) == 0 ) | 
|  | 351 | todo.aes_gcm = 1; | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 352 | else if( strcmp( argv[i], "aes_ccm" ) == 0 ) | 
|  | 353 | todo.aes_ccm = 1; | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 354 | else if( strcmp( argv[i], "chachapoly" ) == 0 ) | 
|  | 355 | todo.chachapoly = 1; | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 356 | else if( strcmp( argv[i], "aes_cmac" ) == 0 ) | 
|  | 357 | todo.aes_cmac = 1; | 
|  | 358 | else if( strcmp( argv[i], "des3_cmac" ) == 0 ) | 
|  | 359 | todo.des3_cmac = 1; | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 360 | else if( strcmp( argv[i], "aria" ) == 0 ) | 
|  | 361 | todo.aria = 1; | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 362 | else if( strcmp( argv[i], "camellia" ) == 0 ) | 
|  | 363 | todo.camellia = 1; | 
|  | 364 | else if( strcmp( argv[i], "blowfish" ) == 0 ) | 
|  | 365 | todo.blowfish = 1; | 
| Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 366 | else if( strcmp( argv[i], "chacha20" ) == 0 ) | 
|  | 367 | todo.chacha20 = 1; | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 368 | else if( strcmp( argv[i], "poly1305" ) == 0 ) | 
|  | 369 | todo.poly1305 = 1; | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 370 | else if( strcmp( argv[i], "ctr_drbg" ) == 0 ) | 
|  | 371 | todo.ctr_drbg = 1; | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 372 | else if( strcmp( argv[i], "hmac_drbg" ) == 0 ) | 
|  | 373 | todo.hmac_drbg = 1; | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 374 | else if( strcmp( argv[i], "rsa" ) == 0 ) | 
|  | 375 | todo.rsa = 1; | 
|  | 376 | else if( strcmp( argv[i], "dhm" ) == 0 ) | 
|  | 377 | todo.dhm = 1; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 378 | else if( strcmp( argv[i], "ecdsa" ) == 0 ) | 
|  | 379 | todo.ecdsa = 1; | 
|  | 380 | else if( strcmp( argv[i], "ecdh" ) == 0 ) | 
|  | 381 | todo.ecdh = 1; | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 382 | #if defined(MBEDTLS_ECP_C) | 
|  | 383 | else if( set_ecp_curve( argv[i], single_curve ) ) | 
|  | 384 | curve_list = single_curve; | 
|  | 385 | #endif | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 386 | else | 
|  | 387 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 388 | mbedtls_printf( "Unrecognized option: %s\n", argv[i] ); | 
|  | 389 | mbedtls_printf( "Available options: " OPTIONS ); | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 390 | } | 
|  | 391 | } | 
|  | 392 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 393 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 394 | mbedtls_printf( "\n" ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 395 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 396 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) | 
| Manuel Pégourié-Gonnard | b2a18a2 | 2015-05-27 16:29:56 +0200 | [diff] [blame] | 397 | mbedtls_memory_buffer_alloc_init( alloc_buf, sizeof( alloc_buf ) ); | 
| Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 398 | #endif | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 399 | memset( buf, 0xAA, sizeof( buf ) ); | 
| Paul Bakker | df71dd1 | 2014-04-17 16:03:48 +0200 | [diff] [blame] | 400 | memset( tmp, 0xBB, sizeof( tmp ) ); | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 401 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 402 | #if defined(MBEDTLS_MD4_C) | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 403 | if( todo.md4 ) | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 404 | TIME_AND_TSC( "MD4", mbedtls_md4_ret( buf, BUFSIZE, tmp ) ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 405 | #endif | 
|  | 406 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 407 | #if defined(MBEDTLS_MD5_C) | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 408 | if( todo.md5 ) | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 409 | TIME_AND_TSC( "MD5", mbedtls_md5_ret( buf, BUFSIZE, tmp ) ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 410 | #endif | 
|  | 411 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 412 | #if defined(MBEDTLS_RIPEMD160_C) | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 413 | if( todo.ripemd160 ) | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 414 | TIME_AND_TSC( "RIPEMD160", mbedtls_ripemd160_ret( buf, BUFSIZE, tmp ) ); | 
| Manuel Pégourié-Gonnard | 01b0b38 | 2014-01-17 14:29:46 +0100 | [diff] [blame] | 415 | #endif | 
|  | 416 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 417 | #if defined(MBEDTLS_SHA1_C) | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 418 | if( todo.sha1 ) | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 419 | TIME_AND_TSC( "SHA-1", mbedtls_sha1_ret( buf, BUFSIZE, tmp ) ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 420 | #endif | 
|  | 421 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 422 | #if defined(MBEDTLS_SHA256_C) | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 423 | if( todo.sha256 ) | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 424 | TIME_AND_TSC( "SHA-256", mbedtls_sha256_ret( buf, BUFSIZE, tmp, 0 ) ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 425 | #endif | 
|  | 426 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 427 | #if defined(MBEDTLS_SHA512_C) | 
| Manuel Pégourié-Gonnard | e85fef1 | 2015-05-11 19:21:39 +0200 | [diff] [blame] | 428 | if( todo.sha512 ) | 
| Gilles Peskine | 9e4f77c | 2018-01-22 11:48:08 +0100 | [diff] [blame] | 429 | TIME_AND_TSC( "SHA-512", mbedtls_sha512_ret( buf, BUFSIZE, tmp, 0 ) ); | 
| Paul Bakker | 3a3c3c2 | 2009-02-09 22:33:30 +0000 | [diff] [blame] | 430 | #endif | 
|  | 431 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 432 | #if defined(MBEDTLS_ARC4_C) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 433 | if( todo.arc4 ) | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 434 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 435 | mbedtls_arc4_context arc4; | 
|  | 436 | mbedtls_arc4_init( &arc4 ); | 
|  | 437 | mbedtls_arc4_setup( &arc4, tmp, 32 ); | 
|  | 438 | TIME_AND_TSC( "ARC4", mbedtls_arc4_crypt( &arc4, BUFSIZE, buf, buf ) ); | 
|  | 439 | mbedtls_arc4_free( &arc4 ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 440 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 441 | #endif | 
|  | 442 |  | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 443 | #if defined(MBEDTLS_DES_C) | 
|  | 444 | #if defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 445 | if( todo.des3 ) | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 446 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 447 | mbedtls_des3_context des3; | 
|  | 448 | mbedtls_des3_init( &des3 ); | 
|  | 449 | mbedtls_des3_set3key_enc( &des3, tmp ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 450 | TIME_AND_TSC( "3DES", | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 451 | mbedtls_des3_crypt_cbc( &des3, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); | 
|  | 452 | mbedtls_des3_free( &des3 ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 453 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 454 |  | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 455 | if( todo.des ) | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 456 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 457 | mbedtls_des_context des; | 
|  | 458 | mbedtls_des_init( &des ); | 
|  | 459 | mbedtls_des_setkey_enc( &des, tmp ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 460 | TIME_AND_TSC( "DES", | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 461 | mbedtls_des_crypt_cbc( &des, MBEDTLS_DES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); | 
|  | 462 | mbedtls_des_free( &des ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 463 | } | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 464 |  | 
|  | 465 | #endif /* MBEDTLS_CIPHER_MODE_CBC */ | 
|  | 466 | #if defined(MBEDTLS_CMAC_C) | 
|  | 467 | if( todo.des3_cmac ) | 
|  | 468 | { | 
|  | 469 | unsigned char output[8]; | 
|  | 470 | const mbedtls_cipher_info_t *cipher_info; | 
|  | 471 |  | 
|  | 472 | memset( buf, 0, sizeof( buf ) ); | 
|  | 473 | memset( tmp, 0, sizeof( tmp ) ); | 
|  | 474 |  | 
|  | 475 | cipher_info = mbedtls_cipher_info_from_type( MBEDTLS_CIPHER_DES_EDE3_ECB ); | 
|  | 476 |  | 
|  | 477 | TIME_AND_TSC( "3DES-CMAC", | 
| Simon Butcher | b981b16 | 2016-10-06 10:27:22 +0100 | [diff] [blame] | 478 | mbedtls_cipher_cmac( cipher_info, tmp, 192, buf, | 
|  | 479 | BUFSIZE, output ) ); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 480 | } | 
|  | 481 | #endif /* MBEDTLS_CMAC_C */ | 
|  | 482 | #endif /* MBEDTLS_DES_C */ | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 483 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 484 | #if defined(MBEDTLS_AES_C) | 
|  | 485 | #if defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 486 | if( todo.aes_cbc ) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 487 | { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 488 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 489 | mbedtls_aes_context aes; | 
|  | 490 | mbedtls_aes_init( &aes ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 491 | for( keysize = 128; keysize <= 256; keysize += 64 ) | 
|  | 492 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 493 | mbedtls_snprintf( title, sizeof( title ), "AES-CBC-%d", keysize ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 494 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 495 | memset( buf, 0, sizeof( buf ) ); | 
|  | 496 | memset( tmp, 0, sizeof( tmp ) ); | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 497 | mbedtls_aes_setkey_enc( &aes, tmp, keysize ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 498 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 499 | TIME_AND_TSC( title, | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 500 | mbedtls_aes_crypt_cbc( &aes, MBEDTLS_AES_ENCRYPT, BUFSIZE, tmp, buf, buf ) ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 501 | } | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 502 | mbedtls_aes_free( &aes ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 503 | } | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 504 | #endif | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 505 | #if defined(MBEDTLS_CIPHER_MODE_XTS) | 
|  | 506 | if( todo.aes_xts ) | 
|  | 507 | { | 
|  | 508 | int keysize; | 
| Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 509 | mbedtls_aes_xts_context ctx; | 
|  | 510 |  | 
|  | 511 | mbedtls_aes_xts_init( &ctx ); | 
|  | 512 | for( keysize = 128; keysize <= 256; keysize += 128 ) | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 513 | { | 
|  | 514 | mbedtls_snprintf( title, sizeof( title ), "AES-XTS-%d", keysize ); | 
|  | 515 |  | 
|  | 516 | memset( buf, 0, sizeof( buf ) ); | 
|  | 517 | memset( tmp, 0, sizeof( tmp ) ); | 
| Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 518 | mbedtls_aes_xts_setkey_enc( &ctx, tmp, keysize * 2 ); | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 519 |  | 
|  | 520 | TIME_AND_TSC( title, | 
| Jaeden Amero | 9366feb | 2018-05-29 18:55:17 +0100 | [diff] [blame] | 521 | mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, BUFSIZE, | 
|  | 522 | tmp, buf, buf ) ); | 
|  | 523 |  | 
|  | 524 | mbedtls_aes_xts_free( &ctx ); | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 525 | } | 
| Aorimn | 5f77801 | 2016-06-09 23:22:58 +0200 | [diff] [blame] | 526 | } | 
|  | 527 | #endif | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 528 | #if defined(MBEDTLS_GCM_C) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 529 | if( todo.aes_gcm ) | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 530 | { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 531 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 532 | mbedtls_gcm_context gcm; | 
| Manuel Pégourié-Gonnard | c34e8dd | 2015-04-28 21:42:17 +0200 | [diff] [blame] | 533 |  | 
|  | 534 | mbedtls_gcm_init( &gcm ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 535 | for( keysize = 128; keysize <= 256; keysize += 64 ) | 
|  | 536 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 537 | mbedtls_snprintf( title, sizeof( title ), "AES-GCM-%d", keysize ); | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 538 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 539 | memset( buf, 0, sizeof( buf ) ); | 
|  | 540 | memset( tmp, 0, sizeof( tmp ) ); | 
| Manuel Pégourié-Gonnard | c34e8dd | 2015-04-28 21:42:17 +0200 | [diff] [blame] | 541 | mbedtls_gcm_setkey( &gcm, MBEDTLS_CIPHER_ID_AES, tmp, keysize ); | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 542 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 543 | TIME_AND_TSC( title, | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 544 | mbedtls_gcm_crypt_and_tag( &gcm, MBEDTLS_GCM_ENCRYPT, BUFSIZE, tmp, | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 545 | 12, NULL, 0, buf, buf, 16, tmp ) ); | 
| Paul Bakker | f70fe81 | 2013-12-16 16:43:10 +0100 | [diff] [blame] | 546 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 547 | mbedtls_gcm_free( &gcm ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 548 | } | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 549 | } | 
|  | 550 | #endif | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 551 | #if defined(MBEDTLS_CCM_C) | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 552 | if( todo.aes_ccm ) | 
|  | 553 | { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 554 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 555 | mbedtls_ccm_context ccm; | 
| Manuel Pégourié-Gonnard | 6963ff0 | 2015-04-28 18:02:54 +0200 | [diff] [blame] | 556 |  | 
|  | 557 | mbedtls_ccm_init( &ccm ); | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 558 | for( keysize = 128; keysize <= 256; keysize += 64 ) | 
|  | 559 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 560 | mbedtls_snprintf( title, sizeof( title ), "AES-CCM-%d", keysize ); | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 561 |  | 
|  | 562 | memset( buf, 0, sizeof( buf ) ); | 
|  | 563 | memset( tmp, 0, sizeof( tmp ) ); | 
| Manuel Pégourié-Gonnard | 6963ff0 | 2015-04-28 18:02:54 +0200 | [diff] [blame] | 564 | mbedtls_ccm_setkey( &ccm, MBEDTLS_CIPHER_ID_AES, tmp, keysize ); | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 565 |  | 
|  | 566 | TIME_AND_TSC( title, | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 567 | mbedtls_ccm_encrypt_and_tag( &ccm, BUFSIZE, tmp, | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 568 | 12, NULL, 0, buf, buf, tmp, 16 ) ); | 
|  | 569 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 570 | mbedtls_ccm_free( &ccm ); | 
| Manuel Pégourié-Gonnard | 58d78a8 | 2014-05-07 12:03:02 +0200 | [diff] [blame] | 571 | } | 
|  | 572 | } | 
|  | 573 | #endif | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 574 | #if defined(MBEDTLS_CHACHAPOLY_C) | 
|  | 575 | if( todo.chachapoly ) | 
|  | 576 | { | 
|  | 577 | mbedtls_chachapoly_context chachapoly; | 
|  | 578 |  | 
|  | 579 | mbedtls_chachapoly_init( &chachapoly ); | 
|  | 580 | memset( buf, 0, sizeof( buf ) ); | 
|  | 581 | memset( tmp, 0, sizeof( tmp ) ); | 
|  | 582 |  | 
|  | 583 | mbedtls_snprintf( title, sizeof( title ), "ChaCha20-Poly1305" ); | 
|  | 584 |  | 
|  | 585 | mbedtls_chachapoly_setkey( &chachapoly, tmp ); | 
|  | 586 |  | 
|  | 587 | TIME_AND_TSC( title, | 
| Manuel Pégourié-Gonnard | 3dc62a0 | 2018-06-04 12:18:19 +0200 | [diff] [blame] | 588 | mbedtls_chachapoly_encrypt_and_tag( &chachapoly, | 
|  | 589 | BUFSIZE, tmp, NULL, 0, buf, buf, tmp ) ); | 
| Manuel Pégourié-Gonnard | d6aea18 | 2018-05-09 10:21:28 +0200 | [diff] [blame] | 590 |  | 
|  | 591 | mbedtls_chachapoly_free( &chachapoly ); | 
|  | 592 | } | 
|  | 593 | #endif | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 594 | #if defined(MBEDTLS_CMAC_C) | 
|  | 595 | if( todo.aes_cmac ) | 
|  | 596 | { | 
|  | 597 | unsigned char output[16]; | 
|  | 598 | const mbedtls_cipher_info_t *cipher_info; | 
|  | 599 | mbedtls_cipher_type_t cipher_type; | 
|  | 600 | int keysize; | 
|  | 601 |  | 
|  | 602 | for( keysize = 128, cipher_type = MBEDTLS_CIPHER_AES_128_ECB; | 
|  | 603 | keysize <= 256; | 
|  | 604 | keysize += 64, cipher_type++ ) | 
|  | 605 | { | 
|  | 606 | mbedtls_snprintf( title, sizeof( title ), "AES-CMAC-%d", keysize ); | 
|  | 607 |  | 
|  | 608 | memset( buf, 0, sizeof( buf ) ); | 
|  | 609 | memset( tmp, 0, sizeof( tmp ) ); | 
|  | 610 |  | 
|  | 611 | cipher_info = mbedtls_cipher_info_from_type( cipher_type ); | 
|  | 612 |  | 
|  | 613 | TIME_AND_TSC( title, | 
| Andres AG | a592dcc | 2016-10-06 15:23:39 +0100 | [diff] [blame] | 614 | mbedtls_cipher_cmac( cipher_info, tmp, keysize, | 
|  | 615 | buf, BUFSIZE, output ) ); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 616 | } | 
|  | 617 |  | 
|  | 618 | memset( buf, 0, sizeof( buf ) ); | 
|  | 619 | memset( tmp, 0, sizeof( tmp ) ); | 
|  | 620 | TIME_AND_TSC( "AES-CMAC-PRF-128", | 
| Simon Butcher | b981b16 | 2016-10-06 10:27:22 +0100 | [diff] [blame] | 621 | mbedtls_aes_cmac_prf_128( tmp, 16, buf, BUFSIZE, | 
|  | 622 | output ) ); | 
| Simon Butcher | 549dc3d | 2016-10-05 14:14:19 +0100 | [diff] [blame] | 623 | } | 
|  | 624 | #endif /* MBEDTLS_CMAC_C */ | 
|  | 625 | #endif /* MBEDTLS_AES_C */ | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 626 |  | 
| Manuel Pégourié-Gonnard | 62e813c | 2018-02-21 10:47:47 +0100 | [diff] [blame] | 627 | #if defined(MBEDTLS_ARIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC) | 
|  | 628 | if( todo.aria ) | 
|  | 629 | { | 
|  | 630 | int keysize; | 
|  | 631 | mbedtls_aria_context aria; | 
|  | 632 | mbedtls_aria_init( &aria ); | 
|  | 633 | for( keysize = 128; keysize <= 256; keysize += 64 ) | 
|  | 634 | { | 
|  | 635 | mbedtls_snprintf( title, sizeof( title ), "ARIA-CBC-%d", keysize ); | 
|  | 636 |  | 
|  | 637 | memset( buf, 0, sizeof( buf ) ); | 
|  | 638 | memset( tmp, 0, sizeof( tmp ) ); | 
|  | 639 | mbedtls_aria_setkey_enc( &aria, tmp, keysize ); | 
|  | 640 |  | 
|  | 641 | TIME_AND_TSC( title, | 
|  | 642 | mbedtls_aria_crypt_cbc( &aria, MBEDTLS_ARIA_ENCRYPT, | 
|  | 643 | BUFSIZE, tmp, buf, buf ) ); | 
|  | 644 | } | 
|  | 645 | mbedtls_aria_free( &aria ); | 
|  | 646 | } | 
|  | 647 | #endif | 
|  | 648 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 649 | #if defined(MBEDTLS_CAMELLIA_C) && defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 650 | if( todo.camellia ) | 
| Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 651 | { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 652 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 653 | mbedtls_camellia_context camellia; | 
|  | 654 | mbedtls_camellia_init( &camellia ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 655 | for( keysize = 128; keysize <= 256; keysize += 64 ) | 
|  | 656 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 657 | mbedtls_snprintf( title, sizeof( title ), "CAMELLIA-CBC-%d", keysize ); | 
| Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 658 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 659 | memset( buf, 0, sizeof( buf ) ); | 
|  | 660 | memset( tmp, 0, sizeof( tmp ) ); | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 661 | mbedtls_camellia_setkey_enc( &camellia, tmp, keysize ); | 
| Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 662 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 663 | TIME_AND_TSC( title, | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 664 | mbedtls_camellia_crypt_cbc( &camellia, MBEDTLS_CAMELLIA_ENCRYPT, | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 665 | BUFSIZE, tmp, buf, buf ) ); | 
|  | 666 | } | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 667 | mbedtls_camellia_free( &camellia ); | 
| Paul Bakker | 38119b1 | 2009-01-10 23:31:23 +0000 | [diff] [blame] | 668 | } | 
|  | 669 | #endif | 
|  | 670 |  | 
| Daniel King | 34b822c | 2016-05-15 17:28:08 -0300 | [diff] [blame] | 671 | #if defined(MBEDTLS_CHACHA20_C) | 
|  | 672 | if ( todo.chacha20 ) | 
|  | 673 | { | 
|  | 674 | TIME_AND_TSC( "ChaCha20", mbedtls_chacha20_crypt( buf, buf, 0U, BUFSIZE, buf, buf ) ); | 
|  | 675 | } | 
|  | 676 | #endif | 
|  | 677 |  | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 678 | #if defined(MBEDTLS_POLY1305_C) | 
|  | 679 | if ( todo.poly1305 ) | 
|  | 680 | { | 
| Manuel Pégourié-Gonnard | b1ac5e7 | 2018-05-09 09:25:00 +0200 | [diff] [blame] | 681 | TIME_AND_TSC( "Poly1305", mbedtls_poly1305_mac( buf, buf, BUFSIZE, buf ) ); | 
| Daniel King | adc32c0 | 2016-05-16 18:25:45 -0300 | [diff] [blame] | 682 | } | 
|  | 683 | #endif | 
|  | 684 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 685 | #if defined(MBEDTLS_BLOWFISH_C) && defined(MBEDTLS_CIPHER_MODE_CBC) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 686 | if( todo.blowfish ) | 
| Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 687 | { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 688 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 689 | mbedtls_blowfish_context blowfish; | 
|  | 690 | mbedtls_blowfish_init( &blowfish ); | 
| Paul Bakker | 8cfd9d8 | 2014-06-18 11:16:11 +0200 | [diff] [blame] | 691 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 692 | for( keysize = 128; keysize <= 256; keysize += 64 ) | 
|  | 693 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 694 | mbedtls_snprintf( title, sizeof( title ), "BLOWFISH-CBC-%d", keysize ); | 
| Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 695 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 696 | memset( buf, 0, sizeof( buf ) ); | 
|  | 697 | memset( tmp, 0, sizeof( tmp ) ); | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 698 | mbedtls_blowfish_setkey( &blowfish, tmp, keysize ); | 
| Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 699 |  | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 700 | TIME_AND_TSC( title, | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 701 | mbedtls_blowfish_crypt_cbc( &blowfish, MBEDTLS_BLOWFISH_ENCRYPT, BUFSIZE, | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 702 | tmp, buf, buf ) ); | 
|  | 703 | } | 
| Paul Bakker | 8cfd9d8 | 2014-06-18 11:16:11 +0200 | [diff] [blame] | 704 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 705 | mbedtls_blowfish_free( &blowfish ); | 
| Paul Bakker | 3d58fe8 | 2012-07-04 17:15:31 +0000 | [diff] [blame] | 706 | } | 
|  | 707 | #endif | 
|  | 708 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 709 | #if defined(MBEDTLS_CTR_DRBG_C) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 710 | if( todo.ctr_drbg ) | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 711 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 712 | mbedtls_ctr_drbg_context ctr_drbg; | 
| Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 713 |  | 
| Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 714 | mbedtls_ctr_drbg_init( &ctr_drbg ); | 
| Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 715 | if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 ) | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 716 | mbedtls_exit(1); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 717 | TIME_AND_TSC( "CTR_DRBG (NOPR)", | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 718 | mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) ); | 
| Gilles Peskine | db0cb25 | 2019-10-28 17:28:46 +0100 | [diff] [blame] | 719 | mbedtls_ctr_drbg_free( &ctr_drbg ); | 
| Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 720 |  | 
| Gilles Peskine | db0cb25 | 2019-10-28 17:28:46 +0100 | [diff] [blame] | 721 | mbedtls_ctr_drbg_init( &ctr_drbg ); | 
| Manuel Pégourié-Gonnard | 8d128ef | 2015-04-28 22:38:08 +0200 | [diff] [blame] | 722 | if( mbedtls_ctr_drbg_seed( &ctr_drbg, myrand, NULL, NULL, 0 ) != 0 ) | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 723 | mbedtls_exit(1); | 
|  | 724 | mbedtls_ctr_drbg_set_prediction_resistance( &ctr_drbg, MBEDTLS_CTR_DRBG_PR_ON ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 725 | TIME_AND_TSC( "CTR_DRBG (PR)", | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 726 | mbedtls_ctr_drbg_random( &ctr_drbg, buf, BUFSIZE ) ); | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 727 | mbedtls_ctr_drbg_free( &ctr_drbg ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 728 | } | 
| Paul Bakker | 02faf45 | 2011-11-29 11:23:58 +0000 | [diff] [blame] | 729 | #endif | 
|  | 730 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 731 | #if defined(MBEDTLS_HMAC_DRBG_C) | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 732 | if( todo.hmac_drbg ) | 
|  | 733 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 734 | mbedtls_hmac_drbg_context hmac_drbg; | 
|  | 735 | const mbedtls_md_info_t *md_info; | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 736 |  | 
| Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 737 | mbedtls_hmac_drbg_init( &hmac_drbg ); | 
|  | 738 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 739 | #if defined(MBEDTLS_SHA1_C) | 
|  | 740 | if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA1 ) ) == NULL ) | 
|  | 741 | mbedtls_exit(1); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 742 |  | 
| Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 743 | if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 ) | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 744 | mbedtls_exit(1); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 745 | TIME_AND_TSC( "HMAC_DRBG SHA-1 (NOPR)", | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 746 | mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 747 |  | 
| Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 748 | if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 ) | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 749 | mbedtls_exit(1); | 
|  | 750 | mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg, | 
|  | 751 | MBEDTLS_HMAC_DRBG_PR_ON ); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 752 | TIME_AND_TSC( "HMAC_DRBG SHA-1 (PR)", | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 753 | mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 754 | #endif | 
|  | 755 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 756 | #if defined(MBEDTLS_SHA256_C) | 
|  | 757 | if( ( md_info = mbedtls_md_info_from_type( MBEDTLS_MD_SHA256 ) ) == NULL ) | 
|  | 758 | mbedtls_exit(1); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 759 |  | 
| Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 760 | if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 ) | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 761 | mbedtls_exit(1); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 762 | TIME_AND_TSC( "HMAC_DRBG SHA-256 (NOPR)", | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 763 | mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 764 |  | 
| Manuel Pégourié-Gonnard | f9e9481 | 2015-04-28 22:07:14 +0200 | [diff] [blame] | 765 | if( mbedtls_hmac_drbg_seed( &hmac_drbg, md_info, myrand, NULL, NULL, 0 ) != 0 ) | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 766 | mbedtls_exit(1); | 
|  | 767 | mbedtls_hmac_drbg_set_prediction_resistance( &hmac_drbg, | 
|  | 768 | MBEDTLS_HMAC_DRBG_PR_ON ); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 769 | TIME_AND_TSC( "HMAC_DRBG SHA-256 (PR)", | 
| Manuel Pégourié-Gonnard | 51d7cfe | 2018-06-25 11:19:51 +0200 | [diff] [blame] | 770 | mbedtls_hmac_drbg_random( &hmac_drbg, buf, BUFSIZE ) ); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 771 | #endif | 
| Ron Eldor | 278af45 | 2018-06-20 18:40:21 +0300 | [diff] [blame] | 772 | mbedtls_hmac_drbg_free( &hmac_drbg ); | 
| Manuel Pégourié-Gonnard | fef0f8f | 2014-01-30 20:59:00 +0100 | [diff] [blame] | 773 | } | 
|  | 774 | #endif | 
|  | 775 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 776 | #if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 777 | if( todo.rsa ) | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 778 | { | 
| Manuel Pégourié-Gonnard | 71e75dc | 2014-12-19 18:05:43 +0100 | [diff] [blame] | 779 | int keysize; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 780 | mbedtls_rsa_context rsa; | 
| Manuel Pégourié-Gonnard | a6dbddc | 2015-07-06 11:20:33 +0200 | [diff] [blame] | 781 | for( keysize = 2048; keysize <= 4096; keysize *= 2 ) | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 782 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 783 | mbedtls_snprintf( title, sizeof( title ), "RSA-%d", keysize ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 784 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 785 | mbedtls_rsa_init( &rsa, MBEDTLS_RSA_PKCS_V15, 0 ); | 
|  | 786 | mbedtls_rsa_gen_key( &rsa, myrand, NULL, keysize, 65537 ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 787 |  | 
|  | 788 | TIME_PUBLIC( title, " public", | 
|  | 789 | buf[0] = 0; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 790 | ret = mbedtls_rsa_public( &rsa, buf, buf ) ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 791 |  | 
|  | 792 | TIME_PUBLIC( title, "private", | 
|  | 793 | buf[0] = 0; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 794 | ret = mbedtls_rsa_private( &rsa, myrand, NULL, buf, buf ) ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 795 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 796 | mbedtls_rsa_free( &rsa ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 797 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 798 | } | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 799 | #endif | 
|  | 800 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 801 | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_BIGNUM_C) | 
| Manuel Pégourié-Gonnard | ed7cbe9 | 2013-09-17 15:30:51 +0200 | [diff] [blame] | 802 | if( todo.dhm ) | 
| Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 803 | { | 
| Manuel Pégourié-Gonnard | 4f3368e | 2015-07-19 15:01:28 +0200 | [diff] [blame] | 804 | int dhm_sizes[] = { 2048, 3072 }; | 
| Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 805 | static const unsigned char dhm_P_2048[] = | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 806 | MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN; | 
| Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 807 | static const unsigned char dhm_P_3072[] = | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 808 | MBEDTLS_DHM_RFC3526_MODP_3072_P_BIN; | 
| Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 809 | static const unsigned char dhm_G_2048[] = | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 810 | MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN; | 
| Brendan Shanks | e61514d | 2018-03-08 17:40:56 -0800 | [diff] [blame] | 811 | static const unsigned char dhm_G_3072[] = | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 812 | MBEDTLS_DHM_RFC3526_MODP_3072_G_BIN; | 
|  | 813 |  | 
|  | 814 | const unsigned char *dhm_P[] = { dhm_P_2048, dhm_P_3072 }; | 
|  | 815 | const size_t dhm_P_size[] = { sizeof( dhm_P_2048 ), | 
|  | 816 | sizeof( dhm_P_3072 ) }; | 
|  | 817 |  | 
|  | 818 | const unsigned char *dhm_G[] = { dhm_G_2048, dhm_G_3072 }; | 
|  | 819 | const size_t dhm_G_size[] = { sizeof( dhm_G_2048 ), | 
|  | 820 | sizeof( dhm_G_3072 ) }; | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 821 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 822 | mbedtls_dhm_context dhm; | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 823 | size_t olen; | 
| Manuel Pégourié-Gonnard | 4f3368e | 2015-07-19 15:01:28 +0200 | [diff] [blame] | 824 | for( i = 0; (size_t) i < sizeof( dhm_sizes ) / sizeof( dhm_sizes[0] ); i++ ) | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 825 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 826 | mbedtls_dhm_init( &dhm ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 827 |  | 
| Hanno Becker | b953921 | 2017-10-04 13:13:34 +0100 | [diff] [blame] | 828 | if( mbedtls_mpi_read_binary( &dhm.P, dhm_P[i], | 
|  | 829 | dhm_P_size[i] ) != 0 || | 
|  | 830 | mbedtls_mpi_read_binary( &dhm.G, dhm_G[i], | 
|  | 831 | dhm_G_size[i] ) != 0 ) | 
| Paul Bakker | cbe3d0d | 2014-04-17 16:00:59 +0200 | [diff] [blame] | 832 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 833 | mbedtls_exit( 1 ); | 
| Paul Bakker | cbe3d0d | 2014-04-17 16:00:59 +0200 | [diff] [blame] | 834 | } | 
|  | 835 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 836 | dhm.len = mbedtls_mpi_size( &dhm.P ); | 
|  | 837 | mbedtls_dhm_make_public( &dhm, (int) dhm.len, buf, dhm.len, myrand, NULL ); | 
|  | 838 | if( mbedtls_mpi_copy( &dhm.GY, &dhm.GX ) != 0 ) | 
|  | 839 | mbedtls_exit( 1 ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 840 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 841 | mbedtls_snprintf( title, sizeof( title ), "DHE-%d", dhm_sizes[i] ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 842 | TIME_PUBLIC( title, "handshake", | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 843 | ret |= mbedtls_dhm_make_public( &dhm, (int) dhm.len, buf, dhm.len, | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 844 | myrand, NULL ); | 
| Manuel Pégourié-Gonnard | 3335205 | 2015-06-02 16:17:08 +0100 | [diff] [blame] | 845 | ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 846 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 847 | mbedtls_snprintf( title, sizeof( title ), "DH-%d", dhm_sizes[i] ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 848 | TIME_PUBLIC( title, "handshake", | 
| Manuel Pégourié-Gonnard | 3335205 | 2015-06-02 16:17:08 +0100 | [diff] [blame] | 849 | ret |= mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &olen, myrand, NULL ) ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 850 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 851 | mbedtls_dhm_free( &dhm ); | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 852 | } | 
| Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 853 | } | 
| Manuel Pégourié-Gonnard | e870c0a | 2012-11-08 11:31:48 +0100 | [diff] [blame] | 854 | #endif | 
|  | 855 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 856 | #if defined(MBEDTLS_ECDSA_C) && defined(MBEDTLS_SHA256_C) | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 857 | if( todo.ecdsa ) | 
|  | 858 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 859 | mbedtls_ecdsa_context ecdsa; | 
|  | 860 | const mbedtls_ecp_curve_info *curve_info; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 861 | size_t sig_len; | 
|  | 862 |  | 
|  | 863 | memset( buf, 0x2A, sizeof( buf ) ); | 
|  | 864 |  | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 865 | for( curve_info = curve_list; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 866 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 867 | curve_info++ ) | 
|  | 868 | { | 
| Christoph M. Wintersteiger | 8cd4fba | 2019-02-15 12:34:40 +0000 | [diff] [blame] | 869 | if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) ) | 
| Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 870 | continue; | 
|  | 871 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 872 | mbedtls_ecdsa_init( &ecdsa ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 873 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 874 | if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 ) | 
|  | 875 | mbedtls_exit( 1 ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 876 | ecp_clear_precomputed( &ecdsa.grp ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 877 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 878 | mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s", | 
| Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 879 | curve_info->name ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 880 | TIME_PUBLIC( title, "sign", | 
| Manuel Pégourié-Gonnard | 797f48a | 2015-06-18 15:45:05 +0200 | [diff] [blame] | 881 | ret = mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size, | 
| Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 882 | tmp, &sig_len, myrand, NULL ) ); | 
|  | 883 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 884 | mbedtls_ecdsa_free( &ecdsa ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 885 | } | 
|  | 886 |  | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 887 | for( curve_info = curve_list; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 888 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 889 | curve_info++ ) | 
|  | 890 | { | 
| Christoph M. Wintersteiger | 8cd4fba | 2019-02-15 12:34:40 +0000 | [diff] [blame] | 891 | if( ! mbedtls_ecdsa_can_do( curve_info->grp_id ) ) | 
| Christoph M. Wintersteiger | 6a1a9e4 | 2019-01-07 13:47:30 +0000 | [diff] [blame] | 892 | continue; | 
|  | 893 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 894 | mbedtls_ecdsa_init( &ecdsa ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 895 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 896 | if( mbedtls_ecdsa_genkey( &ecdsa, curve_info->grp_id, myrand, NULL ) != 0 || | 
| Manuel Pégourié-Gonnard | 797f48a | 2015-06-18 15:45:05 +0200 | [diff] [blame] | 897 | mbedtls_ecdsa_write_signature( &ecdsa, MBEDTLS_MD_SHA256, buf, curve_info->bit_size, | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 898 | tmp, &sig_len, myrand, NULL ) != 0 ) | 
|  | 899 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 900 | mbedtls_exit( 1 ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 901 | } | 
|  | 902 | ecp_clear_precomputed( &ecdsa.grp ); | 
|  | 903 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 904 | mbedtls_snprintf( title, sizeof( title ), "ECDSA-%s", | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 905 | curve_info->name ); | 
| Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 906 | TIME_PUBLIC( title, "verify", | 
| Manuel Pégourié-Gonnard | 797f48a | 2015-06-18 15:45:05 +0200 | [diff] [blame] | 907 | ret = mbedtls_ecdsa_read_signature( &ecdsa, buf, curve_info->bit_size, | 
| Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 908 | tmp, sig_len ) ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 909 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 910 | mbedtls_ecdsa_free( &ecdsa ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 911 | } | 
|  | 912 | } | 
|  | 913 | #endif | 
|  | 914 |  | 
| Janos Follath | 52735ef | 2018-08-15 10:19:16 +0100 | [diff] [blame] | 915 | #if defined(MBEDTLS_ECDH_C) && defined(MBEDTLS_ECDH_LEGACY_CONTEXT) | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 916 | if( todo.ecdh ) | 
|  | 917 | { | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 918 | mbedtls_ecdh_context ecdh; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 919 | mbedtls_mpi z; | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 920 | const mbedtls_ecp_curve_info montgomery_curve_list[] = { | 
|  | 921 | #if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) | 
|  | 922 | { MBEDTLS_ECP_DP_CURVE25519, 0, 0, "Curve25519" }, | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 923 | #endif | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 924 | #if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) | 
|  | 925 | { MBEDTLS_ECP_DP_CURVE448, 0, 0, "Curve448" }, | 
|  | 926 | #endif | 
|  | 927 | { MBEDTLS_ECP_DP_NONE, 0, 0, 0 } | 
|  | 928 | }; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 929 | const mbedtls_ecp_curve_info *curve_info; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 930 | size_t olen; | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 931 | const mbedtls_ecp_curve_info *selected_montgomery_curve_list = | 
|  | 932 | montgomery_curve_list; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 933 |  | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 934 | if( curve_list == (const mbedtls_ecp_curve_info*) &single_curve ) | 
|  | 935 | { | 
|  | 936 | mbedtls_ecp_group grp; | 
|  | 937 | mbedtls_ecp_group_init( &grp ); | 
|  | 938 | if( mbedtls_ecp_group_load( &grp, curve_list->grp_id ) != 0 ) | 
|  | 939 | mbedtls_exit( 1 ); | 
|  | 940 | if( mbedtls_ecp_get_type( &grp ) == MBEDTLS_ECP_TYPE_MONTGOMERY ) | 
|  | 941 | selected_montgomery_curve_list = single_curve; | 
|  | 942 | else /* empty list */ | 
|  | 943 | selected_montgomery_curve_list = single_curve + 1; | 
|  | 944 | mbedtls_ecp_group_free( &grp ); | 
|  | 945 | } | 
|  | 946 |  | 
|  | 947 | for( curve_info = curve_list; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 948 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 949 | curve_info++ ) | 
|  | 950 | { | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 951 | if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) ) | 
|  | 952 | continue; | 
|  | 953 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 954 | mbedtls_ecdh_init( &ecdh ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 955 |  | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 956 | CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) ); | 
|  | 957 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf), | 
|  | 958 | myrand, NULL ) ); | 
|  | 959 | CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 960 | ecp_clear_precomputed( &ecdh.grp ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 961 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 962 | mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", | 
| Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 963 | curve_info->name ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 964 | TIME_PUBLIC( title, "handshake", | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 965 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf), | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 966 | myrand, NULL ) ); | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 967 | CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ), | 
|  | 968 | myrand, NULL ) ) ); | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 969 | mbedtls_ecdh_free( &ecdh ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 970 | } | 
|  | 971 |  | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 972 | /* Montgomery curves need to be handled separately */ | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 973 | for ( curve_info = selected_montgomery_curve_list; | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 974 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
|  | 975 | curve_info++ ) | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 976 | { | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 977 | mbedtls_ecdh_init( &ecdh ); | 
|  | 978 | mbedtls_mpi_init( &z ); | 
|  | 979 |  | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 980 | CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) ); | 
|  | 981 | CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, myrand, NULL ) ); | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 982 |  | 
|  | 983 | mbedtls_snprintf( title, sizeof(title), "ECDHE-%s", | 
|  | 984 | curve_info->name ); | 
|  | 985 | TIME_PUBLIC(  title, "handshake", | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 986 | CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, | 
|  | 987 | myrand, NULL ) ); | 
|  | 988 | CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d, | 
|  | 989 | myrand, NULL ) ) ); | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 990 |  | 
|  | 991 | mbedtls_ecdh_free( &ecdh ); | 
|  | 992 | mbedtls_mpi_free( &z ); | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 993 | } | 
|  | 994 |  | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 995 | for( curve_info = curve_list; | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 996 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 997 | curve_info++ ) | 
|  | 998 | { | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 999 | if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) ) | 
|  | 1000 | continue; | 
|  | 1001 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1002 | mbedtls_ecdh_init( &ecdh ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1003 |  | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1004 | CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) ); | 
|  | 1005 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf), | 
|  | 1006 | myrand, NULL ) ); | 
|  | 1007 | CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) ); | 
|  | 1008 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh, &olen, buf, sizeof( buf), | 
|  | 1009 | myrand, NULL ) ); | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1010 | ecp_clear_precomputed( &ecdh.grp ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1011 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1012 | mbedtls_snprintf( title, sizeof( title ), "ECDH-%s", | 
| Manuel Pégourié-Gonnard | 56cd319 | 2013-09-17 17:23:07 +0200 | [diff] [blame] | 1013 | curve_info->name ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1014 | TIME_PUBLIC( title, "handshake", | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1015 | CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh, &olen, buf, sizeof( buf ), | 
|  | 1016 | myrand, NULL ) ) ); | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1017 | mbedtls_ecdh_free( &ecdh ); | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1018 | } | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1019 |  | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1020 | /* Montgomery curves need to be handled separately */ | 
| Gilles Peskine | 28f62f6 | 2020-07-24 02:06:46 +0200 | [diff] [blame] | 1021 | for ( curve_info = selected_montgomery_curve_list; | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1022 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
|  | 1023 | curve_info++) | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1024 | { | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1025 | mbedtls_ecdh_init( &ecdh ); | 
|  | 1026 | mbedtls_mpi_init( &z ); | 
|  | 1027 |  | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1028 | CHECK_AND_CONTINUE( mbedtls_ecp_group_load( &ecdh.grp, curve_info->grp_id ) ); | 
|  | 1029 | CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Qp, | 
|  | 1030 | myrand, NULL ) ); | 
|  | 1031 | CHECK_AND_CONTINUE( mbedtls_ecdh_gen_public( &ecdh.grp, &ecdh.d, &ecdh.Q, myrand, NULL ) ); | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1032 |  | 
|  | 1033 | mbedtls_snprintf( title, sizeof(title), "ECDH-%s", | 
|  | 1034 | curve_info->name ); | 
|  | 1035 | TIME_PUBLIC(  title, "handshake", | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1036 | CHECK_AND_CONTINUE( mbedtls_ecdh_compute_shared( &ecdh.grp, &z, &ecdh.Qp, &ecdh.d, | 
|  | 1037 | myrand, NULL ) ) ); | 
| Nicholas Wilson | 08f3ef1 | 2015-11-10 13:10:01 +0000 | [diff] [blame] | 1038 |  | 
|  | 1039 | mbedtls_ecdh_free( &ecdh ); | 
|  | 1040 | mbedtls_mpi_free( &z ); | 
| Manuel Pégourié-Gonnard | 85391f2 | 2015-02-05 09:54:48 +0000 | [diff] [blame] | 1041 | } | 
| Manuel Pégourié-Gonnard | cc34f95 | 2013-09-17 16:04:08 +0200 | [diff] [blame] | 1042 | } | 
|  | 1043 | #endif | 
| Manuel Pégourié-Gonnard | 50da048 | 2014-12-19 12:10:37 +0100 | [diff] [blame] | 1044 |  | 
| Christoph M. Wintersteiger | e50b970 | 2018-12-14 11:03:02 +0000 | [diff] [blame] | 1045 | #if defined(MBEDTLS_ECDH_C) | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1046 | if( todo.ecdh ) | 
|  | 1047 | { | 
|  | 1048 | mbedtls_ecdh_context ecdh_srv, ecdh_cli; | 
|  | 1049 | unsigned char buf_srv[BUFSIZE], buf_cli[BUFSIZE]; | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1050 | const mbedtls_ecp_curve_info *curve_info; | 
|  | 1051 | size_t olen; | 
|  | 1052 |  | 
|  | 1053 | for( curve_info = curve_list; | 
|  | 1054 | curve_info->grp_id != MBEDTLS_ECP_DP_NONE; | 
|  | 1055 | curve_info++ ) | 
|  | 1056 | { | 
| Gilles Peskine | c6c7c49 | 2019-02-11 18:41:27 +0100 | [diff] [blame] | 1057 | if( ! mbedtls_ecdh_can_do( curve_info->grp_id ) ) | 
|  | 1058 | continue; | 
|  | 1059 |  | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1060 | mbedtls_ecdh_init( &ecdh_srv ); | 
| Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1061 | mbedtls_ecdh_init( &ecdh_cli ); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1062 |  | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1063 | mbedtls_snprintf( title, sizeof( title ), "ECDHE-%s", curve_info->name ); | 
| Christoph M. Wintersteiger | 0b93102 | 2018-12-06 17:15:12 +0000 | [diff] [blame] | 1064 | TIME_PUBLIC( title, "full handshake", | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1065 | const unsigned char * p_srv = buf_srv; | 
| Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1066 |  | 
| Christoph M. Wintersteiger | 5d536cd | 2019-02-20 17:26:42 +0000 | [diff] [blame] | 1067 | CHECK_AND_CONTINUE( mbedtls_ecdh_setup( &ecdh_srv, curve_info->grp_id ) ); | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1068 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_params( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) ); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1069 |  | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1070 | CHECK_AND_CONTINUE( mbedtls_ecdh_read_params( &ecdh_cli, &p_srv, p_srv + olen ) ); | 
|  | 1071 | CHECK_AND_CONTINUE( mbedtls_ecdh_make_public( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) ); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1072 |  | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1073 | CHECK_AND_CONTINUE( mbedtls_ecdh_read_public( &ecdh_srv, buf_cli, olen ) ); | 
|  | 1074 | CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_srv, &olen, buf_srv, sizeof( buf_srv ), myrand, NULL ) ); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1075 |  | 
| Christoph M. Wintersteiger | 21411d2 | 2019-02-06 18:06:15 +0000 | [diff] [blame] | 1076 | CHECK_AND_CONTINUE( mbedtls_ecdh_calc_secret( &ecdh_cli, &olen, buf_cli, sizeof( buf_cli ), myrand, NULL ) ); | 
| Christoph M. Wintersteiger | 5d536cd | 2019-02-20 17:26:42 +0000 | [diff] [blame] | 1077 | mbedtls_ecdh_free( &ecdh_cli ); | 
| Christoph M. Wintersteiger | 12f359f | 2019-02-26 12:26:04 +0000 | [diff] [blame] | 1078 |  | 
| Christoph M. Wintersteiger | 5d536cd | 2019-02-20 17:26:42 +0000 | [diff] [blame] | 1079 | mbedtls_ecdh_free( &ecdh_srv ); | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1080 | ); | 
|  | 1081 |  | 
| Christoph M. Wintersteiger | 0bc9c69 | 2018-10-25 12:47:18 +0100 | [diff] [blame] | 1082 | } | 
|  | 1083 | } | 
|  | 1084 | #endif | 
|  | 1085 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1086 | mbedtls_printf( "\n" ); | 
| Paul Bakker | 1d4da2e | 2009-10-25 12:36:53 +0000 | [diff] [blame] | 1087 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1088 | #if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) | 
|  | 1089 | mbedtls_memory_buffer_alloc_free(); | 
| Manuel Pégourié-Gonnard | 128657d | 2014-12-18 16:35:52 +0000 | [diff] [blame] | 1090 | #endif | 
|  | 1091 |  | 
| Paul Bakker | cce9d77 | 2011-11-18 14:26:47 +0000 | [diff] [blame] | 1092 | #if defined(_WIN32) | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1093 | mbedtls_printf( "  Press Enter to exit this program.\n" ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1094 | fflush( stdout ); getchar(); | 
|  | 1095 | #endif | 
|  | 1096 |  | 
| k-stachowiak | 776521a | 2019-05-23 09:46:47 +0200 | [diff] [blame] | 1097 | mbedtls_exit( 0 ); | 
| Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1098 | } | 
| Manuel Pégourié-Gonnard | 8271f2f | 2013-09-17 14:57:55 +0200 | [diff] [blame] | 1099 |  | 
| Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1100 | #endif /* MBEDTLS_TIMING_C */ |