Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "ssl-config", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "Allows you to specify SSL/TLS cipher suites based on both security and browser compatibility. ", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -27,3 +27,3 @@ # SSL Config | ||
var sslConfig = require('ssl-config')('high'); | ||
var sslConfig = require('ssl-config')('modern'); | ||
@@ -36,3 +36,3 @@ Then run `https.createServer` per [node.js TLS](https://nodejs.org/api/tls.html) and [io.js TLS](https://iojs.org/api/tls.html#tls_tls_createserver_options_secureconnectionlistener) docs. | ||
ca: certificateAuthority, | ||
ciphers: sslConfig.ciphers, | ||
ciphers: sslConfig.cipherSuites, | ||
honorCipherOrder: true, | ||
@@ -48,3 +48,3 @@ secureOptions: sslConfig.minimumTLSVersion | ||
ca: certificateAuthority, | ||
ciphers: sslConfig.ciphers, | ||
ciphers: sslConfig.cipherSuites, | ||
honorCipherOrder: true, | ||
@@ -51,0 +51,0 @@ secureOptions: sslConfig.minimumTLSVersion |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10215