From 60455676a23fac8ebce0b4d1904940f043a37d0a Mon Sep 17 00:00:00 2001 From: yanczi Date: Sat, 22 Nov 2025 17:02:15 +0100 Subject: [PATCH] =?UTF-8?q?BLAKE2b=20nag=C5=82=C3=B3wek=20zakomentowane?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EncryptionManager.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/EncryptionManager.h b/EncryptionManager.h index c795bd7..b502b1b 100644 --- a/EncryptionManager.h +++ b/EncryptionManager.h @@ -45,6 +45,10 @@ public: void saveKey(const std::string&, bool); void loadKey(const std::string&); + // Generowanie hash BLAKE2b + //static std::array hashBlake(const std::vector&); + //static bool compareBlake(const std::vector&, const std::array&); + private: std::array key{}; bool keyReady;