test: pake: fix: destroy key only in opaque case

Signed-off-by: Valerio Setti <vsetti@baylibre.com>
This commit is contained in:
Valerio Setti 2022-12-09 14:35:10 +01:00
parent 016f682796
commit 31e99bb0c7

View file

@ -6264,7 +6264,10 @@ void ssl_ecjpake_set_password( int use_opaque_arg )
ECJPAKE_TEST_SET_PASSWORD( 0 );
#if defined( MBEDTLS_USE_PSA_CRYPTO )
psa_destroy_key( pwd_slot );
if( use_opaque_arg )
{
psa_destroy_key( pwd_slot );
}
#endif /* MBEDTLS_USE_PSA_CRYPTO */
mbedtls_ssl_free( &ssl );
mbedtls_ssl_config_free( &conf );