summaryrefslogtreecommitdiff
path: root/Libraries/LibCrypto/CMakeLists.txt
blob: bda4aa5d20f9b7c5cf07e7a0192e14f3d25b5387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
set(SOURCES
    Authentication/GHash.cpp
    BigInt/SignedBigInteger.cpp
    BigInt/UnsignedBigInteger.cpp
    Checksum/Adler32.cpp
    Checksum/CRC32.cpp
    Cipher/AES.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)