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

LibCrypto: Implement HMAC

This commit is contained in:
AnotherTest 2020-04-08 01:54:50 +04:30 committed by Andreas Kling
parent 4f89a377a4
commit f2cd004d11
8 changed files with 249 additions and 3 deletions

View file

@ -49,6 +49,7 @@ namespace Hash {
virtual void update(const StringView& string) = 0;
virtual DigestType digest() = 0;
virtual String class_name() const = 0;
};
}
}