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.
36 lines
991 B
36 lines
991 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const tls = require('tls');
|
|
|
|
const fs = require('fs');
|
|
const util = require('util');
|
|
const join = require('path').join;
|
|
|
|
var options = {
|
|
key: fs.readFileSync(join(common.fixturesDir, 'keys', 'agent5-key.pem')),
|
|
cert: fs.readFileSync(join(common.fixturesDir, 'keys', 'agent5-cert.pem')),
|
|
ca: [ fs.readFileSync(join(common.fixturesDir, 'keys', 'ca2-cert.pem')) ]
|
|
};
|
|
|
|
var server = tls.createServer(options, function(cleartext) {
|
|
cleartext.end('World');
|
|
});
|
|
server.listen(0, common.mustCall(function() {
|
|
var socket = tls.connect({
|
|
port: this.address().port,
|
|
rejectUnauthorized: false
|
|
}, common.mustCall(function() {
|
|
var peerCert = socket.getPeerCertificate();
|
|
|
|
console.error(util.inspect(peerCert));
|
|
assert.equal(peerCert.subject.CN, 'Ádám Lippai');
|
|
server.close();
|
|
}));
|
|
socket.end('Hello');
|
|
}));
|
|
|