summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto/CMakeLists.txt
AgeCommit message (Collapse)Author
2021-05-13LibCrypto: Split BigInteger operations into an Algorithms classDexesTTP
Since the operations are already complicated and will become even more so soon, let's split them into their own files. We can also integrate the NumberTheory operations that would better fit there into this class as well. This commit doesn't change behaviors, but moves the allocation of some variables into caller classes.
2021-05-13LibCrypto: Enable -Wvla for LibCryptoAli Mohammad Pur
Resolves part of #7071.
2021-02-14LibCrypto: Make a better ASN.1 parserAnotherTest
And use it to parse RSA keys. As a bonus, this one shouldn't be reading out of bounds or messing with the stack (as much) anymore.
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling