2009-01-03 22:22:43 +01:00
|
|
|
/*
|
|
|
|
* Diffie-Hellman-Merkle key exchange (server side)
|
|
|
|
*
|
2015-01-23 10:45:19 +01:00
|
|
|
* Copyright (C) 2006-2011, ARM Limited, All Rights Reserved
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2015-01-28 18:12:07 +01:00
|
|
|
* This file is part of mbed TLS (https://polarssl.org)
|
2010-07-18 22:36:00 +02:00
|
|
|
*
|
2009-01-03 22:22:43 +01:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2013-09-20 13:30:43 +02:00
|
|
|
#include "polarssl/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
|
|
|
#include POLARSSL_CONFIG_FILE
|
|
|
|
#endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
#if defined(POLARSSL_PLATFORM_C)
|
|
|
|
#include "polarssl/platform.h"
|
|
|
|
#else
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
2015-01-19 15:26:37 +01:00
|
|
|
#define polarssl_printf printf
|
|
|
|
#endif
|
|
|
|
|
2015-02-13 15:09:44 +01:00
|
|
|
#if defined(POLARSSL_AES_C) && defined(POLARSSL_DHM_C) && \
|
|
|
|
defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_NET_C) && \
|
|
|
|
defined(POLARSSL_RSA_C) && defined(POLARSSL_SHA256_C) && \
|
2015-02-11 15:06:19 +01:00
|
|
|
defined(POLARSSL_FS_IO) && defined(POLARSSL_CTR_DRBG_C)
|
2009-01-03 22:51:57 +01:00
|
|
|
#include "polarssl/net.h"
|
|
|
|
#include "polarssl/aes.h"
|
|
|
|
#include "polarssl/dhm.h"
|
|
|
|
#include "polarssl/rsa.h"
|
|
|
|
#include "polarssl/sha1.h"
|
2011-12-04 18:09:26 +01:00
|
|
|
#include "polarssl/entropy.h"
|
|
|
|
#include "polarssl/ctr_drbg.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2015-02-11 15:06:19 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
#define SERVER_PORT 11999
|
|
|
|
#define PLAINTEXT "==Hello there!=="
|
|
|
|
|
2011-05-26 15:16:06 +02:00
|
|
|
#if !defined(POLARSSL_AES_C) || !defined(POLARSSL_DHM_C) || \
|
2011-12-04 18:09:26 +01:00
|
|
|
!defined(POLARSSL_ENTROPY_C) || !defined(POLARSSL_NET_C) || \
|
2015-02-10 11:47:03 +01:00
|
|
|
!defined(POLARSSL_RSA_C) || !defined(POLARSSL_SHA256_C) || \
|
2011-12-04 18:09:26 +01:00
|
|
|
!defined(POLARSSL_FS_IO) || !defined(POLARSSL_CTR_DRBG_C)
|
2015-02-12 12:37:29 +01:00
|
|
|
int main( void )
|
2011-05-26 15:16:06 +02:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf("POLARSSL_AES_C and/or POLARSSL_DHM_C and/or POLARSSL_ENTROPY_C "
|
2011-05-26 15:16:06 +02:00
|
|
|
"and/or POLARSSL_NET_C and/or POLARSSL_RSA_C and/or "
|
2015-02-10 11:47:03 +01:00
|
|
|
"POLARSSL_SHA256_C and/or POLARSSL_FS_IO and/or "
|
2011-12-04 18:09:26 +01:00
|
|
|
"POLARSSL_CTR_DBRG_C not defined.\n");
|
2011-05-26 15:16:06 +02:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
#else
|
2015-02-12 12:37:29 +01:00
|
|
|
int main( void )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
int ret;
|
|
|
|
size_t n, buflen;
|
2009-01-03 22:22:43 +01:00
|
|
|
int listen_fd = -1;
|
|
|
|
int client_fd = -1;
|
|
|
|
|
2012-10-24 16:17:01 +02:00
|
|
|
unsigned char buf[2048];
|
2009-01-03 22:22:43 +01:00
|
|
|
unsigned char hash[20];
|
|
|
|
unsigned char buf2[2];
|
2013-06-24 13:01:08 +02:00
|
|
|
const char *pers = "dh_server";
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2011-12-04 18:09:26 +01:00
|
|
|
entropy_context entropy;
|
|
|
|
ctr_drbg_context ctr_drbg;
|
2009-01-03 22:22:43 +01:00
|
|
|
rsa_context rsa;
|
|
|
|
dhm_context dhm;
|
|
|
|
aes_context aes;
|
|
|
|
|
|
|
|
memset( &rsa, 0, sizeof( rsa ) );
|
2014-06-18 16:44:11 +02:00
|
|
|
dhm_init( &dhm );
|
2014-06-18 11:16:11 +02:00
|
|
|
aes_init( &aes );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 1. Setup the RNG
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Seeding the random number generator" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
2011-12-04 18:09:26 +01:00
|
|
|
entropy_init( &entropy );
|
|
|
|
if( ( ret = ctr_drbg_init( &ctr_drbg, entropy_func, &entropy,
|
2013-06-24 13:01:08 +02:00
|
|
|
(const unsigned char *) pers,
|
|
|
|
strlen( pers ) ) ) != 0 )
|
2011-12-04 18:09:26 +01:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! ctr_drbg_init returned %d\n", ret );
|
2011-12-04 18:09:26 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 2a. Read the server's private RSA key
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Reading private key from rsa_priv.txt" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
if( ( f = fopen( "rsa_priv.txt", "rb" ) ) == NULL )
|
|
|
|
{
|
|
|
|
ret = 1;
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! Could not open rsa_priv.txt\n" \
|
2009-01-03 22:22:43 +01:00
|
|
|
" ! Please run rsa_genkey first\n\n" );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2010-08-16 13:56:45 +02:00
|
|
|
rsa_init( &rsa, RSA_PKCS_V15, 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
if( ( ret = mpi_read_file( &rsa.N , 16, f ) ) != 0 ||
|
|
|
|
( ret = mpi_read_file( &rsa.E , 16, f ) ) != 0 ||
|
|
|
|
( ret = mpi_read_file( &rsa.D , 16, f ) ) != 0 ||
|
|
|
|
( ret = mpi_read_file( &rsa.P , 16, f ) ) != 0 ||
|
|
|
|
( ret = mpi_read_file( &rsa.Q , 16, f ) ) != 0 ||
|
|
|
|
( ret = mpi_read_file( &rsa.DP, 16, f ) ) != 0 ||
|
|
|
|
( ret = mpi_read_file( &rsa.DQ, 16, f ) ) != 0 ||
|
|
|
|
( ret = mpi_read_file( &rsa.QP, 16, f ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! mpi_read_file returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
rsa.len = ( mpi_msb( &rsa.N ) + 7 ) >> 3;
|
2015-02-13 15:12:07 +01:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
fclose( f );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 2b. Get the DHM modulus and generator
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Reading DH parameters from dh_prime.txt" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
if( ( f = fopen( "dh_prime.txt", "rb" ) ) == NULL )
|
|
|
|
{
|
|
|
|
ret = 1;
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! Could not open dh_prime.txt\n" \
|
2009-01-03 22:22:43 +01:00
|
|
|
" ! Please run dh_genprime first\n\n" );
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( mpi_read_file( &dhm.P, 16, f ) != 0 ||
|
|
|
|
mpi_read_file( &dhm.G, 16, f ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! Invalid DH parameter file\n\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose( f );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 3. Wait for a client to connect
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Waiting for a remote connection" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
if( ( ret = net_bind( &listen_fd, NULL, SERVER_PORT ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! net_bind returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( ret = net_accept( listen_fd, &client_fd, NULL ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! net_accept returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 4. Setup the DH parameters (P,G,Ys)
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Sending the server's DH parameters" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
memset( buf, 0, sizeof( buf ) );
|
|
|
|
|
2013-11-30 15:14:38 +01:00
|
|
|
if( ( ret = dhm_make_params( &dhm, (int) mpi_size( &dhm.P ), buf, &n,
|
2011-12-04 18:09:26 +01:00
|
|
|
ctr_drbg_random, &ctr_drbg ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! dhm_make_params returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 5. Sign the parameters and send them
|
|
|
|
*/
|
|
|
|
sha1( buf, n, hash );
|
|
|
|
|
|
|
|
buf[n ] = (unsigned char)( rsa.len >> 8 );
|
|
|
|
buf[n + 1] = (unsigned char)( rsa.len );
|
|
|
|
|
2015-02-10 11:47:03 +01:00
|
|
|
if( ( ret = rsa_pkcs1_sign( &rsa, NULL, NULL, RSA_PRIVATE, POLARSSL_MD_SHA256,
|
2009-01-03 22:22:43 +01:00
|
|
|
0, hash, buf + n + 2 ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! rsa_pkcs1_sign returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
buflen = n + 2 + rsa.len;
|
|
|
|
buf2[0] = (unsigned char)( buflen >> 8 );
|
|
|
|
buf2[1] = (unsigned char)( buflen );
|
|
|
|
|
|
|
|
if( ( ret = net_send( &client_fd, buf2, 2 ) ) != 2 ||
|
2011-04-24 10:57:21 +02:00
|
|
|
( ret = net_send( &client_fd, buf, buflen ) ) != (int) buflen )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! net_send returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 6. Get the client's public value: Yc = G ^ Xc mod P
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Receiving the client's public value" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
memset( buf, 0, sizeof( buf ) );
|
|
|
|
n = dhm.len;
|
|
|
|
|
2011-04-24 10:57:21 +02:00
|
|
|
if( ( ret = net_recv( &client_fd, buf, n ) ) != (int) n )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! net_recv returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ( ret = dhm_read_public( &dhm, buf, dhm.len ) ) != 0 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! dhm_read_public returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 7. Derive the shared secret: K = Ys ^ Xc mod P
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n . Shared secret: " );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
2013-09-17 11:34:11 +02:00
|
|
|
if( ( ret = dhm_calc_secret( &dhm, buf, &n,
|
|
|
|
ctr_drbg_random, &ctr_drbg ) ) != 0 )
|
2009-01-03 22:22:43 +01:00
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! dhm_calc_secret returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( n = 0; n < 16; n++ )
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "%02x", buf[n] );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 8. Setup the AES-256 encryption key
|
|
|
|
*
|
|
|
|
* This is an overly simplified example; best practice is
|
|
|
|
* to hash the shared secret with a random value to derive
|
|
|
|
* the keying material for the encryption/decryption keys
|
|
|
|
* and MACs.
|
|
|
|
*/
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "...\n . Encrypting and sending the ciphertext" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout );
|
|
|
|
|
|
|
|
aes_setkey_enc( &aes, buf, 256 );
|
|
|
|
memcpy( buf, PLAINTEXT, 16 );
|
|
|
|
aes_crypt_ecb( &aes, AES_ENCRYPT, buf, buf );
|
|
|
|
|
|
|
|
if( ( ret = net_send( &client_fd, buf, 16 ) ) != 16 )
|
|
|
|
{
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " failed\n ! net_send returned %d\n\n", ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( "\n\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
exit:
|
|
|
|
|
2014-04-17 16:02:36 +02:00
|
|
|
if( client_fd != -1 )
|
|
|
|
net_close( client_fd );
|
|
|
|
|
2014-06-18 11:16:11 +02:00
|
|
|
aes_free( &aes );
|
2009-01-03 22:22:43 +01:00
|
|
|
rsa_free( &rsa );
|
|
|
|
dhm_free( &dhm );
|
2014-06-18 16:44:11 +02:00
|
|
|
ctr_drbg_free( &ctr_drbg );
|
2013-09-28 15:23:03 +02:00
|
|
|
entropy_free( &entropy );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2011-11-18 15:26:47 +01:00
|
|
|
#if defined(_WIN32)
|
2015-01-19 15:26:37 +01:00
|
|
|
polarssl_printf( " + Press Enter to exit this program.\n" );
|
2009-01-03 22:22:43 +01:00
|
|
|
fflush( stdout ); getchar();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
2011-12-04 18:09:26 +01:00
|
|
|
#endif /* POLARSSL_AES_C && POLARSSL_DHM_C && POLARSSL_ENTROPY_C &&
|
2015-02-10 11:47:03 +01:00
|
|
|
POLARSSL_NET_C && POLARSSL_RSA_C && POLARSSL_SHA256_C &&
|
2011-12-04 18:09:26 +01:00
|
|
|
POLARSSL_FS_IO && POLARSSL_CTR_DRBG_C */
|