1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:47:36 +00:00

LibCrypto: Add some checksum algorithms

Namely CRC32 and Adler32
This commit is contained in:
stelar7 2020-07-29 20:24:54 +02:00 committed by Andreas Kling
parent 8c5f08ea94
commit dad22c5d5a
7 changed files with 358 additions and 0 deletions

View file

@ -1,6 +1,8 @@
set(SOURCES
BigInt/UnsignedBigInteger.cpp
BigInt/SignedBigInteger.cpp
Checksum/Adler32.cpp
Checksum/CRC32.cpp
Cipher/AES.cpp
Hash/MD5.cpp
Hash/SHA1.cpp