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:
parent
ebe10de167
commit
ef0cb40736
1 changed files with 1 additions and 1 deletions
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue