mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-01-30 15:32:58 +00:00
fix PSA_BLOCK_CIPHER_BLOCK_SIZE() argument in test code
This commit is contained in:
parent
1f6643b20e
commit
adb9b2372b
@ -108,9 +108,9 @@ static int exercise_cipher_key( psa_key_slot_t key,
|
||||
if( usage & PSA_KEY_USAGE_DECRYPT )
|
||||
{
|
||||
psa_status_t status;
|
||||
psa_key_type_t type = PSA_KEY_TYPE_NONE;
|
||||
if( ! ( usage & PSA_KEY_USAGE_ENCRYPT ) )
|
||||
{
|
||||
psa_key_type_t type;
|
||||
size_t bits;
|
||||
TEST_ASSERT( psa_get_key_information( key, &type, &bits ) );
|
||||
iv_length = PSA_BLOCK_CIPHER_BLOCK_SIZE( type );
|
||||
@ -130,7 +130,7 @@ static int exercise_cipher_key( psa_key_slot_t key,
|
||||
* if the input is some aribtrary data rather than an actual
|
||||
ciphertext, a padding error is likely. */
|
||||
if( ( usage & PSA_KEY_USAGE_DECRYPT ) ||
|
||||
PSA_BLOCK_CIPHER_BLOCK_SIZE( alg ) == 1 )
|
||||
PSA_BLOCK_CIPHER_BLOCK_SIZE( type ) == 1 )
|
||||
TEST_ASSERT( status == PSA_SUCCESS );
|
||||
else
|
||||
TEST_ASSERT( status == PSA_SUCCESS ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user