express-gateway icon indicating copy to clipboard operation
express-gateway copied to clipboard

How to add RC4 cipher option?

Open sjahongir opened this issue 5 years ago • 0 comments

Can I use RC4 cipher like this:

var server = https.createServer({
    key: privateKey,
    cert: certificate,
    ca: certificateAuthority,
    ciphers: [
        "ECDHE-RSA-AES128-SHA256",
        "DHE-RSA-AES128-SHA256",
        "AES128-GCM-SHA256",
        "RC4",
        "HIGH",
        "!MD5",
        "!aNULL"
    ].join(':'),
}, app);

sjahongir avatar Sep 18 '19 04:09 sjahongir