Files
ladybird/Tests/LibCrypto/CMakeLists.txt
Tete17 2451a9c74b LibCrypto: Implement key pair generation for ML-DSA algorithm
This is the first post quantum algorithm in the project
2025-12-10 21:26:06 +01:00

22 lines
401 B
CMake

set(TEST_SOURCES
TestAES.cpp
TestASN1.cpp
TestBigFraction.cpp
TestBigInteger.cpp
TestCurves.cpp
TestEd25519.cpp
TestEd448.cpp
TestHash.cpp
TestHKDF.cpp
TestHMAC.cpp
TestMLDSA.cpp
TestOAEP.cpp
TestPBKDF2.cpp
TestPSS.cpp
TestRSA.cpp
)
foreach(source IN LISTS TEST_SOURCES)
ladybird_test("${source}" LibCrypto LIBS LibCrypto)
endforeach()