mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-05-11 14:38:17 +02:00
Fix key slot being used uninitialised on error
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
@@ -3240,7 +3240,7 @@ psa_status_t psa_aead_encrypt_setup( psa_aead_operation_t *operation,
|
||||
{
|
||||
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
||||
psa_status_t unlock_status = PSA_ERROR_CORRUPTION_DETECTED;
|
||||
psa_key_slot_t *slot;
|
||||
psa_key_slot_t *slot = NULL;
|
||||
|
||||
if( !PSA_ALG_IS_AEAD( alg ) || PSA_ALG_IS_WILDCARD( alg ) )
|
||||
{
|
||||
@@ -3282,10 +3282,13 @@ psa_status_t psa_aead_encrypt_setup( psa_aead_operation_t *operation,
|
||||
|
||||
exit:
|
||||
|
||||
unlock_status = psa_unlock_key_slot( slot );
|
||||
if( slot )
|
||||
{
|
||||
unlock_status = psa_unlock_key_slot( slot );
|
||||
|
||||
if( unlock_status != PSA_SUCCESS )
|
||||
status = unlock_status;
|
||||
if( unlock_status != PSA_SUCCESS )
|
||||
status = unlock_status;
|
||||
}
|
||||
|
||||
if( status == PSA_SUCCESS )
|
||||
operation->alg = psa_aead_get_base_algorithm( alg );
|
||||
@@ -3302,7 +3305,7 @@ psa_status_t psa_aead_decrypt_setup( psa_aead_operation_t *operation,
|
||||
{
|
||||
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
||||
psa_status_t unlock_status = PSA_ERROR_CORRUPTION_DETECTED;
|
||||
psa_key_slot_t *slot;
|
||||
psa_key_slot_t *slot = NULL;
|
||||
|
||||
if( !PSA_ALG_IS_AEAD( alg ) || PSA_ALG_IS_WILDCARD( alg ) )
|
||||
{
|
||||
@@ -3344,10 +3347,13 @@ psa_status_t psa_aead_decrypt_setup( psa_aead_operation_t *operation,
|
||||
|
||||
exit:
|
||||
|
||||
unlock_status = psa_unlock_key_slot( slot );
|
||||
if( slot )
|
||||
{
|
||||
unlock_status = psa_unlock_key_slot( slot );
|
||||
|
||||
if( unlock_status != PSA_SUCCESS )
|
||||
status = unlock_status;
|
||||
if( unlock_status != PSA_SUCCESS )
|
||||
status = unlock_status;
|
||||
}
|
||||
|
||||
if( status == PSA_SUCCESS )
|
||||
operation->alg = psa_aead_get_base_algorithm( alg );
|
||||
|
||||
Reference in New Issue
Block a user