2021-05-13 12:14:35 +04:30
|
|
|
add_compile_options(-Wvla)
|
|
|
|
|
2020-05-06 18:40:06 +03:00
|
|
|
set(SOURCES
|
2023-09-25 19:46:21 +02:00
|
|
|
AEAD/ChaCha20Poly1305.cpp
|
2021-02-14 14:50:42 +03:30
|
|
|
ASN1/ASN1.cpp
|
|
|
|
ASN1/DER.cpp
|
|
|
|
ASN1/PEM.cpp
|
2020-11-11 13:17:23 +03:30
|
|
|
Authentication/GHash.cpp
|
2022-04-07 00:16:32 +02:00
|
|
|
Authentication/Poly1305.cpp
|
2022-01-16 12:28:51 +01:00
|
|
|
BigFraction/BigFraction.cpp
|
2021-05-10 20:55:25 +02:00
|
|
|
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
|
2020-06-04 22:46:18 +04:30
|
|
|
BigInt/SignedBigInteger.cpp
|
2020-08-15 23:20:33 +02:00
|
|
|
BigInt/UnsignedBigInteger.cpp
|
2020-07-29 20:24:54 +02:00
|
|
|
Checksum/Adler32.cpp
|
2024-01-17 21:15:25 +04:00
|
|
|
Checksum/cksum.cpp
|
2020-07-29 20:24:54 +02:00
|
|
|
Checksum/CRC32.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
Cipher/AES.cpp
|
2022-04-10 13:39:56 +02:00
|
|
|
Cipher/ChaCha20.cpp
|
2022-04-16 11:33:09 +02:00
|
|
|
Curves/Curve25519.cpp
|
2022-04-16 20:47:38 +02:00
|
|
|
Curves/Ed25519.cpp
|
2022-02-13 01:01:31 +01:00
|
|
|
Curves/X25519.cpp
|
2022-02-18 16:41:23 +01:00
|
|
|
Curves/X448.cpp
|
2023-09-16 17:01:54 +04:00
|
|
|
Hash/BLAKE2b.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
Hash/MD5.cpp
|
|
|
|
Hash/SHA1.cpp
|
|
|
|
Hash/SHA2.cpp
|
2020-08-15 23:20:33 +02:00
|
|
|
NumberTheory/ModularFunctions.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
PK/RSA.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
serenity_lib(LibCrypto crypto)
|
2022-10-21 21:43:56 +02:00
|
|
|
target_link_libraries(LibCrypto PRIVATE LibCore)
|