mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-12 23:35:26 +00:00
Fix error in psa_crypto test suite
The cipher_bad_order test happened to pass, but was not testing the failure case it intended to test. Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
eaacabf98d
commit
33b58eeb36
|
@ -2366,6 +2366,7 @@ void cipher_bad_order( )
|
|||
PSA_ASSERT( psa_cipher_abort( &operation ) );
|
||||
|
||||
/* Call update without an IV where an IV is required. */
|
||||
PSA_ASSERT( psa_cipher_encrypt_setup( &operation, key, alg ) );
|
||||
TEST_EQUAL( psa_cipher_update( &operation,
|
||||
text, sizeof( text ),
|
||||
buffer, sizeof( buffer ),
|
||||
|
|
Loading…
Reference in a new issue