LibCrypto: Implement HMAC

This commit is contained in:
AnotherTest 2020-04-08 01:54:50 +04:30 committed by Andreas Kling
commit f2cd004d11
Notes: sideshowbarker 2024-07-19 07:06:16 +09:00
8 changed files with 249 additions and 3 deletions

View file

@ -129,6 +129,8 @@ namespace Cipher {
virtual void encrypt_block(const BlockType& in, BlockType& out) = 0;
virtual void decrypt_block(const BlockType& in, BlockType& out) = 0;
virtual String class_name() const = 0;
private:
PaddingMode m_padding_mode;
};