Skip to content

https: Unsupported ciphersuite DEFAULT #128

@ypomortsev

Description

@ypomortsev

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions