Skip to content

Commit 860c619

Browse files
kapouerMylesBorins
authored andcommitted
test: use ciphers supported by shared OpenSSL
On Debian with OpenSSL 1.1 CLI, the ciphers used in those tests were unknown. PR-URL: #14566 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 8b9a05c commit 860c619

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/parallel/test-tls-ecdh-disable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const fs = require('fs');
1414
const options = {
1515
key: fs.readFileSync(`${common.fixturesDir}/keys/agent2-key.pem`),
1616
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent2-cert.pem`),
17-
ciphers: 'ECDHE-RSA-RC4-SHA',
17+
ciphers: 'ECDHE-RSA-AES128-SHA',
1818
ecdhCurve: false
1919
};
2020

test/parallel/test-tls-set-ciphers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const fs = require('fs');
1515
const options = {
1616
key: fs.readFileSync(`${common.fixturesDir}/keys/agent2-key.pem`),
1717
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent2-cert.pem`),
18-
ciphers: 'DES-CBC3-SHA'
18+
ciphers: 'AES256-SHA'
1919
};
2020

2121
const reply = 'I AM THE WALRUS'; // something recognizable

0 commit comments

Comments
 (0)