Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 1 | #pragma once |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 2 | #ifdef BMCWEB_ENABLE_SSL |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 3 | |
| 4 | #include <openssl/bio.h> |
| 5 | #include <openssl/dh.h> |
| 6 | #include <openssl/dsa.h> |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 7 | #include <openssl/err.h> |
| 8 | #include <openssl/evp.h> |
| 9 | #include <openssl/pem.h> |
| 10 | #include <openssl/rand.h> |
| 11 | #include <openssl/rsa.h> |
| 12 | #include <openssl/ssl.h> |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 13 | |
Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 14 | #include <boost/asio/ssl/context.hpp> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 15 | #include <random> |
| 16 | |
| 17 | namespace ensuressl |
| 18 | { |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 19 | static void initOpenssl(); |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 20 | static void cleanupOpenssl(); |
| 21 | static EVP_PKEY *createRsaKey(); |
| 22 | static EVP_PKEY *createEcKey(); |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 23 | static void handleOpensslError(); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 24 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 25 | inline bool verifyOpensslKeyCert(const std::string &filepath) |
| 26 | { |
| 27 | bool privateKeyValid = false; |
| 28 | bool certValid = false; |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 29 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 30 | std::cout << "Checking certs in file " << filepath << "\n"; |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 31 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 32 | FILE *file = fopen(filepath.c_str(), "r"); |
| 33 | if (file != NULL) |
| 34 | { |
| 35 | EVP_PKEY *pkey = PEM_read_PrivateKey(file, NULL, NULL, NULL); |
| 36 | int rc; |
| 37 | if (pkey != nullptr) |
| 38 | { |
| 39 | RSA *rsa = EVP_PKEY_get1_RSA(pkey); |
| 40 | if (rsa != nullptr) |
| 41 | { |
| 42 | std::cout << "Found an RSA key\n"; |
| 43 | if (RSA_check_key(rsa) == 1) |
| 44 | { |
Jayanth Othayoth | 4d2849a | 2019-05-13 01:46:34 -0500 | [diff] [blame] | 45 | privateKeyValid = true; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 46 | } |
| 47 | else |
| 48 | { |
| 49 | std::cerr << "Key not valid error number " |
| 50 | << ERR_get_error() << "\n"; |
| 51 | } |
| 52 | RSA_free(rsa); |
| 53 | } |
| 54 | else |
| 55 | { |
| 56 | EC_KEY *ec = EVP_PKEY_get1_EC_KEY(pkey); |
| 57 | if (ec != nullptr) |
| 58 | { |
| 59 | std::cout << "Found an EC key\n"; |
| 60 | if (EC_KEY_check_key(ec) == 1) |
| 61 | { |
| 62 | privateKeyValid = true; |
| 63 | } |
| 64 | else |
| 65 | { |
| 66 | std::cerr << "Key not valid error number " |
| 67 | << ERR_get_error() << "\n"; |
| 68 | } |
| 69 | EC_KEY_free(ec); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | if (privateKeyValid) |
| 74 | { |
| 75 | X509 *x509 = PEM_read_X509(file, NULL, NULL, NULL); |
| 76 | if (x509 == nullptr) |
| 77 | { |
| 78 | std::cout << "error getting x509 cert " << ERR_get_error() |
| 79 | << "\n"; |
| 80 | } |
| 81 | else |
| 82 | { |
| 83 | rc = X509_verify(x509, pkey); |
| 84 | if (rc == 1) |
| 85 | { |
| 86 | certValid = true; |
| 87 | } |
| 88 | else |
| 89 | { |
| 90 | std::cerr << "Error in verifying private key signature " |
| 91 | << ERR_get_error() << "\n"; |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | EVP_PKEY_free(pkey); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 97 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 98 | fclose(file); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 99 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 100 | return certValid; |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 101 | } |
| 102 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 103 | inline void generateSslCertificate(const std::string &filepath) |
| 104 | { |
| 105 | FILE *pFile = NULL; |
| 106 | std::cout << "Generating new keys\n"; |
| 107 | initOpenssl(); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 108 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 109 | // std::cerr << "Generating RSA key"; |
| 110 | // EVP_PKEY *pRsaPrivKey = create_rsa_key(); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 111 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 112 | std::cerr << "Generating EC key\n"; |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 113 | EVP_PKEY *pRsaPrivKey = createEcKey(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 114 | if (pRsaPrivKey != nullptr) |
| 115 | { |
| 116 | std::cerr << "Generating x509 Certificate\n"; |
| 117 | // Use this code to directly generate a certificate |
| 118 | X509 *x509; |
| 119 | x509 = X509_new(); |
| 120 | if (x509 != nullptr) |
| 121 | { |
| 122 | // get a random number from the RNG for the certificate serial |
| 123 | // number If this is not random, regenerating certs throws broswer |
| 124 | // errors |
| 125 | std::random_device rd; |
| 126 | int serial = rd(); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 127 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 128 | ASN1_INTEGER_set(X509_get_serialNumber(x509), serial); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 129 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 130 | // not before this moment |
| 131 | X509_gmtime_adj(X509_get_notBefore(x509), 0); |
| 132 | // Cert is valid for 10 years |
| 133 | X509_gmtime_adj(X509_get_notAfter(x509), |
| 134 | 60L * 60L * 24L * 365L * 10L); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 135 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 136 | // set the public key to the key we just generated |
| 137 | X509_set_pubkey(x509, pRsaPrivKey); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 138 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 139 | // get the subject name |
| 140 | X509_NAME *name; |
| 141 | name = X509_get_subject_name(x509); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 142 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 143 | X509_NAME_add_entry_by_txt( |
| 144 | name, "C", MBSTRING_ASC, |
| 145 | reinterpret_cast<const unsigned char *>("US"), -1, -1, 0); |
| 146 | X509_NAME_add_entry_by_txt( |
| 147 | name, "O", MBSTRING_ASC, |
Brad Bishop | 85d2bb5 | 2019-04-05 08:31:14 -0400 | [diff] [blame] | 148 | reinterpret_cast<const unsigned char *>("OpenBMC"), -1, -1, 0); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 149 | X509_NAME_add_entry_by_txt( |
| 150 | name, "CN", MBSTRING_ASC, |
| 151 | reinterpret_cast<const unsigned char *>("testhost"), -1, -1, 0); |
| 152 | // set the CSR options |
| 153 | X509_set_issuer_name(x509, name); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 154 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 155 | // Sign the certificate with our private key |
| 156 | X509_sign(x509, pRsaPrivKey, EVP_sha256()); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 157 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 158 | pFile = fopen(filepath.c_str(), "wt"); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 159 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 160 | if (pFile != nullptr) |
| 161 | { |
| 162 | PEM_write_PrivateKey(pFile, pRsaPrivKey, NULL, NULL, 0, 0, |
| 163 | NULL); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 164 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 165 | PEM_write_X509(pFile, x509); |
| 166 | fclose(pFile); |
| 167 | pFile = NULL; |
| 168 | } |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 169 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 170 | X509_free(x509); |
| 171 | } |
| 172 | |
| 173 | EVP_PKEY_free(pRsaPrivKey); |
| 174 | pRsaPrivKey = NULL; |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 175 | } |
| 176 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 177 | // cleanup_openssl(); |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 178 | } |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 179 | |
| 180 | EVP_PKEY *createRsaKey() |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 181 | { |
| 182 | RSA *pRSA = NULL; |
Ed Tanous | a1e077c | 2017-04-25 12:42:19 -0700 | [diff] [blame] | 183 | #if OPENSSL_VERSION_NUMBER < 0x00908000L |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 184 | pRSA = RSA_generate_key(2048, RSA_3, NULL, NULL); |
Ed Tanous | a1e077c | 2017-04-25 12:42:19 -0700 | [diff] [blame] | 185 | #else |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 186 | RSA_generate_key_ex(pRSA, 2048, NULL, NULL); |
Ed Tanous | a1e077c | 2017-04-25 12:42:19 -0700 | [diff] [blame] | 187 | #endif |
| 188 | |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 189 | EVP_PKEY *pKey = EVP_PKEY_new(); |
| 190 | if ((pRSA != nullptr) && (pKey != nullptr) && |
| 191 | EVP_PKEY_assign_RSA(pKey, pRSA)) |
| 192 | { |
| 193 | /* pKey owns pRSA from now */ |
| 194 | if (RSA_check_key(pRSA) <= 0) |
| 195 | { |
| 196 | fprintf(stderr, "RSA_check_key failed.\n"); |
| 197 | handleOpensslError(); |
| 198 | EVP_PKEY_free(pKey); |
| 199 | pKey = NULL; |
| 200 | } |
| 201 | } |
| 202 | else |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 203 | { |
| 204 | handleOpensslError(); |
| 205 | if (pRSA != nullptr) |
| 206 | { |
| 207 | RSA_free(pRSA); |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 208 | pRSA = NULL; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 209 | } |
| 210 | if (pKey != nullptr) |
| 211 | { |
| 212 | EVP_PKEY_free(pKey); |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 213 | pKey = NULL; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 214 | } |
| 215 | } |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 216 | return pKey; |
| 217 | } |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 218 | |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 219 | EVP_PKEY *createEcKey() |
| 220 | { |
| 221 | EVP_PKEY *pKey = NULL; |
| 222 | int eccgrp = 0; |
| 223 | eccgrp = OBJ_txt2nid("prime256v1"); |
Ed Tanous | 6ea007a | 2019-02-13 22:48:25 -0800 | [diff] [blame] | 224 | |
Ed Tanous | 6ea007a | 2019-02-13 22:48:25 -0800 | [diff] [blame] | 225 | EC_KEY *myecc = EC_KEY_new_by_curve_name(eccgrp); |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 226 | if (myecc != nullptr) |
Ed Tanous | 6ea007a | 2019-02-13 22:48:25 -0800 | [diff] [blame] | 227 | { |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 228 | EC_KEY_set_asn1_flag(myecc, OPENSSL_EC_NAMED_CURVE); |
| 229 | EC_KEY_generate_key(myecc); |
| 230 | pKey = EVP_PKEY_new(); |
| 231 | if (pKey != nullptr) |
| 232 | { |
| 233 | if (EVP_PKEY_assign_EC_KEY(pKey, myecc)) |
| 234 | { |
| 235 | /* pKey owns pRSA from now */ |
| 236 | if (EC_KEY_check_key(myecc) <= 0) |
| 237 | { |
| 238 | fprintf(stderr, "EC_check_key failed.\n"); |
| 239 | } |
| 240 | } |
| 241 | } |
Ed Tanous | 6ea007a | 2019-02-13 22:48:25 -0800 | [diff] [blame] | 242 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 243 | return pKey; |
| 244 | } |
| 245 | |
| 246 | void initOpenssl() |
| 247 | { |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 248 | #if OPENSSL_VERSION_NUMBER < 0x10100000L |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 249 | SSL_load_error_strings(); |
| 250 | OpenSSL_add_all_algorithms(); |
| 251 | RAND_load_file("/dev/urandom", 1024); |
Ed Tanous | a1e077c | 2017-04-25 12:42:19 -0700 | [diff] [blame] | 252 | #endif |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 253 | } |
| 254 | |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 255 | void cleanupOpenssl() |
| 256 | { |
| 257 | CRYPTO_cleanup_all_ex_data(); |
| 258 | ERR_free_strings(); |
| 259 | #if OPENSSL_VERSION_NUMBER < 0x10100000L |
| 260 | ERR_remove_thread_state(0); |
| 261 | #endif |
| 262 | EVP_cleanup(); |
| 263 | } |
| 264 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 265 | void handleOpensslError() |
| 266 | { |
| 267 | ERR_print_errors_fp(stderr); |
| 268 | } |
| 269 | inline void ensureOpensslKeyPresentAndValid(const std::string &filepath) |
| 270 | { |
| 271 | bool pemFileValid = false; |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 272 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 273 | pemFileValid = verifyOpensslKeyCert(filepath); |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 274 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 275 | if (!pemFileValid) |
| 276 | { |
| 277 | std::cerr << "Error in verifying signature, regenerating\n"; |
| 278 | generateSslCertificate(filepath); |
| 279 | } |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 280 | } |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 281 | |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 282 | inline std::shared_ptr<boost::asio::ssl::context> |
| 283 | getSslContext(const std::string &ssl_pem_file) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 284 | { |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 285 | std::shared_ptr<boost::asio::ssl::context> mSslContext = |
| 286 | std::make_shared<boost::asio::ssl::context>( |
| 287 | boost::asio::ssl::context::tls_server); |
| 288 | mSslContext->set_options(boost::asio::ssl::context::default_workarounds | |
| 289 | boost::asio::ssl::context::no_sslv2 | |
| 290 | boost::asio::ssl::context::no_sslv3 | |
| 291 | boost::asio::ssl::context::single_dh_use | |
| 292 | boost::asio::ssl::context::no_tlsv1 | |
| 293 | boost::asio::ssl::context::no_tlsv1_1); |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 294 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 295 | // m_ssl_context.set_verify_mode(boost::asio::ssl::verify_peer); |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 296 | mSslContext->use_certificate_file(ssl_pem_file, |
| 297 | boost::asio::ssl::context::pem); |
| 298 | mSslContext->use_private_key_file(ssl_pem_file, |
| 299 | boost::asio::ssl::context::pem); |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 300 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 301 | // Set up EC curves to auto (boost asio doesn't have a method for this) |
| 302 | // There is a pull request to add this. Once this is included in an asio |
| 303 | // drop, use the right way |
| 304 | // http://stackoverflow.com/questions/18929049/boost-asio-with-ecdsa-certificate-issue |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 305 | if (SSL_CTX_set_ecdh_auto(mSslContext->native_handle(), 1) != 1) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 306 | { |
| 307 | BMCWEB_LOG_ERROR << "Error setting tmp ecdh list\n"; |
| 308 | } |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 309 | |
Ed Tanous | 457207f | 2019-02-07 15:27:14 -0800 | [diff] [blame] | 310 | std::string mozillaModern = "ECDHE-ECDSA-AES256-GCM-SHA384:" |
| 311 | "ECDHE-RSA-AES256-GCM-SHA384:" |
| 312 | "ECDHE-ECDSA-CHACHA20-POLY1305:" |
| 313 | "ECDHE-RSA-CHACHA20-POLY1305:" |
| 314 | "ECDHE-ECDSA-AES128-GCM-SHA256:" |
| 315 | "ECDHE-RSA-AES128-GCM-SHA256:" |
| 316 | "ECDHE-ECDSA-AES256-SHA384:" |
| 317 | "ECDHE-RSA-AES256-SHA384:" |
| 318 | "ECDHE-ECDSA-AES128-SHA256:" |
| 319 | "ECDHE-RSA-AES128-SHA256"; |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 320 | |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 321 | if (SSL_CTX_set_cipher_list(mSslContext->native_handle(), |
Ed Tanous | 457207f | 2019-02-07 15:27:14 -0800 | [diff] [blame] | 322 | mozillaModern.c_str()) != 1) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 323 | { |
| 324 | BMCWEB_LOG_ERROR << "Error setting cipher list\n"; |
| 325 | } |
| 326 | return mSslContext; |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 327 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 328 | } // namespace ensuressl |
Ed Tanous | 01250f2 | 2017-04-18 17:49:51 -0700 | [diff] [blame] | 329 | |
Brad Bishop | 85d2bb5 | 2019-04-05 08:31:14 -0400 | [diff] [blame] | 330 | #endif |