summaryrefslogtreecommitdiffstats
path: root/Cryptor.h
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2024-10-24 13:06:13 -0400
committerMalfurious <m@lfurio.us>2024-10-25 03:31:18 -0400
commit8455d3e9256bff8d4f74b3606347522ea6c381ca (patch)
tree80660a9a058033f475c49cc71c4f18ae7cca14ac /Cryptor.h
parent6285b4d8b283fb38112ec04b1cc570a8c0c9844b (diff)
downloadcompass-8455d3e9256bff8d4f74b3606347522ea6c381ca.tar.gz
compass-8455d3e9256bff8d4f74b3606347522ea6c381ca.zip
Remove remote-host and port options
Support for remote keychains is removed, so also remove the associated command-line options. Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'Cryptor.h')
-rw-r--r--Cryptor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Cryptor.h b/Cryptor.h
index 94af673..6afe6f2 100644
--- a/Cryptor.h
+++ b/Cryptor.h
@@ -42,8 +42,8 @@ struct PasswordSpec {
class Cryptor {
public:
- static void encryptAndSave(std::string remoteHost, std::string port, std::string directory, std::string payload);
- static std::string loadAndDecrypt(std::string remoteHost, std::string port, std::string directory);
+ static void encryptAndSave(std::string directory, std::string payload);
+ static std::string loadAndDecrypt(std::string directory);
static std::string createRandomPassword(PasswordSpec spec);
static void rekey();