Skip to content

Commit d63a180

Browse files
authored
Merge pull request wolfSSL#8513 from SparkiDev/api_c_split_ciphers
Test api.c: split out MACs and ciphers
2 parents 7d0ef5b + 4830035 commit d63a180

28 files changed

+6217
-5124
lines changed

CMakeLists.txt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2512,7 +2512,6 @@ if(WOLFSSL_EXAMPLES)
25122512
# Build unit tests
25132513
add_executable(unit_test
25142514
tests/api.c
2515-
tests/api/test_dtls.c
25162515
tests/api/test_md5.c
25172516
tests/api/test_sha.c
25182517
tests/api/test_sha256.c
@@ -2522,8 +2521,21 @@ if(WOLFSSL_EXAMPLES)
25222521
tests/api/test_sm3.c
25232522
tests/api/test_ripemd.c
25242523
tests/api/test_hash.c
2524+
tests/api/test_hmac.c
2525+
tests/api/test_cmac.c
2526+
tests/api/test_des3.c
2527+
tests/api/test_chacha.c
2528+
tests/api/test_poly1305.c
2529+
tests/api/test_chacha20_poly1305.c
2530+
tests/api/test_camellia.c
2531+
tests/api/test_arc4.c
2532+
tests/api/test_rc2.c
2533+
tests/api/test_aes.c
25252534
tests/api/test_ascon.c
2535+
tests/api/test_sm4.c
2536+
tests/api/test_wc_encrypt.c
25262537
tests/api/test_mlkem.c
2538+
tests/api/test_dtls.c
25272539
tests/api/test_ocsp.c
25282540
tests/hash.c
25292541
tests/srp.c

0 commit comments

Comments
 (0)