fix decrypt method

This commit is contained in:
avinal
2021-03-21 23:52:59 +05:30
parent f22fb40396
commit 527107c7ae

View File

@@ -34,7 +34,7 @@ public:
~Encryptor();
uint64_t blowfish_encrypt(std::vector<char> &input_buf,
std::string const &key, uint64_t in_size);
uint64_t blowfish_decrypt(std::vector<char> const &input_buf,
uint64_t blowfish_decrypt(std::vector<char> &input_buf,
std::string const &key, uint64_t in_size);
};