mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.3 KiB
95 lines
2.3 KiB
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const tls = require('tls');
|
|
|
|
const spawn = require('child_process').spawn;
|
|
const fs = require('fs');
|
|
const key = fs.readFileSync(common.fixturesDir + '/keys/agent2-key.pem');
|
|
const cert = fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem');
|
|
let nsuccess = 0;
|
|
let ntests = 0;
|
|
const ciphers = 'DHE-RSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256';
|
|
|
|
|
|
function loadDHParam(n) {
|
|
let path = common.fixturesDir;
|
|
if (n !== 'error') path += '/keys';
|
|
return fs.readFileSync(path + '/dh' + n + '.pem');
|
|
}
|
|
|
|
function test(keylen, expectedCipher, cb) {
|
|
const options = {
|
|
key: key,
|
|
cert: cert,
|
|
ciphers: ciphers,
|
|
dhparam: loadDHParam(keylen)
|
|
};
|
|
|
|
const server = tls.createServer(options, function(conn) {
|
|
conn.end();
|
|
});
|
|
|
|
server.on('close', function(err) {
|
|
assert.ifError(err);
|
|
if (cb) cb();
|
|
});
|
|
|
|
server.listen(0, '127.0.0.1', function() {
|
|
const args = ['s_client', '-connect', `127.0.0.1:${this.address().port}`,
|
|
'-cipher', ciphers];
|
|
|
|
// for the performance and stability issue in s_client on Windows
|
|
if (common.isWindows)
|
|
args.push('-no_rand_screen');
|
|
|
|
const client = spawn(common.opensslCli, args);
|
|
let out = '';
|
|
client.stdout.setEncoding('utf8');
|
|
client.stdout.on('data', function(d) {
|
|
out += d;
|
|
});
|
|
client.stdout.on('end', function() {
|
|
// DHE key length can be checked -brief option in s_client but it
|
|
// is only supported in openssl 1.0.2 so we cannot check it.
|
|
const reg = new RegExp('Cipher : ' + expectedCipher);
|
|
if (reg.test(out)) {
|
|
nsuccess++;
|
|
server.close();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
function test512() {
|
|
assert.throws(function() {
|
|
test(512, 'DHE-RSA-AES128-SHA256', null);
|
|
}, /DH parameter is less than 1024 bits/);
|
|
}
|
|
|
|
function test1024() {
|
|
test(1024, 'DHE-RSA-AES128-SHA256', test2048);
|
|
ntests++;
|
|
}
|
|
|
|
function test2048() {
|
|
test(2048, 'DHE-RSA-AES128-SHA256', testError);
|
|
ntests++;
|
|
}
|
|
|
|
function testError() {
|
|
test('error', 'ECDHE-RSA-AES128-SHA256', test512);
|
|
ntests++;
|
|
}
|
|
|
|
test1024();
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(ntests, nsuccess);
|
|
assert.strictEqual(ntests, 3);
|
|
});
|
|
|