blob: 0ddb85cf835eb6184f3efa31e722c9b235c8da58 [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é-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/platform.h"
Rich Evansf90016a2015-01-19 14:26:37 +000024#else
Rich Evans18b78c72015-02-11 14:06:19 +000025#include <stdio.h>
Andres Amaya Garcia03a992c2018-04-29 19:40:45 +010026#include <stdlib.h>
27#define mbedtls_printf printf
28#define mbedtls_time_t time_t
Manuel Pégourié-Gonnard3ef6a6d2018-12-10 14:31:45 +010029#define mbedtls_exit exit
Andres Amaya Garcia7d429652018-04-30 22:42:33 +010030#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS
Andres Amaya Garcia03a992c2018-04-29 19:40:45 +010031#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE
32#endif /* MBEDTLS_PLATFORM_C */
Rich Evansf90016a2015-01-19 14:26:37 +000033
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020034#if defined(MBEDTLS_AES_C) && defined(MBEDTLS_DHM_C) && \
35 defined(MBEDTLS_ENTROPY_C) && defined(MBEDTLS_NET_C) && \
36 defined(MBEDTLS_RSA_C) && defined(MBEDTLS_SHA256_C) && \
Janos Follath9fe6f922016-10-07 14:17:56 +010037 defined(MBEDTLS_FS_IO) && defined(MBEDTLS_CTR_DRBG_C) && \
38 defined(MBEDTLS_SHA1_C)
Andres AG788aa4a2016-09-14 14:32:09 +010039#include "mbedtls/net_sockets.h"
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000040#include "mbedtls/aes.h"
41#include "mbedtls/dhm.h"
42#include "mbedtls/rsa.h"
43#include "mbedtls/sha1.h"
44#include "mbedtls/entropy.h"
45#include "mbedtls/ctr_drbg.h"
Paul Bakker5121ce52009-01-03 21:22:43 +000046
Rich Evans18b78c72015-02-11 14:06:19 +000047#include <stdio.h>
48#include <string.h>
49#endif
50
Manuel Pégourié-Gonnardc0d74942015-06-23 12:30:57 +020051#define SERVER_PORT "11999"
Paul Bakker5121ce52009-01-03 21:22:43 +000052#define PLAINTEXT "==Hello there!=="
53
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020054#if !defined(MBEDTLS_AES_C) || !defined(MBEDTLS_DHM_C) || \
55 !defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_NET_C) || \
56 !defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_SHA256_C) || \
Janos Follath9fe6f922016-10-07 14:17:56 +010057 !defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_CTR_DRBG_C) || \
58 !defined(MBEDTLS_SHA1_C)
Rich Evans85b05ec2015-02-12 11:37:29 +000059int main( void )
Paul Bakker5690efc2011-05-26 13:16:06 +000060{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020061 mbedtls_printf("MBEDTLS_AES_C and/or MBEDTLS_DHM_C and/or MBEDTLS_ENTROPY_C "
62 "and/or MBEDTLS_NET_C and/or MBEDTLS_RSA_C and/or "
63 "MBEDTLS_SHA256_C and/or MBEDTLS_FS_IO and/or "
64 "MBEDTLS_CTR_DRBG_C not defined.\n");
Krzysztof Stachowiak5e1b1952019-04-24 14:24:46 +020065 mbedtls_exit( 0 );
Paul Bakker5690efc2011-05-26 13:16:06 +000066}
67#else
Simon Butcher63cb97e2018-12-06 17:43:31 +000068
Simon Butcher63cb97e2018-12-06 17:43:31 +000069
Rich Evans85b05ec2015-02-12 11:37:29 +000070int main( void )
Paul Bakker5121ce52009-01-03 21:22:43 +000071{
72 FILE *f;
73
Andres Amaya Garcia03a992c2018-04-29 19:40:45 +010074 int ret = 1;
75 int exit_code = MBEDTLS_EXIT_FAILURE;
Paul Bakker23986e52011-04-24 08:57:21 +000076 size_t n, buflen;
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +020077 mbedtls_net_context listen_fd, client_fd;
Paul Bakker5121ce52009-01-03 21:22:43 +000078
Paul Bakker520ea912012-10-24 14:17:01 +000079 unsigned char buf[2048];
Manuel Pégourié-Gonnard102a6202015-08-27 21:51:44 +020080 unsigned char hash[32];
Paul Bakker5121ce52009-01-03 21:22:43 +000081 unsigned char buf2[2];
Paul Bakkeref3f8c72013-06-24 13:01:08 +020082 const char *pers = "dh_server";
Paul Bakker5121ce52009-01-03 21:22:43 +000083
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020084 mbedtls_entropy_context entropy;
85 mbedtls_ctr_drbg_context ctr_drbg;
86 mbedtls_rsa_context rsa;
87 mbedtls_dhm_context dhm;
88 mbedtls_aes_context aes;
Paul Bakker5121ce52009-01-03 21:22:43 +000089
Hanno Beckerc95fad32017-08-23 06:44:30 +010090 mbedtls_mpi N, P, Q, D, E;
91
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +020092 mbedtls_net_init( &listen_fd );
93 mbedtls_net_init( &client_fd );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020094 mbedtls_dhm_init( &dhm );
95 mbedtls_aes_init( &aes );
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +020096 mbedtls_ctr_drbg_init( &ctr_drbg );
Paul Bakker5121ce52009-01-03 21:22:43 +000097
Hanno Beckerc95fad32017-08-23 06:44:30 +010098 mbedtls_mpi_init( &N ); mbedtls_mpi_init( &P ); mbedtls_mpi_init( &Q );
99 mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E );
100
Paul Bakker5121ce52009-01-03 21:22:43 +0000101 /*
102 * 1. Setup the RNG
103 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200104 mbedtls_printf( "\n . Seeding the random number generator" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000105 fflush( stdout );
106
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200107 mbedtls_entropy_init( &entropy );
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +0200108 if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy,
Paul Bakkeref3f8c72013-06-24 13:01:08 +0200109 (const unsigned char *) pers,
110 strlen( pers ) ) ) != 0 )
Paul Bakker508ad5a2011-12-04 17:09:26 +0000111 {
Manuel Pégourié-Gonnardec160c02015-04-28 22:52:30 +0200112 mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned %d\n", ret );
Paul Bakker508ad5a2011-12-04 17:09:26 +0000113 goto exit;
114 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000115
116 /*
117 * 2a. Read the server's private RSA key
118 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200119 mbedtls_printf( "\n . Reading private key from rsa_priv.txt" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000120 fflush( stdout );
121
122 if( ( f = fopen( "rsa_priv.txt", "rb" ) ) == NULL )
123 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200124 mbedtls_printf( " failed\n ! Could not open rsa_priv.txt\n" \
Paul Bakker5121ce52009-01-03 21:22:43 +0000125 " ! Please run rsa_genkey first\n\n" );
126 goto exit;
127 }
128
Ronald Cronc1905a12021-06-05 11:11:14 +0200129 mbedtls_rsa_init( &rsa );
Paul Bakker5121ce52009-01-03 21:22:43 +0000130
Hanno Beckerc95fad32017-08-23 06:44:30 +0100131 if( ( ret = mbedtls_mpi_read_file( &N , 16, f ) ) != 0 ||
132 ( ret = mbedtls_mpi_read_file( &E , 16, f ) ) != 0 ||
133 ( ret = mbedtls_mpi_read_file( &D , 16, f ) ) != 0 ||
134 ( ret = mbedtls_mpi_read_file( &P , 16, f ) ) != 0 ||
135 ( ret = mbedtls_mpi_read_file( &Q , 16, f ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000136 {
Hanno Beckerc95fad32017-08-23 06:44:30 +0100137 mbedtls_printf( " failed\n ! mbedtls_mpi_read_file returned %d\n\n",
138 ret );
Janos Follath98e28a72016-05-31 14:03:54 +0100139 fclose( f );
Paul Bakker5121ce52009-01-03 21:22:43 +0000140 goto exit;
141 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000142 fclose( f );
143
Hanno Beckerc95fad32017-08-23 06:44:30 +0100144 if( ( ret = mbedtls_rsa_import( &rsa, &N, &P, &Q, &D, &E ) ) != 0 )
145 {
146 mbedtls_printf( " failed\n ! mbedtls_rsa_import returned %d\n\n",
147 ret );
148 goto exit;
149 }
150
Hanno Becker7f25f852017-10-10 16:56:22 +0100151 if( ( ret = mbedtls_rsa_complete( &rsa ) ) != 0 )
Hanno Beckerc95fad32017-08-23 06:44:30 +0100152 {
153 mbedtls_printf( " failed\n ! mbedtls_rsa_complete returned %d\n\n",
154 ret );
155 goto exit;
156 }
157
Paul Bakker5121ce52009-01-03 21:22:43 +0000158 /*
159 * 2b. Get the DHM modulus and generator
160 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200161 mbedtls_printf( "\n . Reading DH parameters from dh_prime.txt" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000162 fflush( stdout );
163
164 if( ( f = fopen( "dh_prime.txt", "rb" ) ) == NULL )
165 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200166 mbedtls_printf( " failed\n ! Could not open dh_prime.txt\n" \
Paul Bakker5121ce52009-01-03 21:22:43 +0000167 " ! Please run dh_genprime first\n\n" );
168 goto exit;
169 }
170
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200171 if( mbedtls_mpi_read_file( &dhm.MBEDTLS_PRIVATE(P), 16, f ) != 0 ||
172 mbedtls_mpi_read_file( &dhm.MBEDTLS_PRIVATE(G), 16, f ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000173 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200174 mbedtls_printf( " failed\n ! Invalid DH parameter file\n\n" );
Janos Follath98e28a72016-05-31 14:03:54 +0100175 fclose( f );
Paul Bakker5121ce52009-01-03 21:22:43 +0000176 goto exit;
177 }
178
179 fclose( f );
180
181 /*
182 * 3. Wait for a client to connect
183 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200184 mbedtls_printf( "\n . Waiting for a remote connection" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000185 fflush( stdout );
186
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200187 if( ( ret = mbedtls_net_bind( &listen_fd, NULL, SERVER_PORT, MBEDTLS_NET_PROTO_TCP ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000188 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200189 mbedtls_printf( " failed\n ! mbedtls_net_bind returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000190 goto exit;
191 }
192
Manuel Pégourié-Gonnard5db64322015-06-30 15:40:39 +0200193 if( ( ret = mbedtls_net_accept( &listen_fd, &client_fd,
Manuel Pégourié-Gonnard0b104b02015-05-14 21:52:40 +0200194 NULL, 0, NULL ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000195 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200196 mbedtls_printf( " failed\n ! mbedtls_net_accept returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000197 goto exit;
198 }
199
200 /*
201 * 4. Setup the DH parameters (P,G,Ys)
202 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200203 mbedtls_printf( "\n . Sending the server's DH parameters" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000204 fflush( stdout );
205
206 memset( buf, 0, sizeof( buf ) );
207
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200208 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 +0200209 mbedtls_ctr_drbg_random, &ctr_drbg ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000210 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200211 mbedtls_printf( " failed\n ! mbedtls_dhm_make_params returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000212 goto exit;
213 }
214
215 /*
216 * 5. Sign the parameters and send them
217 */
TRodziewicz26371e42021-06-08 16:45:41 +0200218 if( ( ret = mbedtls_sha1( buf, n, hash ) ) != 0 )
Andres Amaya Garcia1ff60f42017-06-28 13:26:36 +0100219 {
TRodziewicz26371e42021-06-08 16:45:41 +0200220 mbedtls_printf( " failed\n ! mbedtls_sha1 returned %d\n\n", ret );
Andres Amaya Garcia1ff60f42017-06-28 13:26:36 +0100221 goto exit;
222 }
Paul Bakker5121ce52009-01-03 21:22:43 +0000223
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200224 buf[n ] = (unsigned char)( rsa.MBEDTLS_PRIVATE(len) >> 8 );
225 buf[n + 1] = (unsigned char)( rsa.MBEDTLS_PRIVATE(len) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000226
Thomas Daubney140184d2021-05-18 16:04:07 +0100227 if( ( ret = mbedtls_rsa_pkcs1_sign( &rsa, NULL, NULL, MBEDTLS_MD_SHA256,
Gilles Peskine6e3187b2021-06-22 18:39:53 +0200228 32, hash, buf + n + 2 ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000229 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200230 mbedtls_printf( " failed\n ! mbedtls_rsa_pkcs1_sign returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000231 goto exit;
232 }
233
Mateusz Starzyk5dd4f6e2021-05-19 19:35:35 +0200234 buflen = n + 2 + rsa.MBEDTLS_PRIVATE(len);
Paul Bakker5121ce52009-01-03 21:22:43 +0000235 buf2[0] = (unsigned char)( buflen >> 8 );
236 buf2[1] = (unsigned char)( buflen );
237
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200238 if( ( ret = mbedtls_net_send( &client_fd, buf2, 2 ) ) != 2 ||
239 ( ret = mbedtls_net_send( &client_fd, buf, buflen ) ) != (int) buflen )
Paul Bakker5121ce52009-01-03 21:22:43 +0000240 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200241 mbedtls_printf( " failed\n ! mbedtls_net_send returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000242 goto exit;
243 }
244
245 /*
246 * 6. Get the client's public value: Yc = G ^ Xc mod P
247 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200248 mbedtls_printf( "\n . Receiving the client's public value" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000249 fflush( stdout );
250
251 memset( buf, 0, sizeof( buf ) );
Paul Bakker5121ce52009-01-03 21:22:43 +0000252
Gilles Peskine487bbf62021-05-27 22:17:07 +0200253 n = mbedtls_dhm_get_len( &dhm );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200254 if( ( ret = mbedtls_net_recv( &client_fd, buf, n ) ) != (int) n )
Paul Bakker5121ce52009-01-03 21:22:43 +0000255 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200256 mbedtls_printf( " failed\n ! mbedtls_net_recv returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000257 goto exit;
258 }
259
Gilles Peskine487bbf62021-05-27 22:17:07 +0200260 if( ( ret = mbedtls_dhm_read_public( &dhm, buf, n ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000261 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200262 mbedtls_printf( " failed\n ! mbedtls_dhm_read_public returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000263 goto exit;
264 }
265
266 /*
267 * 7. Derive the shared secret: K = Ys ^ Xc mod P
268 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200269 mbedtls_printf( "\n . Shared secret: " );
Paul Bakker5121ce52009-01-03 21:22:43 +0000270 fflush( stdout );
271
Manuel Pégourié-Gonnard33352052015-06-02 16:17:08 +0100272 if( ( ret = mbedtls_dhm_calc_secret( &dhm, buf, sizeof( buf ), &n,
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200273 mbedtls_ctr_drbg_random, &ctr_drbg ) ) != 0 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000274 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200275 mbedtls_printf( " failed\n ! mbedtls_dhm_calc_secret returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000276 goto exit;
277 }
278
279 for( n = 0; n < 16; n++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200280 mbedtls_printf( "%02x", buf[n] );
Paul Bakker5121ce52009-01-03 21:22:43 +0000281
282 /*
283 * 8. Setup the AES-256 encryption key
284 *
285 * This is an overly simplified example; best practice is
286 * to hash the shared secret with a random value to derive
287 * the keying material for the encryption/decryption keys
288 * and MACs.
289 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200290 mbedtls_printf( "...\n . Encrypting and sending the ciphertext" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000291 fflush( stdout );
292
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200293 mbedtls_aes_setkey_enc( &aes, buf, 256 );
Paul Bakker5121ce52009-01-03 21:22:43 +0000294 memcpy( buf, PLAINTEXT, 16 );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200295 mbedtls_aes_crypt_ecb( &aes, MBEDTLS_AES_ENCRYPT, buf, buf );
Paul Bakker5121ce52009-01-03 21:22:43 +0000296
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200297 if( ( ret = mbedtls_net_send( &client_fd, buf, 16 ) ) != 16 )
Paul Bakker5121ce52009-01-03 21:22:43 +0000298 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200299 mbedtls_printf( " failed\n ! mbedtls_net_send returned %d\n\n", ret );
Paul Bakker5121ce52009-01-03 21:22:43 +0000300 goto exit;
301 }
302
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200303 mbedtls_printf( "\n\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000304
Andres Amaya Garcia03a992c2018-04-29 19:40:45 +0100305 exit_code = MBEDTLS_EXIT_SUCCESS;
306
Paul Bakker5121ce52009-01-03 21:22:43 +0000307exit:
308
Hanno Beckerc95fad32017-08-23 06:44:30 +0100309 mbedtls_mpi_free( &N ); mbedtls_mpi_free( &P ); mbedtls_mpi_free( &Q );
310 mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E );
311
Manuel Pégourié-Gonnard3d7d00a2015-06-30 15:55:03 +0200312 mbedtls_net_free( &client_fd );
313 mbedtls_net_free( &listen_fd );
Paul Bakker0c226102014-04-17 16:02:36 +0200314
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200315 mbedtls_aes_free( &aes );
316 mbedtls_rsa_free( &rsa );
317 mbedtls_dhm_free( &dhm );
318 mbedtls_ctr_drbg_free( &ctr_drbg );
319 mbedtls_entropy_free( &entropy );
Paul Bakker5121ce52009-01-03 21:22:43 +0000320
Paul Bakkercce9d772011-11-18 14:26:47 +0000321#if defined(_WIN32)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200322 mbedtls_printf( " + Press Enter to exit this program.\n" );
Paul Bakker5121ce52009-01-03 21:22:43 +0000323 fflush( stdout ); getchar();
324#endif
325
Krzysztof Stachowiak5e1b1952019-04-24 14:24:46 +0200326 mbedtls_exit( exit_code );
Paul Bakker5121ce52009-01-03 21:22:43 +0000327}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200328#endif /* MBEDTLS_AES_C && MBEDTLS_DHM_C && MBEDTLS_ENTROPY_C &&
329 MBEDTLS_NET_C && MBEDTLS_RSA_C && MBEDTLS_SHA256_C &&
330 MBEDTLS_FS_IO && MBEDTLS_CTR_DRBG_C */