1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-06-24 01:41:35 +03:00

Fix bug in exercise_mac_key that almost always broke the SIGN case

That case isn't used in the test suite yet.
This commit is contained in:
Gilles Peskine
2018-07-12 16:55:59 +02:00
committed by itayzafrir
parent ebe10de167
commit ef0cb40736

View File

@ -143,7 +143,7 @@ static int exercise_mac_key( psa_key_slot_t key,
TEST_ASSERT( psa_mac_update( &operation,
input, sizeof( input ) ) == PSA_SUCCESS );
TEST_ASSERT( psa_mac_sign_finish( &operation,
mac, sizeof( input ),
mac, sizeof( mac ),
&mac_length ) == PSA_SUCCESS );
}