aboutsummaryrefslogtreecommitdiffstats
path: root/test/crypto/crypto_test.mk
diff options
context:
space:
mode:
authorareviu <areviu.info@gmail.com>2018-05-19 13:15:06 +0000
committerareviu <areviu.info@gmail.com>2018-05-19 13:15:06 +0000
commit7454fa6ad5597582688495252c801c8daeeaf07e (patch)
tree48d89549877a21be7d22fe922d45ff70a2c65df4 /test/crypto/crypto_test.mk
parente9399566d7eaa76ca6114d108d1b7bf34fca157b (diff)
downloadChibiOS-7454fa6ad5597582688495252c801c8daeeaf07e.tar.gz
ChibiOS-7454fa6ad5597582688495252c801c8daeeaf07e.tar.bz2
ChibiOS-7454fa6ad5597582688495252c801c8daeeaf07e.zip
added SAMA HMAC + fixed TRNG 128 bit generation
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12042 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'test/crypto/crypto_test.mk')
-rw-r--r--test/crypto/crypto_test.mk14
1 files changed, 8 insertions, 6 deletions
diff --git a/test/crypto/crypto_test.mk b/test/crypto/crypto_test.mk
index 1e53235f3..787fa1d66 100644
--- a/test/crypto/crypto_test.mk
+++ b/test/crypto/crypto_test.mk
@@ -1,9 +1,10 @@
# List of all the ChibiOS OS Library test files.
-TESTSRC += ${CHIBIOS}/test/crypto/source/test/cry_test_root.c \
- ${CHIBIOS}/test/crypto/source/testref/ref_aes.c \
- ${CHIBIOS}/test/crypto/source/testref/ref_des.c \
- ${CHIBIOS}/test/crypto/source/testref/ref_sha.c \
- ${CHIBIOS}/test/crypto/source/testref/ref_gcm.c \
+TESTSRC += ${CHIBIOS}/test/crypto/source/test/cry_test_root.c \
+ ${CHIBIOS}/test/crypto/source/testref/ref_aes.c \
+ ${CHIBIOS}/test/crypto/source/testref/ref_des.c \
+ ${CHIBIOS}/test/crypto/source/testref/ref_sha.c \
+ ${CHIBIOS}/test/crypto/source/testref/ref_gcm.c \
+ ${CHIBIOS}/test/crypto/source/testref/ref_hmac.c \
${CHIBIOS}/test/crypto/source/test/cry_test_sequence_001.c \
${CHIBIOS}/test/crypto/source/test/cry_test_sequence_002.c \
${CHIBIOS}/test/crypto/source/test/cry_test_sequence_003.c \
@@ -11,7 +12,8 @@ TESTSRC += ${CHIBIOS}/test/crypto/source/test/cry_test_root.c \
${CHIBIOS}/test/crypto/source/test/cry_test_sequence_005.c \
${CHIBIOS}/test/crypto/source/test/cry_test_sequence_006.c \
${CHIBIOS}/test/crypto/source/test/cry_test_sequence_007.c \
- ${CHIBIOS}/test/crypto/source/test/cry_test_sequence_008.c
+ ${CHIBIOS}/test/crypto/source/test/cry_test_sequence_008.c \
+ ${CHIBIOS}/test/crypto/source/test/cry_test_sequence_009.c
# Required include directories
TESTINC += ${CHIBIOS}/test/crypto/source/testref \
${CHIBIOS}/test/crypto/source/test