Skip to content

Commit a974753

Browse files
kapouerTrott
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: nodejs#14566 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent ad664ea commit a974753

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
@@ -35,7 +35,7 @@ const fs = require('fs');
3535
const options = {
3636
key: fs.readFileSync(`${common.fixturesDir}/keys/agent2-key.pem`),
3737
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent2-cert.pem`),
38-
ciphers: 'ECDHE-RSA-RC4-SHA',
38+
ciphers: 'ECDHE-RSA-AES128-SHA',
3939
ecdhCurve: false
4040
};
4141

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const fs = require('fs');
3636
const options = {
3737
key: fs.readFileSync(`${common.fixturesDir}/keys/agent2-key.pem`),
3838
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent2-cert.pem`),
39-
ciphers: 'DES-CBC3-SHA'
39+
ciphers: 'AES256-SHA'
4040
};
4141

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

0 commit comments

Comments
 (0)