diff options
author | Jack Lloyd <[email protected]> | 2018-12-01 17:03:39 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-12-01 17:03:39 -0500 |
commit | 803106b0aa320f62f639751e8405807810650af4 (patch) | |
tree | 2e9e775afc80f38b91ef8ba501d14bc6238d2cea /src/cli/tls_proxy.cpp | |
parent | 45f643a1ab837c0965f6182a62493f41bf714e68 (diff) |
Support getting a passphrase from most of the cli tools
Diffstat (limited to 'src/cli/tls_proxy.cpp')
-rw-r--r-- | src/cli/tls_proxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/tls_proxy.cpp b/src/cli/tls_proxy.cpp index 717bbc6c6..49ffbe376 100644 --- a/src/cli/tls_proxy.cpp +++ b/src/cli/tls_proxy.cpp @@ -453,7 +453,7 @@ class TLS_Proxy final : public Command std::unique_ptr<Botan::TLS::Session_Manager> session_mgr; #if defined(BOTAN_HAS_TLS_SQLITE3_SESSION_MANAGER) - const std::string sessions_passphrase = get_arg("session-db-pass"); + const std::string sessions_passphrase = get_passphrase_arg("Session DB passphrase", "session-db-pass"); const std::string sessions_db = get_arg("session-db"); if(!sessions_db.empty()) |