summaryrefslogtreecommitdiff
path: root/Libraries/LibCrypto/Hash/MD5.cpp
AgeCommit message (Collapse)Author
2020-05-02LibCrypto+LibTLS: Reformat everythingAnotherTest
I have no idea how I'll squash _this_ one...
2020-05-02LibCrypto: Fix issues in the Crypto stackAnotherTest
This commit fixes up the following: - HMAC should not reuse a single hasher when successively updating - AES Key should not assume its user key is valid signed char* - Mode should have a virtual destructor And adds a RFC5246 padding mode, which is required for TLS
2020-05-02LibCrypto: Add SHA512AnotherTest
There is quite a bit of avoidable duplication, however, I could not get the compiler to be happy about SHA2<Size> (see FIXMEs)
2020-05-02LibCrypto: Move each subsection into its own namespaceAnotherTest
2020-05-02LibCrypto: Add HashFunction and implement MD5AnotherTest