2013-01-26 15:30:46 +01:00
|
|
|
/*
|
|
|
|
* Elliptic curve Diffie-Hellman
|
|
|
|
*
|
2015-07-27 11:11:48 +02:00
|
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-01-26 15:30:46 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-01-26 15:30:46 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-26 15:30:46 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2013-01-26 15:30:46 +01:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
2013-01-26 15:30:46 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* References:
|
|
|
|
*
|
|
|
|
* SEC1 http://www.secg.org/index.php?action=secg,docs_secg
|
2013-02-10 14:21:04 +01:00
|
|
|
* RFC 4492
|
2013-01-26 15:30:46 +01:00
|
|
|
*/
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if !defined(MBEDTLS_CONFIG_FILE)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/config.h"
|
2014-04-29 12:39:06 +02:00
|
|
|
#else
|
2015-04-08 12:49:31 +02:00
|
|
|
#include MBEDTLS_CONFIG_FILE
|
2014-04-29 12:39:06 +02:00
|
|
|
#endif
|
2013-01-26 15:30:46 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_ECDH_C)
|
2013-01-26 15:30:46 +01:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/ecdh.h"
|
2013-01-26 15:30:46 +01:00
|
|
|
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <string.h>
|
|
|
|
|
2013-01-26 16:05:22 +01:00
|
|
|
/*
|
2017-04-27 11:38:26 +02:00
|
|
|
* Generate public key (restartable version)
|
|
|
|
*/
|
|
|
|
static int ecdh_gen_public_restartable( mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *d, mbedtls_ecp_point *Q,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* If multiplication is in progress, we already generated a privkey */
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
if( rs_ctx == NULL || rs_ctx->rsm == NULL )
|
|
|
|
#endif
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_gen_privkey( grp, d, f_rng, p_rng ) );
|
|
|
|
|
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul_restartable( grp, Q, d, &grp->G,
|
|
|
|
f_rng, p_rng, rs_ctx ) );
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate public key
|
2013-01-26 16:05:22 +01:00
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecdh_gen_public( mbedtls_ecp_group *grp, mbedtls_mpi *d, mbedtls_ecp_point *Q,
|
2013-01-26 16:05:22 +01:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
|
|
|
{
|
2017-04-27 11:38:26 +02:00
|
|
|
return( ecdh_gen_public_restartable( grp, d, Q, f_rng, p_rng, NULL ) );
|
2013-01-26 16:05:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute shared secret (SEC1 3.3.1)
|
|
|
|
*/
|
2017-04-27 11:38:26 +02:00
|
|
|
static int ecdh_compute_shared_restartable( mbedtls_ecp_group *grp,
|
|
|
|
mbedtls_mpi *z,
|
2015-04-08 12:49:31 +02:00
|
|
|
const mbedtls_ecp_point *Q, const mbedtls_mpi *d,
|
2013-09-02 14:29:09 +02:00
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
2017-04-27 11:38:26 +02:00
|
|
|
void *p_rng,
|
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx )
|
2013-01-26 16:05:22 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point P;
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_init( &P );
|
2013-01-26 16:05:22 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure Q is a valid pubkey before using it
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_check_pubkey( grp, Q ) );
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2017-04-27 11:38:26 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_ecp_mul_restartable( grp, &P, d, Q,
|
|
|
|
f_rng, p_rng, rs_ctx ) );
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_ecp_is_zero( &P ) )
|
2013-07-26 14:21:34 +02:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
ret = MBEDTLS_ERR_ECP_BAD_INPUT_DATA;
|
2013-07-26 14:21:34 +02:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-01-26 16:05:22 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
MBEDTLS_MPI_CHK( mbedtls_mpi_copy( z, &P.X ) );
|
2013-01-26 16:05:22 +01:00
|
|
|
|
|
|
|
cleanup:
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_point_free( &P );
|
2013-01-26 16:05:22 +01:00
|
|
|
|
|
|
|
return( ret );
|
|
|
|
}
|
|
|
|
|
2017-04-27 11:38:26 +02:00
|
|
|
/*
|
|
|
|
* Compute shared secret (SEC1 3.3.1)
|
|
|
|
*/
|
|
|
|
int mbedtls_ecdh_compute_shared( mbedtls_ecp_group *grp, mbedtls_mpi *z,
|
|
|
|
const mbedtls_ecp_point *Q, const mbedtls_mpi *d,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
|
|
|
{
|
|
|
|
return( ecdh_compute_shared_restartable( grp, z, Q, d,
|
|
|
|
f_rng, p_rng, NULL ) );
|
|
|
|
}
|
|
|
|
|
2013-02-10 14:21:04 +01:00
|
|
|
/*
|
|
|
|
* Initialize context
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ecdh_init( mbedtls_ecdh_context *ctx )
|
2013-02-10 14:21:04 +01:00
|
|
|
{
|
2015-04-08 12:49:31 +02:00
|
|
|
memset( ctx, 0, sizeof( mbedtls_ecdh_context ) );
|
2017-04-27 11:38:26 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
mbedtls_ecp_restart_init( &ctx->rs );
|
|
|
|
#endif
|
2013-02-10 14:21:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free context
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
void mbedtls_ecdh_free( mbedtls_ecdh_context *ctx )
|
2013-02-10 14:21:04 +01:00
|
|
|
{
|
|
|
|
if( ctx == NULL )
|
|
|
|
return;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_ecp_group_free( &ctx->grp );
|
|
|
|
mbedtls_ecp_point_free( &ctx->Q );
|
|
|
|
mbedtls_ecp_point_free( &ctx->Qp );
|
|
|
|
mbedtls_ecp_point_free( &ctx->Vi );
|
|
|
|
mbedtls_ecp_point_free( &ctx->Vf );
|
|
|
|
mbedtls_mpi_free( &ctx->d );
|
|
|
|
mbedtls_mpi_free( &ctx->z );
|
|
|
|
mbedtls_mpi_free( &ctx->_d );
|
2017-04-27 11:38:26 +02:00
|
|
|
|
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
mbedtls_ecp_restart_free( &ctx->rs );
|
|
|
|
#endif
|
2013-02-10 14:21:04 +01:00
|
|
|
}
|
|
|
|
|
2013-02-10 15:01:54 +01:00
|
|
|
/*
|
2013-02-11 20:28:55 +01:00
|
|
|
* Setup and write the ServerKeyExhange parameters (RFC 4492)
|
2013-02-10 15:01:54 +01:00
|
|
|
* struct {
|
|
|
|
* ECParameters curve_params;
|
|
|
|
* ECPoint public;
|
|
|
|
* } ServerECDHParams;
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecdh_make_params( mbedtls_ecdh_context *ctx, size_t *olen,
|
2013-02-11 20:28:55 +01:00
|
|
|
unsigned char *buf, size_t blen,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
2013-02-10 15:01:54 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
size_t grp_len, pt_len;
|
2017-04-27 11:38:26 +02:00
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx = NULL;
|
2013-02-10 15:01:54 +01:00
|
|
|
|
2013-02-11 22:12:39 +01:00
|
|
|
if( ctx == NULL || ctx->grp.pbits == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-02-11 22:12:39 +01:00
|
|
|
|
2017-04-27 11:38:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
rs_ctx = &ctx->rs;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if( ( ret = ecdh_gen_public_restartable( &ctx->grp, &ctx->d, &ctx->Q,
|
|
|
|
f_rng, p_rng, rs_ctx ) ) != 0 )
|
2013-02-10 15:01:54 +01:00
|
|
|
return( ret );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecp_tls_write_group( &ctx->grp, &grp_len, buf, blen ) )
|
2013-02-10 15:01:54 +01:00
|
|
|
!= 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
buf += grp_len;
|
|
|
|
blen -= grp_len;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecp_tls_write_point( &ctx->grp, &ctx->Q, ctx->point_format,
|
2013-02-10 15:01:54 +01:00
|
|
|
&pt_len, buf, blen ) ) != 0 )
|
|
|
|
return( ret );
|
|
|
|
|
|
|
|
*olen = grp_len + pt_len;
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2013-02-10 15:01:54 +01:00
|
|
|
}
|
|
|
|
|
2013-02-11 20:28:55 +01:00
|
|
|
/*
|
|
|
|
* Read the ServerKeyExhange parameters (RFC 4492)
|
|
|
|
* struct {
|
|
|
|
* ECParameters curve_params;
|
|
|
|
* ECPoint public;
|
|
|
|
* } ServerECDHParams;
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecdh_read_params( mbedtls_ecdh_context *ctx,
|
2013-02-11 20:28:55 +01:00
|
|
|
const unsigned char **buf, const unsigned char *end )
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecp_tls_read_group( &ctx->grp, buf, end - *buf ) ) != 0 )
|
2013-02-11 20:28:55 +01:00
|
|
|
return( ret );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecp_tls_read_point( &ctx->grp, &ctx->Qp, buf, end - *buf ) )
|
2013-02-11 20:28:55 +01:00
|
|
|
!= 0 )
|
|
|
|
return( ret );
|
|
|
|
|
2014-06-17 14:06:49 +02:00
|
|
|
return( 0 );
|
2013-02-11 20:28:55 +01:00
|
|
|
}
|
2013-01-26 15:30:46 +01:00
|
|
|
|
2013-12-12 09:55:52 +01:00
|
|
|
/*
|
|
|
|
* Get parameters from a keypair
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecdh_get_params( mbedtls_ecdh_context *ctx, const mbedtls_ecp_keypair *key,
|
|
|
|
mbedtls_ecdh_side side )
|
2013-12-12 09:55:52 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecp_group_copy( &ctx->grp, &key->grp ) ) != 0 )
|
2013-12-12 09:55:52 +01:00
|
|
|
return( ret );
|
|
|
|
|
|
|
|
/* If it's not our key, just import the public part as Qp */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( side == MBEDTLS_ECDH_THEIRS )
|
|
|
|
return( mbedtls_ecp_copy( &ctx->Qp, &key->Q ) );
|
2013-12-12 09:55:52 +01:00
|
|
|
|
|
|
|
/* Our key: import public (as Q) and private parts */
|
2015-04-08 12:49:31 +02:00
|
|
|
if( side != MBEDTLS_ECDH_OURS )
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-12-12 09:55:52 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecp_copy( &ctx->Q, &key->Q ) ) != 0 ||
|
|
|
|
( ret = mbedtls_mpi_copy( &ctx->d, &key->d ) ) != 0 )
|
2013-12-12 09:55:52 +01:00
|
|
|
return( ret );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
2013-02-11 21:51:45 +01:00
|
|
|
/*
|
|
|
|
* Setup and export the client public value
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecdh_make_public( mbedtls_ecdh_context *ctx, size_t *olen,
|
2013-02-11 21:51:45 +01:00
|
|
|
unsigned char *buf, size_t blen,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
|
|
|
{
|
|
|
|
int ret;
|
2017-04-27 11:38:26 +02:00
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx = NULL;
|
2013-02-11 21:51:45 +01:00
|
|
|
|
2013-02-11 22:12:39 +01:00
|
|
|
if( ctx == NULL || ctx->grp.pbits == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-02-11 22:12:39 +01:00
|
|
|
|
2017-04-27 11:38:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
rs_ctx = &ctx->rs;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if( ( ret = ecdh_gen_public_restartable( &ctx->grp, &ctx->d, &ctx->Q,
|
|
|
|
f_rng, p_rng, rs_ctx ) ) != 0 )
|
2013-02-11 21:51:45 +01:00
|
|
|
return( ret );
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
return mbedtls_ecp_tls_write_point( &ctx->grp, &ctx->Q, ctx->point_format,
|
2013-02-11 21:51:45 +01:00
|
|
|
olen, buf, blen );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse and import the client's public value
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecdh_read_public( mbedtls_ecdh_context *ctx,
|
2013-02-11 21:51:45 +01:00
|
|
|
const unsigned char *buf, size_t blen )
|
|
|
|
{
|
2014-03-26 19:53:25 +01:00
|
|
|
int ret;
|
|
|
|
const unsigned char *p = buf;
|
|
|
|
|
2013-02-11 22:12:39 +01:00
|
|
|
if( ctx == NULL )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-02-11 22:12:39 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( ( ret = mbedtls_ecp_tls_read_point( &ctx->grp, &ctx->Qp, &p, blen ) ) != 0 )
|
2014-03-26 19:53:25 +01:00
|
|
|
return( ret );
|
|
|
|
|
|
|
|
if( (size_t)( p - buf ) != blen )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2014-03-26 19:53:25 +01:00
|
|
|
|
|
|
|
return( 0 );
|
2013-02-11 21:51:45 +01:00
|
|
|
}
|
|
|
|
|
2013-02-11 22:05:42 +01:00
|
|
|
/*
|
|
|
|
* Derive and export the shared secret
|
|
|
|
*/
|
2015-04-08 12:49:31 +02:00
|
|
|
int mbedtls_ecdh_calc_secret( mbedtls_ecdh_context *ctx, size_t *olen,
|
2013-09-02 14:29:09 +02:00
|
|
|
unsigned char *buf, size_t blen,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng )
|
2013-02-11 22:05:42 +01:00
|
|
|
{
|
|
|
|
int ret;
|
2017-04-27 11:38:26 +02:00
|
|
|
mbedtls_ecp_restart_ctx *rs_ctx = NULL;
|
2013-02-11 22:05:42 +01:00
|
|
|
|
2017-04-27 11:38:26 +02:00
|
|
|
if( ctx == NULL || ctx->grp.pbits == 0 )
|
2015-04-08 12:49:31 +02:00
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-02-11 22:12:39 +01:00
|
|
|
|
2017-04-27 11:38:26 +02:00
|
|
|
#if defined(MBEDTLS_ECP_RESTARTABLE)
|
|
|
|
rs_ctx = &ctx->rs;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if( ( ret = ecdh_compute_shared_restartable( &ctx->grp,
|
|
|
|
&ctx->z, &ctx->Qp, &ctx->d, f_rng, p_rng, rs_ctx ) ) != 0 )
|
2013-09-02 14:29:09 +02:00
|
|
|
{
|
2013-02-11 22:05:42 +01:00
|
|
|
return( ret );
|
2013-09-02 14:29:09 +02:00
|
|
|
}
|
2013-02-11 22:05:42 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
if( mbedtls_mpi_size( &ctx->z ) > blen )
|
|
|
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
2013-03-20 14:39:14 +01:00
|
|
|
|
2014-01-17 21:24:04 +01:00
|
|
|
*olen = ctx->grp.pbits / 8 + ( ( ctx->grp.pbits % 8 ) != 0 );
|
2015-04-08 12:49:31 +02:00
|
|
|
return mbedtls_mpi_write_binary( &ctx->z, buf, *olen );
|
2013-02-11 22:05:42 +01:00
|
|
|
}
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_ECDH_C */
|