mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
6d5b1703a2
(cherry picked from commit 8abd399a531a6beb864519fb0ae35d9c193cff03; amended to use VERIFY instead of ASSERT in HKDF.h)
23 lines
457 B
CMake
23 lines
457 B
CMake
set(TEST_SOURCES
|
|
TestAES.cpp
|
|
TestASN1.cpp
|
|
TestBigFraction.cpp
|
|
TestBigInteger.cpp
|
|
TestChaCha20.cpp
|
|
TestChacha20Poly1305.cpp
|
|
TestChecksum.cpp
|
|
TestCurves.cpp
|
|
TestEd25519.cpp
|
|
TestHash.cpp
|
|
TestHKDF.cpp
|
|
TestHMAC.cpp
|
|
TestMGF.cpp
|
|
TestOAEP.cpp
|
|
TestPBKDF2.cpp
|
|
TestPoly1305.cpp
|
|
TestRSA.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibCrypto LIBS LibCrypto)
|
|
endforeach()
|