You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This approach sets the security level to 0, allowing the use of legacy features while still
479
+
leveraging the default OpenSSL ciphers.
480
+
481
+
### Using [`--tls-cipher-list`][]
482
+
483
+
You can also set the security level and ciphers from the command line using the
484
+
`--tls-cipher-list=DEFAULT@SECLEVEL=X` as described in [Modifying the default TLS cipher suite][].
485
+
However, it is generally discouraged to use the command line option for setting ciphers and it is
486
+
preferable to configure the ciphers for individual contexts within your application code,
487
+
as this approach provides finer control and reduces the risk of globally downgrading the security level.
488
+
448
489
## X509 certificate error codes
449
490
450
491
Multiple functions can fail due to certificate errors that are reported by
@@ -1932,7 +1973,7 @@ changes:
1932
1973
of `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`. Cannot be specified
1933
1974
along with the `secureProtocol` option; use one or the other. Avoid
1934
1975
setting to less than TLSv1.2, but it may be required for
1935
-
interoperability.
1976
+
interoperability. Versions before TLSv1.2 may require downgrading the [OpenSSL Security Level][].
1936
1977
**Default:**[`tls.DEFAULT_MIN_VERSION`][].
1937
1978
*`passphrase` {string} Shared passphrase used for a single private key and/or
1938
1979
a PFX.
@@ -2263,6 +2304,7 @@ added: v11.4.0
2263
2304
* {string} The default value of the `minVersion` option of
2264
2305
[`tls.createSecureContext()`][]. It can be assigned any of the supported TLS
2265
2306
protocol versions, `'TLSv1.3'`, `'TLSv1.2'`, `'TLSv1.1'`, or `'TLSv1'`.
2307
+
Versions before TLSv1.2 may require downgrading the [OpenSSL Security Level][].
2266
2308
**Default:**`'TLSv1.2'`, unless changed using CLI options. Using
2267
2309
`--tls-min-v1.0` sets the default to `'TLSv1'`. Using `--tls-min-v1.1` sets
2268
2310
the default to `'TLSv1.1'`. Using `--tls-min-v1.3` sets the default to
@@ -2291,6 +2333,8 @@ added:
2291
2333
[Mozilla's publicly trusted list of CAs]: https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt
0 commit comments