summaryrefslogtreecommitdiffstats
path: root/Cryptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Cryptor.cpp')
-rw-r--r--Cryptor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cryptor.cpp b/Cryptor.cpp
index 1cce31e..0d2dd71 100644
--- a/Cryptor.cpp
+++ b/Cryptor.cpp
@@ -25,7 +25,7 @@ static void fromHex(void *output, const char *input) {
}
}
-void Cryptor::encryptAndSave(std::string remoteHost, std::string port, std::string directory, std::string payload) {
+void Cryptor::encryptAndSave(std::string directory, std::string payload) {
// Key
if (!haveKey) {
assembleKey(true);
@@ -71,7 +71,7 @@ void Cryptor::encryptAndSave(std::string remoteHost, std::string port, std::stri
f.close();
}
-std::string Cryptor::loadAndDecrypt(std::string remoteHost, std::string port, std::string directory) {
+std::string Cryptor::loadAndDecrypt(std::string directory) {
// Load Data
std::string encIV, encCipher;