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
846 B
36 lines
846 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
var tls = require('tls');
|
|
|
|
var fs = require('fs');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/ec-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/ec-cert.pem')
|
|
};
|
|
|
|
var server = tls.createServer(options, function(conn) {
|
|
conn.end('ok');
|
|
}).listen(0, common.mustCall(function() {
|
|
var c = tls.connect(this.address().port, {
|
|
rejectUnauthorized: false
|
|
}, common.mustCall(function() {
|
|
c.on('end', common.mustCall(function() {
|
|
c.end();
|
|
server.close();
|
|
}));
|
|
|
|
c.on('data', function(data) {
|
|
assert.equal(data, 'ok');
|
|
});
|
|
|
|
const cert = c.getPeerCertificate();
|
|
assert.strictEqual(cert.subject.C, 'US');
|
|
}));
|
|
}));
|
|
|