fix(NetSSL): Incorrect setting of ciphersuites for TLSv1.3 #4610

This commit is contained in:
Günter Obiltschnig
2024-12-01 10:10:06 +01:00
parent 2a1f6c246d
commit 24fba7b77c
2 changed files with 16 additions and 4 deletions

View File

@@ -191,6 +191,15 @@ public:
std::string cipherList;
/// Specifies the supported ciphers in OpenSSL notation.
/// Defaults to "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH".
/// Note: The cipher list only applies for TLS 1.2 and
/// earlier versions. To configure TLS 1.3 cipher suites,
/// please use the cipherSuites member variable.
std::string cipherSuites;
/// Specifies the supported TLS 1.3 cipher suites.
/// If left empty, the OpenSSL default cipher suites
/// are used. Please refer to the OpenSSL documentation
/// for available cipher suite names.
std::string dhParamsFile;
/// Specifies a file containing Diffie-Hellman parameters.