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
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
The ciphers option for https.createServer is directly passed to OpenSSL. HIGH doesn't mean that it's "a high level of security" but that, according to OpenSSL's documentation, it includes "those with key lengths larger than 128 bits, and some cipher suites with 128-bit keys".
So if you'd like ssllabs.com to report that your server cannot use insecure ciphers, you will want to specify something else than HIGH in your ciphers suites.
By default, node v0.10 uses the following cipher suites:
There's more background regarding the change of ciphers suites between v0.10 and v0.12 in #8272.
If these default ciphers suites are not secure, please let us know.
To know how to specify ciphers suites that are considered secure, you might also want to check other resources more specific to SSL/TLS and/or OpenSSL such as Qualys' blog or Mozilla's Wiki.
ssllabs.com reports insecure Cipher Suites
my
ciphers
option inhttps.createServer
isHIGH
The text was updated successfully, but these errors were encountered: