From b5a3600bc76cf38f1a83b612450fb56c5ff2752b Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Fri, 27 Jan 2023 17:08:02 +0000 Subject: [PATCH] LibCrypto: Remove declarations for non-existent methods --- Userland/Libraries/LibCrypto/Authentication/GHash.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibCrypto/Authentication/GHash.h b/Userland/Libraries/LibCrypto/Authentication/GHash.h index eb8837a03f..5924fcec7a 100644 --- a/Userland/Libraries/LibCrypto/Authentication/GHash.h +++ b/Userland/Libraries/LibCrypto/Authentication/GHash.h @@ -58,8 +58,6 @@ public: TagType process(ReadonlyBytes aad, ReadonlyBytes cipher); private: - inline void transform(ReadonlyBytes, ReadonlyBytes); - u32 m_key[4]; };