feat(hal/crypto): Add XTS-AES peripheral verification tests in the crypto test app

This commit is contained in:
harshal.patil
2024-10-14 16:25:46 +05:30
parent c6ea979efa
commit a2d6be9976
11 changed files with 476 additions and 1 deletions

View File

@@ -48,6 +48,10 @@ static void run_all_tests(void)
RUN_TEST_GROUP(ecdsa)
#endif
#if CONFIG_SOC_FLASH_ENCRYPTION_XTS_AES && CONFIG_CRYPTO_TEST_APP_ENABLE_XTS_AES_TESTS
RUN_TEST_GROUP(xts_aes)
#endif
#endif /* CONFIG_CRYPTO_TEST_APP_ENABLE_FPGA_TESTS */
}