aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/tls_server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/tls/tls_server.cpp')
-rw-r--r--src/lib/tls/tls_server.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/tls/tls_server.cpp b/src/lib/tls/tls_server.cpp
index 9f1dfe1d1..f20e363cf 100644
--- a/src/lib/tls/tls_server.cpp
+++ b/src/lib/tls/tls_server.cpp
@@ -168,13 +168,9 @@ uint16_t choose_ciphersuite(
const bool have_shared_ecc_curve =
(policy.choose_curve(client_hello.supported_ecc_curves()) != "");
- const bool have_shared_dh_group =
- (policy.choose_dh_group(client_hello.supported_dh_groups()) != "");
-
/*
Walk down one list in preference order
*/
-
std::vector<uint16_t> pref_list = server_suites;
std::vector<uint16_t> other_list = client_suites;
@@ -196,9 +192,6 @@ uint16_t choose_ciphersuite(
if(suite.ecc_ciphersuite() && have_shared_ecc_curve == false)
continue;
- if(suite.kex_algo() == "DH" && have_shared_dh_group == false)
- continue;
-
// For non-anon ciphersuites
if(suite.sig_algo() != "")
{