As seen in stripe-node code, via StackOverflow
var https = require('https');
https.request({
hostname: 'httpbin.org',
path: '/get',
method: 'GET',
ciphers: 'DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2:!MD5'
}, function(res) {
res.setEncoding('utf8');
res.on('data', function(chunk) {
console.log(chunk);
})
})
.end();
Error: javax.net.ssl.SSLException: java.lang.IllegalArgumentException: Unsupported ciphersuite DEFAULT
Error: javax.net.ssl.SSLException: java.lang.IllegalArgumentException: Unsupported ciphersuite DEFAULT
Error: javax.net.ssl.SSLException: java.lang.IllegalArgumentException: Unsupported ciphersuite DEFAULT
at emit (events.js:72)
at tls.js:1258
at emit (events.js:95)
at tls.js:864
at tls.js:794
at _tickCallback (trireme.js:447)
at _tickFromSpinner (trireme.js:422)
As seen in stripe-node code, via StackOverflow