/* * Diffie-Hellman-Merkle key exchange * * Copyright (C) 2007 Christophe Devine * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License, version 2.1 as published by the Free Software Foundation. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; 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) */ #ifndef _CRT_SECURE_NO_DEPRECATE #define _CRT_SECURE_NO_DEPRECATE 1 #endif #include #include "dhm.h" /* * helper to validate the mpi size and import it */ static int dhm_ssl_read_bignum( mpi *X, unsigned char **p, unsigned char *end ) { int ret, n; if( end - *p < 2 ) return( ERR_DHM_BAD_INPUT_DATA ); n = ( (*p)[0] << 8 ) | (*p)[1]; (*p) += 2; if( (int)( end - *p ) < n ) return( ERR_DHM_BAD_INPUT_DATA ); if( ( ret = mpi_import( X, *p, n ) ) != 0 ) return( ERR_DHM_READ_PARAMS_FAILED | ret ); (*p) += n; return( 0 ); } /* * Parse the ServerKeyExchange parameters */ int dhm_ssl_read_params( dhm_context *ctx, unsigned char **p, unsigned char *end ) { int ret, n; memset( ctx, 0, sizeof( dhm_context ) ); if( ( ret = dhm_ssl_read_bignum( &ctx->P, p, end ) ) != 0 || ( ret = dhm_ssl_read_bignum( &ctx->G, p, end ) ) != 0 || ( ret = dhm_ssl_read_bignum( &ctx->GY, p, end ) ) != 0 ) return( ret ); ctx->len = ( mpi_size( &ctx->P ) + 7 ) >> 3; if( end - *p < 2 ) return( ERR_DHM_BAD_INPUT_DATA ); n = ( (*p)[0] << 8 ) | (*p)[1]; (*p) += 2; if( end != *p + n ) return( ERR_DHM_BAD_INPUT_DATA ); return( 0 ); } /* * Setup and write the ServerKeyExchange parameters */ int dhm_ssl_make_params( dhm_context *ctx, char *P, char *G, int (*rng_f)(void *), void *rng_d, unsigned char *output, int *olen ) { int i, ret, n, n1, n2, n3; unsigned char *p; /* * public parameters must be defined by the caller */ CHK( mpi_read( &ctx->P, P, 16 ) ); CHK( mpi_read( &ctx->G, G, 16 ) ); /* * generate X and calculate GX = G^X mod P */ n = 48 / sizeof( t_int ); CHK( mpi_grow( &ctx->X, n ) ); p = (unsigned char *) ctx->X.p; for( i = 0; i < ciL * ctx->X.n; i++ ) *p++ = rng_f( rng_d ); while( mpi_cmp_mpi( &ctx->X, &ctx->P ) >= 0 ) mpi_shift_r( &ctx->X, 1 ); CHK( mpi_exp_mod( &ctx->GX, &ctx->G, &ctx->X, &ctx->P , &ctx->RP ) ); /* * export P, G, GX */ #define DHM_MPI_EXPORT(X,n) \ CHK( mpi_export( X, p + 2, &n ) ); \ *p++ = ( n >> 8 ); \ *p++ = ( n ); \ p += n; n1 = ( mpi_size( &ctx->P ) + 7 ) >> 3; n2 = ( mpi_size( &ctx->G ) + 7 ) >> 3; n3 = ( mpi_size( &ctx->GX ) + 7 ) >> 3; 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 ) return( ret | ERR_DHM_MAKE_PARAMS_FAILED ); return( 0 ); } /* * Import the peer's public value (G^Y) */ int dhm_read_public( dhm_context *ctx, unsigned char *input, int ilen ) { int ret; if( ctx == NULL || ilen < 1 || ilen > ctx->len ) return( ERR_DHM_BAD_INPUT_DATA ); if( ( ret = mpi_import( &ctx->GY, input, ilen ) ) != 0 ) return( ERR_DHM_READ_PUBLIC_FAILED | ret ); return( 0 ); } /* * Create own private (X) and public (G^X) values */ int dhm_make_public( dhm_context *ctx, unsigned char *output, int olen, int (*rng_f)(void *), void *rng_d ) { int ret, i, n; unsigned char *p; if( ctx == NULL || olen < 1 || olen > ctx->len ) return( ERR_DHM_BAD_INPUT_DATA ); /* * Get 384 bytes of entropy for the private value */ n = 48 / sizeof( t_int ); CHK( mpi_grow( &ctx->X, n ) ); p = (unsigned char *) ctx->X.p; for( i = 0; i < ciL * ctx->X.n; i++ ) *p++ = rng_f( rng_d ); while( mpi_cmp_mpi( &ctx->X, &ctx->P ) >= 0 ) mpi_shift_r( &ctx->X, 1 ); CHK( mpi_exp_mod( &ctx->GX, &ctx->G, &ctx->X, &ctx->P , &ctx->RP ) ); CHK( mpi_export( &ctx->GX, output, &olen ) ); cleanup: if( ret != 0 ) return( ERR_DHM_MAKE_PUBLIC_FAILED | ret ); return( 0 ); } /* * Derive and export the shared secret (G^Y)^X mod P */ int dhm_calc_secret( dhm_context *ctx, unsigned char *output, int *olen ) { int ret; if( ctx == NULL || *olen < ctx->len ) return( ERR_DHM_BAD_INPUT_DATA ); CHK( mpi_exp_mod( &ctx->K, &ctx->GY, &ctx->X, &ctx->P, &ctx->RP ) ); *olen = ( mpi_size( &ctx->K ) + 7 ) >> 3; CHK( mpi_export( &ctx->K, output, olen ) ); cleanup: if( ret != 0 ) return( ERR_DHM_CALC_SECRET_FAILED | ret ); return( 0 ); } /* * Free the components of a DHM key */ void dhm_free( dhm_context *ctx ) { mpi_free( &ctx->RP, &ctx->K, &ctx->GY, &ctx->GX, &ctx->X, &ctx->G, &ctx->P, NULL ); } static const char _dhm_src[] = "_dhm_src"; #ifdef SELF_TEST /* * Checkup routine */ int dhm_self_test( void ) { return( 0 ); } #endif