Use memcmp instead of reinventing it

Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
Thomas Daubney 2023-07-28 15:21:46 +01:00
parent 9730cb1274
commit a2b7519d63

View file

@ -134,14 +134,13 @@ int main(void)
return EXIT_FAILURE;
}
for (size_t j = 0; j < test_sha256_hash_len; j++) {
if (hash[j] != test_sha256_hash[j]) {
if (memcmp(hash, test_sha256_hash, test_sha256_hash_len) != 0)
{
mbedtls_printf("One-shot hash operation gave the wrong result!\n\n");
psa_hash_abort(&hash_operation);
psa_hash_abort(&cloned_hash_operation);
return EXIT_FAILURE;
}
}
mbedtls_printf("One-shot hash operation successful!\n\n");