Fix unused parameter issue and not defined cookie issue
Signed-off-by: XiaokangQian <xiaokang.qian@arm.com>
This commit is contained in:
parent
7ac3ab3404
commit
3207a32b1e
3 changed files with 22 additions and 8 deletions
|
@ -1362,7 +1362,9 @@ struct mbedtls_ssl_config
|
||||||
void *MBEDTLS_PRIVATE(p_psk); /*!< context for PSK callback */
|
void *MBEDTLS_PRIVATE(p_psk); /*!< context for PSK callback */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
|
#if (defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) || \
|
||||||
|
(defined(MBEDTLS_SSL_COOKIE_C) && defined(MBEDTLS_SSL_PROTO_TLS1_3))) && \
|
||||||
|
defined(MBEDTLS_SSL_SRV_C)
|
||||||
/** Callback to create & write a cookie for ClientHello veirifcation */
|
/** Callback to create & write a cookie for ClientHello veirifcation */
|
||||||
int (*MBEDTLS_PRIVATE(f_cookie_write))( void *, unsigned char **, unsigned char *,
|
int (*MBEDTLS_PRIVATE(f_cookie_write))( void *, unsigned char **, unsigned char *,
|
||||||
const unsigned char *, size_t );
|
const unsigned char *, size_t );
|
||||||
|
@ -1703,7 +1705,9 @@ struct mbedtls_ssl_context
|
||||||
/*
|
/*
|
||||||
* Information for DTLS hello verify
|
* Information for DTLS hello verify
|
||||||
*/
|
*/
|
||||||
#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
|
#if (defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) || \
|
||||||
|
(defined(MBEDTLS_SSL_COOKIE_C) && defined(MBEDTLS_SSL_PROTO_TLS1_3))) && \
|
||||||
|
defined(MBEDTLS_SSL_SRV_C)
|
||||||
unsigned char *MBEDTLS_PRIVATE(cli_id); /*!< transport-level ID of the client */
|
unsigned char *MBEDTLS_PRIVATE(cli_id); /*!< transport-level ID of the client */
|
||||||
size_t MBEDTLS_PRIVATE(cli_id_len); /*!< length of cli_id */
|
size_t MBEDTLS_PRIVATE(cli_id_len); /*!< length of cli_id */
|
||||||
#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY && MBEDTLS_SSL_SRV_C */
|
#endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY && MBEDTLS_SSL_SRV_C */
|
||||||
|
|
|
@ -1523,6 +1523,18 @@ static int ecdh_import_public_raw( mbedtls_ecdh_context_mbed *ctx,
|
||||||
buf, end - buf ) );
|
buf, end - buf ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED)
|
||||||
|
static int everest_import_public_raw( mbedtls_x25519_context *ctx,
|
||||||
|
const unsigned char *buf, const unsigned char *end )
|
||||||
|
{
|
||||||
|
if( end - buf != MBEDTLS_X25519_KEY_SIZE_BYTES )
|
||||||
|
return( MBEDTLS_ERR_ECP_BAD_INPUT_DATA );
|
||||||
|
|
||||||
|
memcpy( ctx->peer_point, buf, MBEDTLS_X25519_KEY_SIZE_BYTES );
|
||||||
|
return( 0 );
|
||||||
|
}
|
||||||
|
#endif /* MBEDTLS_ECDH_VARIANT_EVEREST_ENABLED */
|
||||||
|
|
||||||
int mbedtls_ecdh_import_public_raw( mbedtls_ecdh_context *ctx,
|
int mbedtls_ecdh_import_public_raw( mbedtls_ecdh_context *ctx,
|
||||||
const unsigned char *buf,
|
const unsigned char *buf,
|
||||||
const unsigned char *end )
|
const unsigned char *end )
|
||||||
|
@ -1532,7 +1544,7 @@ int mbedtls_ecdh_import_public_raw( mbedtls_ecdh_context *ctx,
|
||||||
ECDH_VALIDATE_RET( end != NULL );
|
ECDH_VALIDATE_RET( end != NULL );
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
#if defined(MBEDTLS_ECDH_LEGACY_CONTEXT)
|
||||||
return( ecdh_read_tls13_params_internal( ctx, buf, end ) );
|
return( ecdh_import_public_raw( ctx, buf, end ) );
|
||||||
#else
|
#else
|
||||||
switch( ctx->var )
|
switch( ctx->var )
|
||||||
{
|
{
|
||||||
|
|
|
@ -276,11 +276,7 @@ static int ssl_tls13_parse_key_shares_ext( mbedtls_ssl_context *ssl,
|
||||||
* - Check if it's supported
|
* - Check if it's supported
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const mbedtls_ecp_curve_info *curve_info;
|
their_curve = mbedtls_ecp_named_group_to_id( their_group );
|
||||||
curve_info = mbedtls_ecp_curve_info_from_tls_id( their_group );
|
|
||||||
if( curve_info == NULL )
|
|
||||||
return( MBEDTLS_ECP_DP_NONE );
|
|
||||||
their_curve = curve_info->grp_id;
|
|
||||||
if( mbedtls_ssl_check_curve( ssl, their_curve ) != 0 )
|
if( mbedtls_ssl_check_curve( ssl, their_curve ) != 0 )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
@ -462,6 +458,8 @@ cleanup:
|
||||||
|
|
||||||
static void ssl_debug_print_client_hello_exts( mbedtls_ssl_context *ssl )
|
static void ssl_debug_print_client_hello_exts( mbedtls_ssl_context *ssl )
|
||||||
{
|
{
|
||||||
|
((void) ssl);
|
||||||
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 3, ( "Supported Extensions:" ) );
|
MBEDTLS_SSL_DEBUG_MSG( 3, ( "Supported Extensions:" ) );
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 3, ( "- KEY_SHARE_EXTENSION ( %s )",
|
MBEDTLS_SSL_DEBUG_MSG( 3, ( "- KEY_SHARE_EXTENSION ( %s )",
|
||||||
( ( ssl->handshake->extensions_present & MBEDTLS_SSL_EXT_KEY_SHARE ) > 0 ) ?
|
( ( ssl->handshake->extensions_present & MBEDTLS_SSL_EXT_KEY_SHARE ) > 0 ) ?
|
||||||
|
|
Loading…
Reference in a new issue