mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 10:19:20 +00:00
LibCrypto: Remove spurious ;
This commit is contained in:
parent
25251f1b05
commit
1f4a27b80e
Notes:
sideshowbarker
2024-07-17 21:39:50 +09:00
Author: https://github.com/mhermier
Commit: 1f4a27b80e
Pull-request: https://github.com/SerenityOS/serenity/pull/11605
Reviewed-by: https://github.com/alimpfard
2 changed files with 7 additions and 7 deletions
|
@ -21,15 +21,15 @@ public:
|
|||
|
||||
using DigestType = DigestT;
|
||||
|
||||
constexpr static size_t block_size() { return BlockSize; };
|
||||
constexpr static size_t digest_size() { return DigestSize; };
|
||||
constexpr static size_t block_size() { return BlockSize; }
|
||||
constexpr static size_t digest_size() { return DigestSize; }
|
||||
|
||||
virtual void update(const u8*, size_t) = 0;
|
||||
|
||||
void update(Bytes buffer) { update(buffer.data(), buffer.size()); };
|
||||
void update(ReadonlyBytes buffer) { update(buffer.data(), buffer.size()); };
|
||||
void update(const ByteBuffer& buffer) { update(buffer.data(), buffer.size()); };
|
||||
void update(StringView string) { update((const u8*)string.characters_without_null_termination(), string.length()); };
|
||||
void update(Bytes buffer) { update(buffer.data(), buffer.size()); }
|
||||
void update(ReadonlyBytes buffer) { update(buffer.data(), buffer.size()); }
|
||||
void update(const ByteBuffer& buffer) { update(buffer.data(), buffer.size()); }
|
||||
void update(StringView string) { update((const u8*)string.characters_without_null_termination(), string.length()); }
|
||||
|
||||
virtual DigestType peek() = 0;
|
||||
virtual DigestType digest() = 0;
|
||||
|
|
|
@ -61,7 +61,7 @@ public:
|
|||
virtual String class_name() const override
|
||||
{
|
||||
return "SHA1";
|
||||
};
|
||||
}
|
||||
inline virtual void reset() override
|
||||
{
|
||||
m_data_length = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue