1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-03 10:08:42 +00:00
serenity/Tests/LibTLS/CMakeLists.txt
Tim Ledbetter e6d9bb0774 LibTLS: Don't attempt to read past EOF when parsing TBSCertificate
This allows the decoder to fail gracefully when reading a partial or
malformed TBSCertificate. We also now ensure that the certificate data
is valid before making a copy of it.
2023-10-11 07:08:22 +02:00

9 lines
189 B
CMake

set(TEST_SOURCES
TestTLSCertificateParser.cpp
TestTLSHandshake.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibTLS LIBS LibTLS LibCrypto)
endforeach()