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