1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:57:46 +00:00

LibTLS: Remove some unused/unimplemented declarations

This commit is contained in:
Ali Mohammad Pur 2022-02-04 13:58:44 +03:30 committed by Andreas Kling
parent aafc451016
commit 6f5ab30253

View file

@ -246,12 +246,8 @@ struct Options {
};
struct Context {
String to_string() const;
bool verify() const;
bool verify_chain() const;
static void print_file(StringView fname);
Options options;
u8 remote_random[32];
@ -471,8 +467,6 @@ private:
ssize_t handle_message(ReadonlyBytes);
ssize_t handle_random(ReadonlyBytes);
size_t asn1_length(ReadonlyBytes, size_t* octets);
void pseudorandom_function(Bytes output, ReadonlyBytes secret, const u8* label, size_t label_length, ReadonlyBytes seed, ReadonlyBytes seed_b);
size_t key_length() const