From 527107c7ae056babb87bcd8b3b3927fe89993d10 Mon Sep 17 00:00:00 2001 From: avinal <185067@nith.ac.in> Date: Sun, 21 Mar 2021 23:52:59 +0530 Subject: [PATCH] fix decrypt method --- include/Encryptor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Encryptor.h b/include/Encryptor.h index 4d6fe17..adaeecd 100644 --- a/include/Encryptor.h +++ b/include/Encryptor.h @@ -34,7 +34,7 @@ public: ~Encryptor(); uint64_t blowfish_encrypt(std::vector &input_buf, std::string const &key, uint64_t in_size); - uint64_t blowfish_decrypt(std::vector const &input_buf, + uint64_t blowfish_decrypt(std::vector &input_buf, std::string const &key, uint64_t in_size); };