mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:17:35 +00:00
LibCrypto: Implement HMAC
This commit is contained in:
parent
4f89a377a4
commit
f2cd004d11
8 changed files with 249 additions and 3 deletions
|
@ -120,6 +120,8 @@ namespace Cipher {
|
|||
virtual void encrypt_block(const BlockType& in, BlockType& out) override;
|
||||
virtual void decrypt_block(const BlockType& in, BlockType& out) override;
|
||||
|
||||
virtual String class_name() const override { return "AES"; }
|
||||
|
||||
protected:
|
||||
AESCipherKey m_key;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue