mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
ssl_tls13_generate_and_write_ecdh_key_exchange(): remove redundant check
This check can be removed as if the buffer is too small for the key, then export will fail. Signed-off-by: Przemek Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
@ -262,12 +262,6 @@ static int ssl_tls13_generate_and_write_ecdh_key_exchange(
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if( own_pubkey_len > (size_t)( end - buf ) )
|
|
||||||
{
|
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "No space in the buffer for ECDH public key." ) );
|
|
||||||
return( MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL );
|
|
||||||
}
|
|
||||||
|
|
||||||
*out_len = own_pubkey_len;
|
*out_len = own_pubkey_len;
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
|
Reference in New Issue
Block a user