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

LibCrypto: Move large functions to cpp file

If they use up so much stack space, contain (sometimes several) loops, and take
a noticable amount of time anyway, then 'inline' is probably going to be ignored
by the compiler anyway.
This commit is contained in:
Ben Wiederhake 2020-08-15 23:20:33 +02:00 committed by Andreas Kling
parent bbed5b99fd
commit b7589ff4b6
3 changed files with 371 additions and 326 deletions

View file

@ -1,12 +1,13 @@
set(SOURCES
BigInt/UnsignedBigInteger.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
)