blob: e6f53ed62344b94b467d2d9ac1ba05745ec71006 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/*
2 * Diffie-Hellman-Merkle key exchange (server side)
3 *
Bence Szépkúti1e148272020-08-07 13:07:28 +02004 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker5121ce52009-01-03 21:22:43 +000018 */
19
Bence Szépkútic662b362021-05-27 11:25:03 +020020#include "mbedtls/build_info.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000021
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000022#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000023
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#if defined(MBEDTLS_AES_C) && defined(MBEDTLS_DHM_C) && \
25 defined(MBEDTLS_ENTROPY_C) && defined(MBEDTLS_NET_C) && \
26 defined(MBEDTLS_RSA_C) && defined(MBEDTLS_SHA256_C) && \
Janos Follath9fe6f922016-10-07 14:17:56 +010027 defined(MBEDTLS_FS_IO) && defined(MBEDTLS_CTR_DRBG_C) && \
28 defined(MBEDTLS_SHA1_C)
Andres AG788aa4a2016-09-14 14:32:09 +010029#include "mbedtls/net_sockets.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000030#include "mbedtls/aes.h"
31#include "mbedtls/dhm.h"
32#include "mbedtls/rsa.h"
33#include "mbedtls/sha1.h"
34#include "mbedtls/entropy.h"
35#include "mbedtls/ctr_drbg.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000036
Rich Evans18b78c72015-02-11 14:06:19 +000037#include <stdio.h>
38#include <string.h>
39#endif
40
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +020041#define SERVER_PORT "11999"
Paul Bakker5121ce52009-01-03 21:22:43 +000042#define PLAINTEXT "==Hello there!=="
43
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020044#if !defined(MBEDTLS_AES_C) || !defined(MBEDTLS_DHM_C) || \
45 !defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_NET_C) || \
46 !defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_SHA256_C) || \
Janos Follath9fe6f922016-10-07 14:17:56 +010047 !defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_CTR_DRBG_C) || \
48 !defined(MBEDTLS_SHA1_C)
Rich Evans85b05ec2015-02-12 11:37:29 +000049int main( void )
Paul Bakker5690efc2011-05-26 13:16:06 +000050{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020051 mbedtls_printf("MBEDTLS_AES_C and/or MBEDTLS_DHM_C and/or MBEDTLS_ENTROPY_C "
52 "and/or MBEDTLS_NET_C and/or MBEDTLS_RSA_C and/or "
53 "MBEDTLS_SHA256_C and/or MBEDTLS_FS_IO and/or "
54 "MBEDTLS_CTR_DRBG_C not defined.\n");
Krzysztof Stachowiak5e1b1952019-04-24 14:24:46 +020055 mbedtls_exit( 0 );
Paul Bakker5690efc2011-05-26 13:16:06 +000056}
57#else
Simon Butcher63cb97e2018-12-06 17:43:31 +000058
Simon Butcher63cb97e2018-12-06 17:43:31 +000059
Rich Evans85b05ec2015-02-12 11:37:29 +000060int main( void )
Paul Bakker5121ce52009-01-03 21:22:43 +000061{
62 FILE *f;
63
Andres Amaya Garcia03a992c2018-04-29 19:40:45 +010064 int ret = 1;
65 int exit_code = MBEDTLS_EXIT_FAILURE;
Paul Bakker23986e52011-04-24 08:57:21 +000066 size_t n, buflen;
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +020067 mbedtls_net_context listen_fd, client_fd;
Paul Bakker5121ce52009-01-03 21:22:43 +000068
Paul Bakker520ea912012-10-24 14:17:01 +000069 unsigned char buf[2048];
Manuel Pégourié-Gonnard102a6202015-08-27 21:51:44 +020070 unsigned char hash[32];
Paul Bakker5121ce52009-01-03 21:22:43 +000071 unsigned char buf2[2];
Paul Bakkeref3f8c72013-06-24 13:01:08 +020072 const char *pers = "dh_server";
Paul Bakker5121ce52009-01-03 21:22:43 +000073
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020074 mbedtls_entropy_context entropy;
75 mbedtls_ctr_drbg_context ctr_drbg;
76 mbedtls_rsa_context rsa;
77 mbedtls_dhm_context dhm;
78 mbedtls_aes_context aes;
Paul Bakker5121ce52009-01-03 21:22:43 +000079
Hanno Beckerc95fad32017-08-23 06:44:30 +010080 mbedtls_mpi N, P, Q, D, E;
81
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +020082 mbedtls_net_init( &listen_fd );
83 mbedtls_net_init( &client_fd );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020084 mbedtls_dhm_init( &dhm );
85 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +020086 mbedtls_ctr_drbg_init( &ctr_drbg );
Paul Bakker5121ce52009-01-03 21:22:43 +000087
Hanno Beckerc95fad32017-08-23 06:44:30 +010088 mbedtls_mpi_init( &N ); mbedtls_mpi_init( &P ); mbedtls_mpi_init( &Q );
89 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E );
90
Paul Bakker5121ce52009-01-03 21:22:43 +000091 /*
92 * 1. Setup the RNG
93 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020094 mbedtls_printf( "\n . Seeding the random number generator" );
Paul Bakker5121ce52009-01-03 21:22:43 +000095 fflush( stdout );
96
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020097 mbedtls_entropy_init( &entropy );
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +020098 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy,
Paul Bakkeref3f8c72013-06-24 13:01:08 +020099 (const unsigned char *) pers,
100 strlen( pers ) ) ) != 0 )
Paul Bakker508ad5a2011-12-04 17:09:26 +0000101 {
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +0200102 mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret );
Paul Bakker508ad5a2011-12-04 17:09:26 +0000103 goto exit;
104 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000105
106 /*
107 * 2a. Read the server's private RSA key
108 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200109 mbedtls_printf( "\n . Reading private key from rsa_priv.txt" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000110 fflush( stdout );
111
112 if( ( f = fopen( "rsa_priv.txt", "rb" ) ) == NULL )
113 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200114 mbedtls_printf( " failed\n ! Could not open rsa_priv.txt\n" \
Paul Bakker5121ce52009-01-03 21:22:43 +0000115 " ! Please run rsa_genkey first\n\n" );
116 goto exit;
117 }
118
Ronald Cronc1905a12021-06-05 11:11:14 +0200119 mbedtls_rsa_init( &rsa );
Paul Bakker5121ce52009-01-03 21:22:43 +0000120
Hanno Beckerc95fad32017-08-23 06:44:30 +0100121 if( ( ret = mbedtls_mpi_read_file( &N , 16, f ) ) != 0 ||
122 ( ret = mbedtls_mpi_read_file( &E , 16, f ) ) != 0 ||
123 ( ret = mbedtls_mpi_read_file( &D , 16, f ) ) != 0 ||
124 ( ret = mbedtls_mpi_read_file( &P , 16, f ) ) != 0 ||
125 ( ret = mbedtls_mpi_read_file( &Q , 16, f ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000126 {
Hanno Beckerc95fad32017-08-23 06:44:30 +0100127 mbedtls_printf( " failed\n ! mbedtls_mpi_read_file returned %d\n\n",
128 ret );
Janos Follath98e28a72016-05-31 14:03:54 +0100129 fclose( f );
Paul Bakker5121ce52009-01-03 21:22:43 +0000130 goto exit;
131 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000132 fclose( f );
133
Hanno Beckerc95fad32017-08-23 06:44:30 +0100134 if( ( ret = mbedtls_rsa_import( &rsa, &N, &P, &Q, &D, &E ) ) != 0 )
135 {
136 mbedtls_printf( " failed\n ! mbedtls_rsa_import returned %d\n\n",
137 ret );
138 goto exit;
139 }
140
Hanno Becker7f25f852017-10-10 16:56:22 +0100141 if( ( ret = mbedtls_rsa_complete( &rsa ) ) != 0 )
Hanno Beckerc95fad32017-08-23 06:44:30 +0100142 {
143 mbedtls_printf( " failed\n ! mbedtls_rsa_complete returned %d\n\n",
144 ret );
145 goto exit;
146 }
147
Paul Bakker5121ce52009-01-03 21:22:43 +0000148 /*
149 * 2b. Get the DHM modulus and generator
150 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200151 mbedtls_printf( "\n . Reading DH parameters from dh_prime.txt" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000152 fflush( stdout );
153
154 if( ( f = fopen( "dh_prime.txt", "rb" ) ) == NULL )
155 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200156 mbedtls_printf( " failed\n ! Could not open dh_prime.txt\n" \
Paul Bakker5121ce52009-01-03 21:22:43 +0000157 " ! Please run dh_genprime first\n\n" );
158 goto exit;
159 }
160
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200161 if( mbedtls_mpi_read_file( &dhm.MBEDTLS_PRIVATE(P), 16, f ) != 0 ||
162 mbedtls_mpi_read_file( &dhm.MBEDTLS_PRIVATE(G), 16, f ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000163 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200164 mbedtls_printf( " failed\n ! Invalid DH parameter file\n\n" );
Janos Follath98e28a72016-05-31 14:03:54 +0100165 fclose( f );
Paul Bakker5121ce52009-01-03 21:22:43 +0000166 goto exit;
167 }
168
169 fclose( f );
170
171 /*
172 * 3. Wait for a client to connect
173 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200174 mbedtls_printf( "\n . Waiting for a remote connection" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000175 fflush( stdout );
176
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200177 if( ( ret = mbedtls_net_bind( &listen_fd, NULL, SERVER_PORT, MBEDTLS_NET_PROTO_TCP ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000178 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200179 mbedtls_printf( " failed\n ! mbedtls_net_bind returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000180 goto exit;
181 }
182
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +0200183 if( ( ret = mbedtls_net_accept( &listen_fd, &client_fd,
Manuel Pégourié-Gonnard0b104b02015-05-14 21:52:40 +0200184 NULL, 0, NULL ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000185 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200186 mbedtls_printf( " failed\n ! mbedtls_net_accept returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000187 goto exit;
188 }
189
190 /*
191 * 4. Setup the DH parameters (P,G,Ys)
192 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200193 mbedtls_printf( "\n . Sending the server's DH parameters" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000194 fflush( stdout );
195
196 memset( buf, 0, sizeof( buf ) );
197
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200198 if( ( ret = mbedtls_dhm_make_params( &dhm, (int) mbedtls_mpi_size( &dhm.MBEDTLS_PRIVATE(P) ), buf, &n,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200199 mbedtls_ctr_drbg_random, &ctr_drbg ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000200 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200201 mbedtls_printf( " failed\n ! mbedtls_dhm_make_params returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000202 goto exit;
203 }
204
205 /*
206 * 5. Sign the parameters and send them
207 */
TRodziewicz26371e42021-06-08 16:45:41 +0200208 if( ( ret = mbedtls_sha1( buf, n, hash ) ) != 0 )
Andres Amaya Garcia1ff60f42017-06-28 13:26:36 +0100209 {
TRodziewicz26371e42021-06-08 16:45:41 +0200210 mbedtls_printf( " failed\n ! mbedtls_sha1 returned %d\n\n", ret );
Andres Amaya Garcia1ff60f42017-06-28 13:26:36 +0100211 goto exit;
212 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000213
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200214 buf[n ] = (unsigned char)( rsa.MBEDTLS_PRIVATE(len) >> 8 );
215 buf[n + 1] = (unsigned char)( rsa.MBEDTLS_PRIVATE(len) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000216
Thomas Daubney140184d2021-05-18 16:04:07 +0100217 if( ( ret = mbedtls_rsa_pkcs1_sign( &rsa, NULL, NULL, MBEDTLS_MD_SHA256,
Gilles Peskine6e3187b2021-06-22 18:39:53 +0200218 32, hash, buf + n + 2 ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000219 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200220 mbedtls_printf( " failed\n ! mbedtls_rsa_pkcs1_sign returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000221 goto exit;
222 }
223
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200224 buflen = n + 2 + rsa.MBEDTLS_PRIVATE(len);
Paul Bakker5121ce52009-01-03 21:22:43 +0000225 buf2[0] = (unsigned char)( buflen >> 8 );
226 buf2[1] = (unsigned char)( buflen );
227
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200228 if( ( ret = mbedtls_net_send( &client_fd, buf2, 2 ) ) != 2 ||
229 ( ret = mbedtls_net_send( &client_fd, buf, buflen ) ) != (int) buflen )
Paul Bakker5121ce52009-01-03 21:22:43 +0000230 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200231 mbedtls_printf( " failed\n ! mbedtls_net_send returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000232 goto exit;
233 }
234
235 /*
236 * 6. Get the client's public value: Yc = G ^ Xc mod P
237 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200238 mbedtls_printf( "\n . Receiving the client's public value" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000239 fflush( stdout );
240
241 memset( buf, 0, sizeof( buf ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000242
Gilles Peskine487bbf62021-05-27 22:17:07 +0200243 n = mbedtls_dhm_get_len( &dhm );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200244 if( ( ret = mbedtls_net_recv( &client_fd, buf, n ) ) != (int) n )
Paul Bakker5121ce52009-01-03 21:22:43 +0000245 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200246 mbedtls_printf( " failed\n ! mbedtls_net_recv returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000247 goto exit;
248 }
249
Gilles Peskine487bbf62021-05-27 22:17:07 +0200250 if( ( ret = mbedtls_dhm_read_public( &dhm, buf, n ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000251 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200252 mbedtls_printf( " failed\n ! mbedtls_dhm_read_public returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000253 goto exit;
254 }
255
256 /*
257 * 7. Derive the shared secret: K = Ys ^ Xc mod P
258 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200259 mbedtls_printf( "\n . Shared secret: " );
Paul Bakker5121ce52009-01-03 21:22:43 +0000260 fflush( stdout );
261
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +0100262 if( ( ret = mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &n,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200263 mbedtls_ctr_drbg_random, &ctr_drbg ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000264 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200265 mbedtls_printf( " failed\n ! mbedtls_dhm_calc_secret returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000266 goto exit;
267 }
268
269 for( n = 0; n < 16; n++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200270 mbedtls_printf( "%02x", buf[n] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000271
272 /*
273 * 8. Setup the AES-256 encryption key
274 *
275 * This is an overly simplified example; best practice is
276 * to hash the shared secret with a random value to derive
277 * the keying material for the encryption/decryption keys
278 * and MACs.
279 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200280 mbedtls_printf( "...\n . Encrypting and sending the ciphertext" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000281 fflush( stdout );
282
Gilles Peskine7820a572021-07-07 21:08:28 +0200283 ret = mbedtls_aes_setkey_enc( &aes, buf, 256 );
284 if( ret != 0 )
285 goto exit;
Paul Bakker5121ce52009-01-03 21:22:43 +0000286 memcpy( buf, PLAINTEXT, 16 );
Gilles Peskine7820a572021-07-07 21:08:28 +0200287 ret = mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_ENCRYPT, buf, buf );
288 if( ret != 0 )
289 goto exit;
Paul Bakker5121ce52009-01-03 21:22:43 +0000290
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200291 if( ( ret = mbedtls_net_send( &client_fd, buf, 16 ) ) != 16 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000292 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200293 mbedtls_printf( " failed\n ! mbedtls_net_send returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000294 goto exit;
295 }
296
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200297 mbedtls_printf( "\n\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000298
Andres Amaya Garcia03a992c2018-04-29 19:40:45 +0100299 exit_code = MBEDTLS_EXIT_SUCCESS;
300
Paul Bakker5121ce52009-01-03 21:22:43 +0000301exit:
302
Hanno Beckerc95fad32017-08-23 06:44:30 +0100303 mbedtls_mpi_free( &N ); mbedtls_mpi_free( &P ); mbedtls_mpi_free( &Q );
304 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E );
305
Manuel Pégourié-Gonnard3d7d00a2015-06-30 15:55:03 +0200306 mbedtls_net_free( &client_fd );
307 mbedtls_net_free( &listen_fd );
Paul Bakker0c226102014-04-17 16:02:36 +0200308
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200309 mbedtls_aes_free( &aes );
310 mbedtls_rsa_free( &rsa );
311 mbedtls_dhm_free( &dhm );
312 mbedtls_ctr_drbg_free( &ctr_drbg );
313 mbedtls_entropy_free( &entropy );
Paul Bakker5121ce52009-01-03 21:22:43 +0000314
Krzysztof Stachowiak5e1b1952019-04-24 14:24:46 +0200315 mbedtls_exit( exit_code );
Paul Bakker5121ce52009-01-03 21:22:43 +0000316}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200317#endif /* MBEDTLS_AES_C && MBEDTLS_DHM_C && MBEDTLS_ENTROPY_C &&
318 MBEDTLS_NET_C && MBEDTLS_RSA_C && MBEDTLS_SHA256_C &&
319 MBEDTLS_FS_IO && MBEDTLS_CTR_DRBG_C */