summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEd Tanous <ed.tanous@intel.com>2018-05-16 10:06:21 -0700
committerEd Tanous <ed.tanous@intel.com>2018-06-29 18:50:34 +0000
commit8233d42c00887be95e41b90ece42f603b2fe7be2 (patch)
tree81f3c8c2578b79d1ab8dfb75400240d84188a47a /include
parentc3ee522f9a2950d9ce21bd0c8962624476ffe343 (diff)
downloadbmcweb-8233d42c00887be95e41b90ece42f603b2fe7be2.tar.gz
bmcweb-8233d42c00887be95e41b90ece42f603b2fe7be2.zip
Move bmcweb to mozilla compatibility ciphers
Problems were found in compatibility with older versions of curl and wget. At some point, this option needs to be made runtime configurable. Tested by: Using curl to log into rest API. Logging into webui. Change-Id: I29620cbae73735e846efc1cc22df6899dbe595df Signed-off-by: Ed Tanous <ed.tanous@intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/ssl_key_handler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ssl_key_handler.hpp b/include/ssl_key_handler.hpp
index ef512e6..4db4a8f 100644
--- a/include/ssl_key_handler.hpp
+++ b/include/ssl_key_handler.hpp
@@ -303,7 +303,7 @@ inline boost::asio::ssl::context get_ssl_context(
std::string aes_only_ciphers = "AES128+EECDH:AES128+EDH:!aNULL:!eNULL";
if (SSL_CTX_set_cipher_list(m_ssl_context.native_handle(),
- mozilla_modern_ciphers.c_str()) != 1) {
+ mozilla_compatibility_ciphers.c_str()) != 1) {
CROW_LOG_ERROR << "Error setting cipher list\n";
}
return m_ssl_context;
OpenPOWER on IntegriCloud