Skip to content

Commit 4830035

Browse files
committed
Test api.c: split out MACs and ciphers
1 parent 307b71c commit 4830035

28 files changed

+6217
-5124
lines changed

CMakeLists.txt

+13-1
Original file line numberDiff line numberDiff line change
@@ -2501,7 +2501,6 @@ if(WOLFSSL_EXAMPLES)
25012501
# Build unit tests
25022502
add_executable(unit_test
25032503
tests/api.c
2504-
tests/api/test_dtls.c
25052504
tests/api/test_md5.c
25062505
tests/api/test_sha.c
25072506
tests/api/test_sha256.c
@@ -2511,8 +2510,21 @@ if(WOLFSSL_EXAMPLES)
25112510
tests/api/test_sm3.c
25122511
tests/api/test_ripemd.c
25132512
tests/api/test_hash.c
2513+
tests/api/test_hmac.c
2514+
tests/api/test_cmac.c
2515+
tests/api/test_des3.c
2516+
tests/api/test_chacha.c
2517+
tests/api/test_poly1305.c
2518+
tests/api/test_chacha20_poly1305.c
2519+
tests/api/test_camellia.c
2520+
tests/api/test_arc4.c
2521+
tests/api/test_rc2.c
2522+
tests/api/test_aes.c
25142523
tests/api/test_ascon.c
2524+
tests/api/test_sm4.c
2525+
tests/api/test_wc_encrypt.c
25152526
tests/api/test_mlkem.c
2527+
tests/api/test_dtls.c
25162528
tests/api/test_ocsp.c
25172529
tests/hash.c
25182530
tests/srp.c

0 commit comments

Comments
 (0)