mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
psa_tls12_prf_psk_to_ms_set_key: clear buffers after usage
Signed-off-by: Przemek Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
parent
937b90febf
commit
03faf5d2c1
|
|
@ -5313,6 +5313,7 @@ static psa_status_t psa_tls12_prf_psk_to_ms_set_key(
|
|||
if ( prf->other_secret_length != 0 )
|
||||
{
|
||||
memcpy( cur, prf->other_secret, prf->other_secret_length );
|
||||
mbedtls_platform_zeroize( prf->other_secret, prf->other_secret_length );
|
||||
cur += prf->other_secret_length;
|
||||
}
|
||||
}
|
||||
|
|
@ -5327,6 +5328,7 @@ static psa_status_t psa_tls12_prf_psk_to_ms_set_key(
|
|||
*cur++ = MBEDTLS_BYTE_1( data_length );
|
||||
*cur++ = MBEDTLS_BYTE_0( data_length );
|
||||
memcpy( cur, data, data_length );
|
||||
mbedtls_platform_zeroize( (void*) data, data_length );
|
||||
cur += data_length;
|
||||
|
||||
status = psa_tls12_prf_set_key( prf, pms, cur - pms );
|
||||
|
|
|
|||
Loading…
Reference in a new issue