Skip to content

Commit 4fe5a41

Browse files
author
Oren Cohen
committed
Fix bug in crypto_acl test
1 parent ca06f94 commit 4fe5a41

File tree

1 file changed

+1
-1
lines changed
  • TESTS/psa/crypto_access_control/COMPONENT_NSPE

1 file changed

+1
-1
lines changed

TESTS/psa/crypto_access_control/COMPONENT_NSPE/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ void test_use_other_partition_key_asymmetric_sign_verify(void)
364364

365365
/* try to asymmetric verify using the key that was created by the test partition */
366366
TEST_ASSERT_EQUAL(PSA_ERROR_INVALID_HANDLE, psa_asymmetric_verify(key_handle, key_alg, input, sizeof(input),
367-
signature, len));
367+
signature, sizeof(signature)));
368368

369369
/* via test partition - close the key created by the test partition */
370370
TEST_ASSERT_EQUAL(PSA_SUCCESS, test_partition_crypto_close_key(key_handle));

0 commit comments

Comments
 (0)