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

LibCrypto: Mutualize Digests

This commit is contained in:
Michel Hermier 2022-01-03 22:28:19 +01:00 committed by Ali Mohammad Pur
parent 4e851145ba
commit 3f0e425f1e
5 changed files with 21 additions and 33 deletions

View file

@ -77,7 +77,7 @@ struct MultiHashDigestVariant {
DigestVariant m_digest {};
};
class Manager final : public HashFunction<0, MultiHashDigestVariant> {
class Manager final : public HashFunction<0, 0, MultiHashDigestVariant> {
public:
using HashFunction::update;