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.
32 lines
723 B
32 lines
723 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('node compiled without crypto.');
|
|
|
|
const assert = require('assert');
|
|
const tls = require('tls');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const pfx = fixtures.readKey('agent1-pfx.pem');
|
|
|
|
const server = tls.createServer({
|
|
pfx: pfx,
|
|
passphrase: 'sample',
|
|
requestCert: true,
|
|
rejectUnauthorized: false
|
|
}, common.mustCall(function(c) {
|
|
assert.strictEqual(c.authorizationError, null);
|
|
c.end();
|
|
})).listen(0, function() {
|
|
const client = tls.connect({
|
|
port: this.address().port,
|
|
pfx: pfx,
|
|
passphrase: 'sample',
|
|
rejectUnauthorized: false
|
|
}, function() {
|
|
client.end();
|
|
server.close();
|
|
});
|
|
});
|
|
|