mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 12:17:45 +00:00
LibCrypto: Exclude class_name() methods from the Kernel
These are only used by Userland and contain infallible String allocations, so let's just ifdef them out of the Kernel.
This commit is contained in:
parent
6959e7f778
commit
c8db8d6152
16 changed files with 119 additions and 21 deletions
|
@ -7,7 +7,10 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/ByteBuffer.h>
|
||||
#include <AK/String.h>
|
||||
|
||||
#ifndef KERNEL
|
||||
# include <AK/String.h>
|
||||
#endif
|
||||
|
||||
namespace Crypto {
|
||||
namespace PK {
|
||||
|
@ -33,7 +36,9 @@ public:
|
|||
virtual void sign(ReadonlyBytes in, Bytes& out) = 0;
|
||||
virtual void verify(ReadonlyBytes in, Bytes& out) = 0;
|
||||
|
||||
#ifndef KERNEL
|
||||
virtual String class_name() const = 0;
|
||||
#endif
|
||||
|
||||
virtual size_t output_size() const = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue