2025-02-03 17:19:22 +10:00
|
|
|
# vim:ft=automake
|
|
|
|
|
# included from Top Level Makefile.am
|
|
|
|
|
# All paths should be given relative to the
|
|
|
|
|
|
2025-01-29 13:39:59 +01:00
|
|
|
if BUILD_TESTS
|
2025-02-27 12:23:30 +10:00
|
|
|
# Digests
|
2025-03-04 16:55:05 +10:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_md2.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_md4.c
|
2025-02-03 17:19:22 +10:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_md5.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_sha.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_sha256.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_sha512.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_sha3.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_blake2.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_sm3.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_ripemd.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_hash.c
|
2025-02-27 12:23:30 +10:00
|
|
|
# MAC
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_hmac.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_cmac.c
|
|
|
|
|
# Cipher
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_des3.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_chacha.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_poly1305.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_chacha20_poly1305.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_camellia.c
|
2025-03-18 18:49:52 +00:00
|
|
|
# ARC4 implementation has been removed
|
2025-02-27 12:23:30 +10:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_rc2.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_aes.c
|
2025-02-03 17:19:22 +10:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_ascon.c
|
2025-02-27 12:23:30 +10:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_sm4.c
|
|
|
|
|
tests_unit_test_SOURCES += tests/api/test_wc_encrypt.c
|
|
|
|
|
# Signature Algorithm
|
2025-02-18 18:51:14 +10:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_mlkem.c
|
2025-02-27 12:23:30 +10:00
|
|
|
# TLS Protocol
|
2025-02-10 13:57:06 +01:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_dtls.c
|
2025-02-27 12:23:30 +10:00
|
|
|
# TLS Feature
|
2025-01-31 18:33:34 +00:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_ocsp.c
|
2025-02-28 11:44:30 -07:00
|
|
|
tests_unit_test_SOURCES += tests/api/test_evp.c
|
2025-01-29 13:39:59 +01:00
|
|
|
endif
|
2025-02-27 12:23:30 +10:00
|
|
|
|
2025-02-03 17:19:22 +10:00
|
|
|
EXTRA_DIST += tests/api/api.h
|
2025-03-04 16:55:05 +10:00
|
|
|
EXTRA_DIST += tests/api/test_md2.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_md4.h
|
2025-02-03 17:19:22 +10:00
|
|
|
EXTRA_DIST += tests/api/test_md5.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_sha.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_sha256.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_sha512.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_sha3.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_blake2.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_sm3.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_ripemd.h
|
2025-02-25 08:50:41 +10:00
|
|
|
EXTRA_DIST += tests/api/test_digest.h
|
2025-02-03 17:19:22 +10:00
|
|
|
EXTRA_DIST += tests/api/test_hash.h
|
2025-02-27 12:23:30 +10:00
|
|
|
EXTRA_DIST += tests/api/test_hmac.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_cmac.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_des3.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_chacha.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_poly1305.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_chacha20_poly1305.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_camellia.h
|
2025-03-18 18:49:52 +00:00
|
|
|
# ARC4 implementation has been removed
|
2025-02-27 12:23:30 +10:00
|
|
|
EXTRA_DIST += tests/api/test_rc2.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_aes.h
|
2025-02-03 17:19:22 +10:00
|
|
|
EXTRA_DIST += tests/api/test_ascon.h
|
2025-02-27 12:23:30 +10:00
|
|
|
EXTRA_DIST += tests/api/test_sm4.h
|
2025-02-03 17:19:22 +10:00
|
|
|
EXTRA_DIST += tests/api/test_ascon_kats.h
|
2025-02-27 12:23:30 +10:00
|
|
|
EXTRA_DIST += tests/api/test_wc_encrypt.h
|
2025-02-18 18:51:14 +10:00
|
|
|
EXTRA_DIST += tests/api/test_mlkem.h
|
2025-02-10 13:57:06 +01:00
|
|
|
EXTRA_DIST += tests/api/test_dtls.h
|
2025-01-31 18:33:34 +00:00
|
|
|
EXTRA_DIST += tests/api/test_ocsp.h
|
|
|
|
|
EXTRA_DIST += tests/api/test_ocsp_test_blobs.h
|
|
|
|
|
EXTRA_DIST += tests/api/create_ocsp_test_blobs.py
|
2025-02-28 11:44:30 -07:00
|
|
|
EXTRA_DIST += tests/api/test_evp.h
|
2025-02-03 17:19:22 +10:00
|
|
|
|