mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibCrypto: Fix some issues preventing compilation w/ clang 10
This commit is contained in:
parent
d497521d2b
commit
2a241a11bb
Notes:
sideshowbarker
2024-07-19 05:59:21 +09:00
Author: https://github.com/alimpfard
Commit: 2a241a11bb
Pull-request: https://github.com/SerenityOS/serenity/pull/2441
3 changed files with 2 additions and 3 deletions
|
@ -53,7 +53,7 @@ public:
|
|||
return builder.build();
|
||||
}
|
||||
|
||||
virtual size_t IV_length() const { return IVSizeInBits / 8; }
|
||||
virtual size_t IV_length() const override { return IVSizeInBits / 8; }
|
||||
|
||||
virtual Optional<ByteBuffer> encrypt(const ByteBuffer& in, ByteBuffer& out, Optional<ByteBuffer> ivec = {}) override
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue