2009-01-03 22:22:43 +01:00
|
|
|
|
/*
|
|
|
|
|
* Diffie-Hellman-Merkle key exchange
|
|
|
|
|
*
|
2014-02-01 22:50:26 +01:00
|
|
|
|
* Copyright (C) 2006-2014, Brainspark B.V.
|
2010-07-18 22:36:00 +02:00
|
|
|
|
*
|
|
|
|
|
* This file is part of PolarSSL (http://www.polarssl.org)
|
2010-07-18 12:13:04 +02:00
|
|
|
|
* Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
|
2010-07-18 22:36:00 +02:00
|
|
|
|
*
|
2009-07-28 19:23:11 +02:00
|
|
|
|
* All rights reserved.
|
2009-01-04 17:27:10 +01: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.
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
* Reference:
|
|
|
|
|
*
|
|
|
|
|
* http://www.cacr.math.uwaterloo.ca/hac/ (chapter 12)
|
|
|
|
|
*/
|
|
|
|
|
|
2014-04-29 12:39:06 +02:00
|
|
|
|
#if !defined(POLARSSL_CONFIG_FILE)
|
2009-01-03 22:51:57 +01: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
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
|
#if defined(POLARSSL_DHM_C)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
|
#include "polarssl/dhm.h"
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2013-09-15 20:43:33 +02:00
|
|
|
|
#if defined(POLARSSL_PEM_PARSE_C)
|
2013-09-15 17:43:54 +02:00
|
|
|
|
#include "polarssl/pem.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(POLARSSL_ASN1_PARSE_C)
|
|
|
|
|
#include "polarssl/asn1.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-02-01 22:50:26 +01:00
|
|
|
|
#if defined(POLARSSL_PLATFORM_C)
|
|
|
|
|
#include "polarssl/platform.h"
|
2013-09-15 17:43:54 +02:00
|
|
|
|
#else
|
|
|
|
|
#include <stdlib.h>
|
2014-02-01 22:50:26 +01:00
|
|
|
|
#define polarssl_printf printf
|
2013-09-15 17:43:54 +02:00
|
|
|
|
#define polarssl_malloc malloc
|
|
|
|
|
#define polarssl_free free
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-06-13 17:20:13 +02:00
|
|
|
|
/* Implementation that should never be optimized out by the compiler */
|
|
|
|
|
static void polarssl_zeroize( void *v, size_t n ) {
|
|
|
|
|
volatile unsigned char *p = v; while( n-- ) *p++ = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
/*
|
|
|
|
|
* helper to validate the mpi size and import it
|
|
|
|
|
*/
|
|
|
|
|
static int dhm_read_bignum( mpi *X,
|
|
|
|
|
unsigned char **p,
|
2010-03-16 22:09:09 +01:00
|
|
|
|
const unsigned char *end )
|
2009-01-03 22:22:43 +01:00
|
|
|
|
{
|
|
|
|
|
int ret, n;
|
|
|
|
|
|
|
|
|
|
if( end - *p < 2 )
|
2009-01-03 22:51:57 +01:00
|
|
|
|
return( POLARSSL_ERR_DHM_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
n = ( (*p)[0] << 8 ) | (*p)[1];
|
|
|
|
|
(*p) += 2;
|
|
|
|
|
|
|
|
|
|
if( (int)( end - *p ) < n )
|
2009-01-03 22:51:57 +01:00
|
|
|
|
return( POLARSSL_ERR_DHM_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
if( ( ret = mpi_read_binary( X, *p, n ) ) != 0 )
|
2011-05-09 18:17:09 +02:00
|
|
|
|
return( POLARSSL_ERR_DHM_READ_PARAMS_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
(*p) += n;
|
|
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-20 17:37:30 +01:00
|
|
|
|
/*
|
2012-04-26 20:59:59 +02:00
|
|
|
|
* Verify sanity of parameter with regards to P
|
2011-02-28 22:20:02 +01:00
|
|
|
|
*
|
2012-04-26 20:59:59 +02:00
|
|
|
|
* Parameter should be: 2 <= public_param <= P - 2
|
2011-02-28 22:20:02 +01:00
|
|
|
|
*
|
|
|
|
|
* For more information on the attack, see:
|
|
|
|
|
* http://www.cl.cam.ac.uk/~rja14/Papers/psandqs.pdf
|
|
|
|
|
* http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2005-2643
|
2011-02-20 17:37:30 +01:00
|
|
|
|
*/
|
2012-04-26 20:59:59 +02:00
|
|
|
|
static int dhm_check_range( const mpi *param, const mpi *P )
|
2011-02-20 17:37:30 +01:00
|
|
|
|
{
|
2011-02-28 22:20:02 +01:00
|
|
|
|
mpi L, U;
|
|
|
|
|
int ret = POLARSSL_ERR_DHM_BAD_INPUT_DATA;
|
2011-02-20 17:37:30 +01:00
|
|
|
|
|
2011-05-05 13:49:20 +02:00
|
|
|
|
mpi_init( &L ); mpi_init( &U );
|
2014-04-17 12:42:41 +02:00
|
|
|
|
|
|
|
|
|
MPI_CHK( mpi_lset( &L, 2 ) );
|
|
|
|
|
MPI_CHK( mpi_sub_int( &U, P, 2 ) );
|
2011-02-20 17:37:30 +01:00
|
|
|
|
|
2012-04-26 20:59:59 +02:00
|
|
|
|
if( mpi_cmp_mpi( param, &L ) >= 0 &&
|
|
|
|
|
mpi_cmp_mpi( param, &U ) <= 0 )
|
2011-02-20 17:37:30 +01:00
|
|
|
|
{
|
2011-02-28 22:20:02 +01:00
|
|
|
|
ret = 0;
|
2011-02-20 17:37:30 +01:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-17 12:42:41 +02:00
|
|
|
|
cleanup:
|
2011-05-05 13:49:20 +02:00
|
|
|
|
mpi_free( &L ); mpi_free( &U );
|
2011-02-28 22:20:02 +01:00
|
|
|
|
return( ret );
|
2011-02-20 17:37:30 +01:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-20 13:32:38 +02:00
|
|
|
|
void dhm_init( dhm_context *ctx )
|
|
|
|
|
{
|
|
|
|
|
memset( ctx, 0, sizeof( dhm_context ) );
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
/*
|
|
|
|
|
* Parse the ServerKeyExchange parameters
|
|
|
|
|
*/
|
|
|
|
|
int dhm_read_params( dhm_context *ctx,
|
|
|
|
|
unsigned char **p,
|
2010-03-16 22:09:09 +01:00
|
|
|
|
const unsigned char *end )
|
2009-01-03 22:22:43 +01:00
|
|
|
|
{
|
2012-04-16 11:43:49 +02:00
|
|
|
|
int ret;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
if( ( ret = dhm_read_bignum( &ctx->P, p, end ) ) != 0 ||
|
|
|
|
|
( ret = dhm_read_bignum( &ctx->G, p, end ) ) != 0 ||
|
|
|
|
|
( ret = dhm_read_bignum( &ctx->GY, p, end ) ) != 0 )
|
|
|
|
|
return( ret );
|
|
|
|
|
|
2011-02-28 22:20:02 +01:00
|
|
|
|
if( ( ret = dhm_check_range( &ctx->GY, &ctx->P ) ) != 0 )
|
|
|
|
|
return( ret );
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
ctx->len = mpi_size( &ctx->P );
|
|
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Setup and write the ServerKeyExchange parameters
|
|
|
|
|
*/
|
|
|
|
|
int dhm_make_params( dhm_context *ctx, int x_size,
|
2011-04-24 10:57:21 +02:00
|
|
|
|
unsigned char *output, size_t *olen,
|
2011-11-27 22:07:34 +01:00
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
|
void *p_rng )
|
2009-01-03 22:22:43 +01:00
|
|
|
|
{
|
2012-04-26 20:59:59 +02:00
|
|
|
|
int ret, count = 0;
|
2011-04-24 10:57:21 +02:00
|
|
|
|
size_t n1, n2, n3;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
2012-09-16 17:07:49 +02:00
|
|
|
|
if( mpi_cmp_int( &ctx->P, 0 ) == 0 )
|
|
|
|
|
return( POLARSSL_ERR_DHM_BAD_INPUT_DATA );
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
/*
|
2010-07-18 11:45:05 +02:00
|
|
|
|
* Generate X as large as possible ( < P )
|
2009-01-03 22:22:43 +01:00
|
|
|
|
*/
|
2012-04-26 20:59:59 +02:00
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
mpi_fill_random( &ctx->X, x_size, f_rng, p_rng );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2012-04-26 20:59:59 +02:00
|
|
|
|
while( mpi_cmp_mpi( &ctx->X, &ctx->P ) >= 0 )
|
2014-04-17 12:42:41 +02:00
|
|
|
|
MPI_CHK( mpi_shift_r( &ctx->X, 1 ) );
|
2012-04-26 20:59:59 +02:00
|
|
|
|
|
|
|
|
|
if( count++ > 10 )
|
|
|
|
|
return( POLARSSL_ERR_DHM_MAKE_PARAMS_FAILED );
|
|
|
|
|
}
|
|
|
|
|
while( dhm_check_range( &ctx->X, &ctx->P ) != 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2010-07-18 11:45:05 +02:00
|
|
|
|
/*
|
|
|
|
|
* Calculate GX = G^X mod P
|
|
|
|
|
*/
|
2009-01-03 22:22:43 +01:00
|
|
|
|
MPI_CHK( mpi_exp_mod( &ctx->GX, &ctx->G, &ctx->X,
|
|
|
|
|
&ctx->P , &ctx->RP ) );
|
|
|
|
|
|
2011-02-28 22:20:02 +01:00
|
|
|
|
if( ( ret = dhm_check_range( &ctx->GX, &ctx->P ) ) != 0 )
|
2011-02-20 17:37:30 +01:00
|
|
|
|
return( ret );
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
/*
|
|
|
|
|
* export P, G, GX
|
|
|
|
|
*/
|
|
|
|
|
#define DHM_MPI_EXPORT(X,n) \
|
|
|
|
|
MPI_CHK( mpi_write_binary( X, p + 2, n ) ); \
|
|
|
|
|
*p++ = (unsigned char)( n >> 8 ); \
|
|
|
|
|
*p++ = (unsigned char)( n ); p += n;
|
|
|
|
|
|
|
|
|
|
n1 = mpi_size( &ctx->P );
|
|
|
|
|
n2 = mpi_size( &ctx->G );
|
|
|
|
|
n3 = mpi_size( &ctx->GX );
|
|
|
|
|
|
|
|
|
|
p = output;
|
|
|
|
|
DHM_MPI_EXPORT( &ctx->P , n1 );
|
|
|
|
|
DHM_MPI_EXPORT( &ctx->G , n2 );
|
|
|
|
|
DHM_MPI_EXPORT( &ctx->GX, n3 );
|
|
|
|
|
|
|
|
|
|
*olen = p - output;
|
|
|
|
|
|
|
|
|
|
ctx->len = n1;
|
|
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
|
|
|
|
|
if( ret != 0 )
|
2011-05-09 18:17:09 +02:00
|
|
|
|
return( POLARSSL_ERR_DHM_MAKE_PARAMS_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Import the peer's public value G^Y
|
|
|
|
|
*/
|
|
|
|
|
int dhm_read_public( dhm_context *ctx,
|
2011-04-24 10:57:21 +02:00
|
|
|
|
const unsigned char *input, size_t ilen )
|
2009-01-03 22:22:43 +01:00
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if( ctx == NULL || ilen < 1 || ilen > ctx->len )
|
2009-01-03 22:51:57 +01:00
|
|
|
|
return( POLARSSL_ERR_DHM_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
if( ( ret = mpi_read_binary( &ctx->GY, input, ilen ) ) != 0 )
|
2011-05-09 18:17:09 +02:00
|
|
|
|
return( POLARSSL_ERR_DHM_READ_PUBLIC_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Create own private value X and export G^X
|
|
|
|
|
*/
|
|
|
|
|
int dhm_make_public( dhm_context *ctx, int x_size,
|
2011-04-24 10:57:21 +02:00
|
|
|
|
unsigned char *output, size_t olen,
|
2011-11-27 22:07:34 +01:00
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
|
void *p_rng )
|
2009-01-03 22:22:43 +01:00
|
|
|
|
{
|
2012-04-26 20:59:59 +02:00
|
|
|
|
int ret, count = 0;
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
if( ctx == NULL || olen < 1 || olen > ctx->len )
|
2009-01-03 22:51:57 +01:00
|
|
|
|
return( POLARSSL_ERR_DHM_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2012-09-16 17:07:49 +02:00
|
|
|
|
if( mpi_cmp_int( &ctx->P, 0 ) == 0 )
|
|
|
|
|
return( POLARSSL_ERR_DHM_BAD_INPUT_DATA );
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
/*
|
|
|
|
|
* generate X and calculate GX = G^X mod P
|
|
|
|
|
*/
|
2012-04-26 20:59:59 +02:00
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
mpi_fill_random( &ctx->X, x_size, f_rng, p_rng );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2012-04-26 20:59:59 +02:00
|
|
|
|
while( mpi_cmp_mpi( &ctx->X, &ctx->P ) >= 0 )
|
2014-04-17 12:42:41 +02:00
|
|
|
|
MPI_CHK( mpi_shift_r( &ctx->X, 1 ) );
|
2012-04-26 20:59:59 +02:00
|
|
|
|
|
|
|
|
|
if( count++ > 10 )
|
|
|
|
|
return( POLARSSL_ERR_DHM_MAKE_PUBLIC_FAILED );
|
|
|
|
|
}
|
|
|
|
|
while( dhm_check_range( &ctx->X, &ctx->P ) != 0 );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
MPI_CHK( mpi_exp_mod( &ctx->GX, &ctx->G, &ctx->X,
|
|
|
|
|
&ctx->P , &ctx->RP ) );
|
|
|
|
|
|
2011-02-28 22:20:02 +01:00
|
|
|
|
if( ( ret = dhm_check_range( &ctx->GX, &ctx->P ) ) != 0 )
|
|
|
|
|
return( ret );
|
2011-02-20 17:37:30 +01:00
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
MPI_CHK( mpi_write_binary( &ctx->GX, output, olen ) );
|
|
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
|
|
|
|
|
if( ret != 0 )
|
2011-05-09 18:17:09 +02:00
|
|
|
|
return( POLARSSL_ERR_DHM_MAKE_PUBLIC_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-04 16:29:59 +02:00
|
|
|
|
/*
|
|
|
|
|
* Use the blinding method and optimisation suggested in section 10 of:
|
|
|
|
|
* KOCHER, Paul C. Timing attacks on implementations of Diffie-Hellman, RSA,
|
|
|
|
|
* DSS, and other systems. In : Advances in Cryptology—CRYPTO’96. Springer
|
|
|
|
|
* Berlin Heidelberg, 1996. p. 104-113.
|
|
|
|
|
*/
|
|
|
|
|
static int dhm_update_blinding( dhm_context *ctx,
|
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t), void *p_rng )
|
|
|
|
|
{
|
|
|
|
|
int ret, count;
|
|
|
|
|
|
|
|
|
|
/*
|
2013-09-17 11:34:11 +02:00
|
|
|
|
* Don't use any blinding the first time a particular X is used,
|
|
|
|
|
* but remember it to use blinding next time.
|
2013-09-04 16:29:59 +02:00
|
|
|
|
*/
|
2013-10-11 09:38:49 +02:00
|
|
|
|
if( mpi_cmp_mpi( &ctx->X, &ctx->pX ) != 0 )
|
2013-09-04 16:29:59 +02:00
|
|
|
|
{
|
2013-10-11 09:38:49 +02:00
|
|
|
|
MPI_CHK( mpi_copy( &ctx->pX, &ctx->X ) );
|
2013-09-17 11:34:11 +02:00
|
|
|
|
MPI_CHK( mpi_lset( &ctx->Vi, 1 ) );
|
|
|
|
|
MPI_CHK( mpi_lset( &ctx->Vf, 1 ) );
|
|
|
|
|
|
|
|
|
|
return( 0 );
|
2013-09-04 16:29:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2013-09-17 11:34:11 +02:00
|
|
|
|
* Ok, we need blinding. Can we re-use existing values?
|
|
|
|
|
* If yes, just update them by squaring them.
|
2013-09-04 16:29:59 +02:00
|
|
|
|
*/
|
2013-09-17 11:34:11 +02:00
|
|
|
|
if( mpi_cmp_int( &ctx->Vi, 1 ) != 0 )
|
2013-09-04 16:29:59 +02:00
|
|
|
|
{
|
2013-09-17 11:34:11 +02:00
|
|
|
|
MPI_CHK( mpi_mul_mpi( &ctx->Vi, &ctx->Vi, &ctx->Vi ) );
|
|
|
|
|
MPI_CHK( mpi_mod_mpi( &ctx->Vi, &ctx->Vi, &ctx->P ) );
|
|
|
|
|
|
2013-09-04 16:39:03 +02:00
|
|
|
|
MPI_CHK( mpi_mul_mpi( &ctx->Vf, &ctx->Vf, &ctx->Vf ) );
|
|
|
|
|
MPI_CHK( mpi_mod_mpi( &ctx->Vf, &ctx->Vf, &ctx->P ) );
|
2013-09-17 11:34:11 +02:00
|
|
|
|
|
2013-09-04 16:39:03 +02:00
|
|
|
|
return( 0 );
|
2013-09-04 16:29:59 +02:00
|
|
|
|
}
|
2013-09-04 16:39:03 +02:00
|
|
|
|
|
|
|
|
|
/*
|
2013-09-17 11:34:11 +02:00
|
|
|
|
* We need to generate blinding values from scratch
|
2013-09-04 16:39:03 +02:00
|
|
|
|
*/
|
2013-09-04 16:29:59 +02:00
|
|
|
|
|
2013-09-17 11:34:11 +02:00
|
|
|
|
/* Vi = random( 2, P-1 ) */
|
|
|
|
|
count = 0;
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
mpi_fill_random( &ctx->Vi, mpi_size( &ctx->P ), f_rng, p_rng );
|
|
|
|
|
|
|
|
|
|
while( mpi_cmp_mpi( &ctx->Vi, &ctx->P ) >= 0 )
|
2014-04-17 12:42:41 +02:00
|
|
|
|
MPI_CHK( mpi_shift_r( &ctx->Vi, 1 ) );
|
2013-09-17 11:34:11 +02:00
|
|
|
|
|
|
|
|
|
if( count++ > 10 )
|
|
|
|
|
return( POLARSSL_ERR_MPI_NOT_ACCEPTABLE );
|
|
|
|
|
}
|
|
|
|
|
while( mpi_cmp_int( &ctx->Vi, 1 ) <= 0 );
|
|
|
|
|
|
2013-09-04 16:29:59 +02:00
|
|
|
|
/* Vf = Vi^-X mod P */
|
|
|
|
|
MPI_CHK( mpi_inv_mod( &ctx->Vf, &ctx->Vi, &ctx->P ) );
|
|
|
|
|
MPI_CHK( mpi_exp_mod( &ctx->Vf, &ctx->Vf, &ctx->X, &ctx->P, &ctx->RP ) );
|
|
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
|
return( ret );
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
/*
|
|
|
|
|
* Derive and export the shared secret (G^Y)^X mod P
|
|
|
|
|
*/
|
|
|
|
|
int dhm_calc_secret( dhm_context *ctx,
|
2013-09-04 14:22:07 +02:00
|
|
|
|
unsigned char *output, size_t *olen,
|
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
|
void *p_rng )
|
2009-01-03 22:22:43 +01:00
|
|
|
|
{
|
|
|
|
|
int ret;
|
2013-09-04 16:29:59 +02:00
|
|
|
|
mpi GYb;
|
2013-09-04 14:22:07 +02:00
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
if( ctx == NULL || *olen < ctx->len )
|
2009-01-03 22:51:57 +01:00
|
|
|
|
return( POLARSSL_ERR_DHM_BAD_INPUT_DATA );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2011-02-28 22:20:02 +01:00
|
|
|
|
if( ( ret = dhm_check_range( &ctx->GY, &ctx->P ) ) != 0 )
|
2011-02-20 17:37:30 +01:00
|
|
|
|
return( ret );
|
|
|
|
|
|
2013-09-04 16:29:59 +02:00
|
|
|
|
mpi_init( &GYb );
|
|
|
|
|
|
|
|
|
|
/* Blind peer's value */
|
2013-09-04 16:39:03 +02:00
|
|
|
|
if( f_rng != NULL )
|
2013-09-04 16:29:59 +02:00
|
|
|
|
{
|
|
|
|
|
MPI_CHK( dhm_update_blinding( ctx, f_rng, p_rng ) );
|
|
|
|
|
MPI_CHK( mpi_mul_mpi( &GYb, &ctx->GY, &ctx->Vi ) );
|
|
|
|
|
MPI_CHK( mpi_mod_mpi( &GYb, &GYb, &ctx->P ) );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
MPI_CHK( mpi_copy( &GYb, &ctx->GY ) );
|
|
|
|
|
|
|
|
|
|
/* Do modular exponentiation */
|
|
|
|
|
MPI_CHK( mpi_exp_mod( &ctx->K, &GYb, &ctx->X,
|
|
|
|
|
&ctx->P, &ctx->RP ) );
|
|
|
|
|
|
|
|
|
|
/* Unblind secret value */
|
2013-09-04 16:39:03 +02:00
|
|
|
|
if( f_rng != NULL )
|
2013-09-04 16:29:59 +02:00
|
|
|
|
{
|
|
|
|
|
MPI_CHK( mpi_mul_mpi( &ctx->K, &ctx->K, &ctx->Vf ) );
|
|
|
|
|
MPI_CHK( mpi_mod_mpi( &ctx->K, &ctx->K, &ctx->P ) );
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
*olen = mpi_size( &ctx->K );
|
|
|
|
|
|
|
|
|
|
MPI_CHK( mpi_write_binary( &ctx->K, output, *olen ) );
|
|
|
|
|
|
|
|
|
|
cleanup:
|
2013-09-04 16:29:59 +02:00
|
|
|
|
mpi_free( &GYb );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
if( ret != 0 )
|
2011-05-09 18:17:09 +02:00
|
|
|
|
return( POLARSSL_ERR_DHM_CALC_SECRET_FAILED + ret );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Free the components of a DHM key
|
|
|
|
|
*/
|
|
|
|
|
void dhm_free( dhm_context *ctx )
|
|
|
|
|
{
|
2013-10-11 09:38:49 +02:00
|
|
|
|
mpi_free( &ctx->pX); mpi_free( &ctx->Vf ); mpi_free( &ctx->Vi );
|
2011-05-05 13:49:20 +02:00
|
|
|
|
mpi_free( &ctx->RP ); mpi_free( &ctx->K ); mpi_free( &ctx->GY );
|
|
|
|
|
mpi_free( &ctx->GX ); mpi_free( &ctx->X ); mpi_free( &ctx->G );
|
|
|
|
|
mpi_free( &ctx->P );
|
2013-09-13 13:55:26 +02:00
|
|
|
|
|
2014-06-13 17:20:13 +02:00
|
|
|
|
polarssl_zeroize( ctx, sizeof( dhm_context ) );
|
2009-01-03 22:22:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-15 17:43:54 +02:00
|
|
|
|
#if defined(POLARSSL_ASN1_PARSE_C)
|
|
|
|
|
/*
|
|
|
|
|
* Parse DHM parameters
|
|
|
|
|
*/
|
2014-05-01 14:18:25 +02:00
|
|
|
|
int dhm_parse_dhm( dhm_context *dhm, const unsigned char *dhmin,
|
|
|
|
|
size_t dhminlen )
|
2013-09-15 17:43:54 +02:00
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
size_t len;
|
|
|
|
|
unsigned char *p, *end;
|
2013-09-15 20:43:33 +02:00
|
|
|
|
#if defined(POLARSSL_PEM_PARSE_C)
|
2013-09-15 17:43:54 +02:00
|
|
|
|
pem_context pem;
|
|
|
|
|
|
|
|
|
|
pem_init( &pem );
|
|
|
|
|
|
|
|
|
|
ret = pem_read_buffer( &pem,
|
|
|
|
|
"-----BEGIN DH PARAMETERS-----",
|
|
|
|
|
"-----END DH PARAMETERS-----",
|
|
|
|
|
dhmin, NULL, 0, &dhminlen );
|
|
|
|
|
|
|
|
|
|
if( ret == 0 )
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* Was PEM encoded
|
|
|
|
|
*/
|
|
|
|
|
dhminlen = pem.buflen;
|
|
|
|
|
}
|
|
|
|
|
else if( ret != POLARSSL_ERR_PEM_NO_HEADER_FOOTER_PRESENT )
|
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
|
|
p = ( ret == 0 ) ? pem.buf : (unsigned char *) dhmin;
|
|
|
|
|
#else
|
|
|
|
|
p = (unsigned char *) dhmin;
|
2014-05-01 13:03:14 +02:00
|
|
|
|
#endif /* POLARSSL_PEM_PARSE_C */
|
2013-09-15 17:43:54 +02:00
|
|
|
|
end = p + dhminlen;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* DHParams ::= SEQUENCE {
|
|
|
|
|
* prime INTEGER, -- P
|
|
|
|
|
* generator INTEGER, -- g
|
|
|
|
|
* }
|
|
|
|
|
*/
|
|
|
|
|
if( ( ret = asn1_get_tag( &p, end, &len,
|
|
|
|
|
ASN1_CONSTRUCTED | ASN1_SEQUENCE ) ) != 0 )
|
|
|
|
|
{
|
|
|
|
|
ret = POLARSSL_ERR_DHM_INVALID_FORMAT + ret;
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
end = p + len;
|
|
|
|
|
|
|
|
|
|
if( ( ret = asn1_get_mpi( &p, end, &dhm->P ) ) != 0 ||
|
|
|
|
|
( ret = asn1_get_mpi( &p, end, &dhm->G ) ) != 0 )
|
|
|
|
|
{
|
|
|
|
|
ret = POLARSSL_ERR_DHM_INVALID_FORMAT + ret;
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( p != end )
|
|
|
|
|
{
|
|
|
|
|
ret = POLARSSL_ERR_DHM_INVALID_FORMAT +
|
|
|
|
|
POLARSSL_ERR_ASN1_LENGTH_MISMATCH;
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
2014-03-29 16:42:38 +01:00
|
|
|
|
dhm->len = mpi_size( &dhm->P );
|
|
|
|
|
|
2013-09-15 17:43:54 +02:00
|
|
|
|
exit:
|
2013-09-15 20:43:33 +02:00
|
|
|
|
#if defined(POLARSSL_PEM_PARSE_C)
|
2013-09-15 17:43:54 +02:00
|
|
|
|
pem_free( &pem );
|
|
|
|
|
#endif
|
|
|
|
|
if( ret != 0 )
|
|
|
|
|
dhm_free( dhm );
|
|
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if defined(POLARSSL_FS_IO)
|
|
|
|
|
/*
|
|
|
|
|
* Load all data from a file into a given buffer.
|
|
|
|
|
*/
|
|
|
|
|
static int load_file( const char *path, unsigned char **buf, size_t *n )
|
|
|
|
|
{
|
|
|
|
|
FILE *f;
|
|
|
|
|
long size;
|
|
|
|
|
|
|
|
|
|
if( ( f = fopen( path, "rb" ) ) == NULL )
|
|
|
|
|
return( POLARSSL_ERR_DHM_FILE_IO_ERROR );
|
|
|
|
|
|
|
|
|
|
fseek( f, 0, SEEK_END );
|
|
|
|
|
if( ( size = ftell( f ) ) == -1 )
|
|
|
|
|
{
|
|
|
|
|
fclose( f );
|
|
|
|
|
return( POLARSSL_ERR_DHM_FILE_IO_ERROR );
|
|
|
|
|
}
|
|
|
|
|
fseek( f, 0, SEEK_SET );
|
|
|
|
|
|
|
|
|
|
*n = (size_t) size;
|
|
|
|
|
|
|
|
|
|
if( *n + 1 == 0 ||
|
|
|
|
|
( *buf = (unsigned char *) polarssl_malloc( *n + 1 ) ) == NULL )
|
|
|
|
|
{
|
|
|
|
|
fclose( f );
|
|
|
|
|
return( POLARSSL_ERR_DHM_MALLOC_FAILED );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( fread( *buf, 1, *n, f ) != *n )
|
|
|
|
|
{
|
|
|
|
|
fclose( f );
|
|
|
|
|
polarssl_free( *buf );
|
|
|
|
|
return( POLARSSL_ERR_DHM_FILE_IO_ERROR );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fclose( f );
|
|
|
|
|
|
|
|
|
|
(*buf)[*n] = '\0';
|
|
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Load and parse DHM parameters
|
|
|
|
|
*/
|
|
|
|
|
int dhm_parse_dhmfile( dhm_context *dhm, const char *path )
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
size_t n;
|
|
|
|
|
unsigned char *buf;
|
|
|
|
|
|
2014-06-17 16:39:18 +02:00
|
|
|
|
if( ( ret = load_file( path, &buf, &n ) ) != 0 )
|
2013-09-15 17:43:54 +02:00
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
|
|
ret = dhm_parse_dhm( dhm, buf, n );
|
|
|
|
|
|
2014-06-13 17:20:13 +02:00
|
|
|
|
polarssl_zeroize( buf, n + 1 );
|
2013-09-15 17:43:54 +02:00
|
|
|
|
polarssl_free( buf );
|
|
|
|
|
|
|
|
|
|
return( ret );
|
|
|
|
|
}
|
|
|
|
|
#endif /* POLARSSL_FS_IO */
|
|
|
|
|
#endif /* POLARSSL_ASN1_PARSE_C */
|
|
|
|
|
|
2009-01-03 22:51:57 +01:00
|
|
|
|
#if defined(POLARSSL_SELF_TEST)
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2013-09-15 17:43:54 +02:00
|
|
|
|
#include "polarssl/certs.h"
|
|
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
|
/*
|
|
|
|
|
* Checkup routine
|
|
|
|
|
*/
|
|
|
|
|
int dhm_self_test( int verbose )
|
|
|
|
|
{
|
2013-09-15 17:43:54 +02:00
|
|
|
|
#if defined(POLARSSL_CERTS_C)
|
|
|
|
|
int ret;
|
|
|
|
|
dhm_context dhm;
|
|
|
|
|
|
2014-06-20 13:32:38 +02:00
|
|
|
|
dhm_init( &dhm );
|
|
|
|
|
|
2013-09-15 17:43:54 +02:00
|
|
|
|
if( verbose != 0 )
|
2014-02-01 22:50:26 +01:00
|
|
|
|
polarssl_printf( " DHM parameter load: " );
|
2013-09-15 17:43:54 +02:00
|
|
|
|
|
|
|
|
|
if( ( ret = dhm_parse_dhm( &dhm, (const unsigned char *) test_dhm_params,
|
|
|
|
|
strlen( test_dhm_params ) ) ) != 0 )
|
|
|
|
|
{
|
|
|
|
|
if( verbose != 0 )
|
2014-02-01 22:50:26 +01:00
|
|
|
|
polarssl_printf( "failed\n" );
|
2013-09-15 17:43:54 +02:00
|
|
|
|
|
2014-06-20 13:32:38 +02:00
|
|
|
|
goto exit;
|
2013-09-15 17:43:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( verbose != 0 )
|
2014-02-01 22:50:26 +01:00
|
|
|
|
polarssl_printf( "passed\n\n" );
|
2013-09-15 17:43:54 +02:00
|
|
|
|
|
2014-06-20 13:32:38 +02:00
|
|
|
|
exit:
|
2013-09-15 17:43:54 +02:00
|
|
|
|
dhm_free( &dhm );
|
|
|
|
|
|
2014-06-20 13:32:38 +02:00
|
|
|
|
return( ret );
|
2013-09-15 17:43:54 +02:00
|
|
|
|
#else
|
2014-03-10 11:06:32 +01:00
|
|
|
|
if( verbose != 0 )
|
|
|
|
|
polarssl_printf( " DHM parameter load: skipped\n" );
|
|
|
|
|
|
|
|
|
|
return( 0 );
|
2014-05-01 13:03:14 +02:00
|
|
|
|
#endif /* POLARSSL_CERTS_C */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-01 13:03:14 +02:00
|
|
|
|
#endif /* POLARSSL_SELF_TEST */
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
2014-05-01 13:03:14 +02:00
|
|
|
|
#endif /* POLARSSL_DHM_C */
|