Clean up the code
- remove redundant local buffer - fix code style Signed-off-by: Przemyslaw Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
parent
4b3fff43a8
commit
0f5ecefbe9
1 changed files with 2 additions and 5 deletions
|
@ -151,7 +151,6 @@ static int ssl_tls13_generate_and_write_ecdh_key_exchange(
|
||||||
psa_status_t status = PSA_ERROR_GENERIC_ERROR;
|
psa_status_t status = PSA_ERROR_GENERIC_ERROR;
|
||||||
int ret = MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
|
int ret = MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE;
|
||||||
psa_key_attributes_t key_attributes;
|
psa_key_attributes_t key_attributes;
|
||||||
unsigned char own_pubkey[MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH];
|
|
||||||
size_t own_pubkey_len;
|
size_t own_pubkey_len;
|
||||||
mbedtls_ssl_handshake_params *handshake = ssl->handshake;
|
mbedtls_ssl_handshake_params *handshake = ssl->handshake;
|
||||||
size_t ecdh_bits = 0;
|
size_t ecdh_bits = 0;
|
||||||
|
@ -186,7 +185,7 @@ static int ssl_tls13_generate_and_write_ecdh_key_exchange(
|
||||||
|
|
||||||
/* Export the public part of the ECDH private key from PSA. */
|
/* Export the public part of the ECDH private key from PSA. */
|
||||||
status = psa_export_public_key( handshake->ecdh_psa_privkey,
|
status = psa_export_public_key( handshake->ecdh_psa_privkey,
|
||||||
own_pubkey, sizeof( own_pubkey ),
|
buf, (size_t)( end - buf ),
|
||||||
&own_pubkey_len );
|
&own_pubkey_len );
|
||||||
if( status != PSA_SUCCESS )
|
if( status != PSA_SUCCESS )
|
||||||
{
|
{
|
||||||
|
@ -204,8 +203,6 @@ static int ssl_tls13_generate_and_write_ecdh_key_exchange(
|
||||||
|
|
||||||
*out_len = own_pubkey_len;
|
*out_len = own_pubkey_len;
|
||||||
|
|
||||||
memcpy( buf, &own_pubkey, own_pubkey_len );
|
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
#endif /* MBEDTLS_ECDH_C */
|
#endif /* MBEDTLS_ECDH_C */
|
||||||
|
|
Loading…
Reference in a new issue