aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/tls_server.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-07-22 05:38:26 -0400
committerJack Lloyd <[email protected]>2019-07-22 05:40:29 -0400
commitf67ce4df7f47587fc0e5d11296baa9d9b44c63e4 (patch)
tree0ff86fa3c1e2c79fdc1996ff0450d1eec4787ae7 /src/cli/tls_server.cpp
parent300d9b08e1ca4bf52116c01324e0f56ccb9be0d2 (diff)
In CLI support setting TLS policy to any known type
Previously you could only do either a file or the default policy, and tls_proxy was hardcoded to only do the default policy.
Diffstat (limited to 'src/cli/tls_server.cpp')
-rw-r--r--src/cli/tls_server.cpp20
1 files changed, 2 insertions, 18 deletions
diff --git a/src/cli/tls_server.cpp b/src/cli/tls_server.cpp
index 0a133cffd..98cb611d4 100644
--- a/src/cli/tls_server.cpp
+++ b/src/cli/tls_server.cpp
@@ -26,7 +26,7 @@
#include <list>
#include <fstream>
-#include "credentials.h"
+#include "tls_helpers.h"
#include "socket_utils.h"
namespace Botan_CLI {
@@ -77,23 +77,7 @@ class TLS_Server final : public Command, public Botan::TLS::Callbacks
m_is_tcp = (transport == "tcp");
- std::unique_ptr<Botan::TLS::Policy> policy;
- const std::string policy_file = get_arg("policy");
- if(policy_file.size() > 0)
- {
- std::ifstream policy_stream(policy_file);
- if(!policy_stream.good())
- {
- error_output() << "Failed reading policy file\n";
- return;
- }
- policy.reset(new Botan::TLS::Text_Policy(policy_stream));
- }
-
- if(!policy)
- {
- policy.reset(new Botan::TLS::Policy);
- }
+ auto policy = load_tls_policy(get_arg("policy"));
Botan::TLS::Session_Manager_In_Memory session_manager(rng()); // TODO sqlite3