ladybird/Userland/Libraries/LibCrypto/CMakeLists.txt

33 lines
812 B
Text
Raw Normal View History

add_compile_options(-Wvla)
set(SOURCES
ASN1/ASN1.cpp
ASN1/DER.cpp
ASN1/PEM.cpp
2020-11-11 09:47:23 +00:00
Authentication/GHash.cpp
2022-04-06 22:16:32 +00:00
Authentication/Poly1305.cpp
BigInt/Algorithms/BitwiseOperations.cpp
BigInt/Algorithms/Division.cpp
BigInt/Algorithms/GCD.cpp
BigInt/Algorithms/ModularInverse.cpp
BigInt/Algorithms/ModularPower.cpp
BigInt/Algorithms/Multiplication.cpp
BigInt/Algorithms/SimpleOperations.cpp
BigInt/SignedBigInteger.cpp
BigInt/UnsignedBigInteger.cpp
Checksum/Adler32.cpp
Checksum/CRC32.cpp
Cipher/AES.cpp
Curves/SECP256r1.cpp
2022-02-13 00:01:31 +00:00
Curves/X25519.cpp
2022-02-18 15:41:23 +00:00
Curves/X448.cpp
Hash/MD5.cpp
Hash/SHA1.cpp
Hash/SHA2.cpp
NumberTheory/ModularFunctions.cpp
PK/RSA.cpp
)
serenity_lib(LibCrypto crypto)
target_link_libraries(LibCrypto LibC LibCore)