Remove unused function: ssl_tls13_check_ecdh_params()
Signed-off-by: Przemyslaw Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
parent
9e23ddb09d
commit
6d6aabdb0d
1 changed files with 0 additions and 28 deletions
|
@ -368,34 +368,6 @@ cleanup:
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECDH_C)
|
#if defined(MBEDTLS_ECDH_C)
|
||||||
|
|
||||||
static int ssl_tls13_check_ecdh_params( const mbedtls_ssl_context *ssl )
|
|
||||||
{
|
|
||||||
const mbedtls_ecp_curve_info *curve_info;
|
|
||||||
mbedtls_ecp_group_id grp_id;
|
|
||||||
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
|
||||||
grp_id = ssl->handshake->ecdh_ctx.grp.id;
|
|
||||||
#else
|
|
||||||
grp_id = ssl->handshake->ecdh_ctx.grp_id;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
curve_info = mbedtls_ecp_curve_info_from_grp_id( grp_id );
|
|
||||||
if( curve_info == NULL )
|
|
||||||
{
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "should never happen" ) );
|
|
||||||
return( MBEDTLS_ERR_SSL_INTERNAL_ERROR );
|
|
||||||
}
|
|
||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 2, ( "ECDH curve: %s", curve_info->name ) );
|
|
||||||
|
|
||||||
if( mbedtls_ssl_check_curve( ssl, grp_id ) != 0 )
|
|
||||||
return( -1 );
|
|
||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_ECDH( 3, &ssl->handshake->ecdh_ctx,
|
|
||||||
MBEDTLS_DEBUG_ECDH_QP );
|
|
||||||
|
|
||||||
return( 0 );
|
|
||||||
}
|
|
||||||
|
|
||||||
static int ssl_tls13_read_public_ecdhe_share( mbedtls_ssl_context *ssl,
|
static int ssl_tls13_read_public_ecdhe_share( mbedtls_ssl_context *ssl,
|
||||||
const unsigned char *buf,
|
const unsigned char *buf,
|
||||||
size_t buf_len )
|
size_t buf_len )
|
||||||
|
|
Loading…
Reference in a new issue