Add an API to get the local certificate chosen during TLS handshake from the SSL context. Fix: https://github.com/nodejs/node/issues/24095 PR-URL: https://github.com/nodejs/node/pull/24261 Fixes: https://github.com/nodejs/node/issues/24095 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
88 lines
3.1 KiB
JavaScript
88 lines
3.1 KiB
JavaScript
// Copyright Joyent, Inc. and other Node contributors.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
// copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
// following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included
|
|
// in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
'use strict';
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
}
|
|
const crypto = require('crypto');
|
|
|
|
// Verify that detailed getPeerCertificate() return value has all certs.
|
|
|
|
const {
|
|
assert, connect, debug, keys
|
|
} = require(fixtures.path('tls-connect'));
|
|
|
|
function sha256(s) {
|
|
return crypto.createHash('sha256').update(s);
|
|
}
|
|
|
|
connect({
|
|
client: { rejectUnauthorized: false },
|
|
server: keys.agent1,
|
|
}, function(err, pair, cleanup) {
|
|
assert.ifError(err);
|
|
const socket = pair.client.conn;
|
|
const localCert = socket.getCertificate();
|
|
assert.deepStrictEqual(localCert, {});
|
|
let peerCert = socket.getPeerCertificate();
|
|
assert.ok(!peerCert.issuerCertificate);
|
|
|
|
peerCert = socket.getPeerCertificate(true);
|
|
debug('peerCert:\n', peerCert);
|
|
|
|
assert.ok(peerCert.issuerCertificate);
|
|
assert.strictEqual(peerCert.subject.emailAddress, 'ry@tinyclouds.org');
|
|
assert.strictEqual(peerCert.serialNumber, 'FAD50CC6A07F516C');
|
|
assert.strictEqual(peerCert.exponent, '0x10001');
|
|
assert.strictEqual(
|
|
peerCert.fingerprint,
|
|
'6E:C0:F0:78:84:56:93:02:C9:07:AD:0C:6D:96:80:CC:85:6D:CE:3B'
|
|
);
|
|
assert.strictEqual(
|
|
peerCert.fingerprint256,
|
|
'CC:CC:38:43:CB:DF:CC:C6:DD:15:96:F3:3A:D2:44:F9:23:AE:43:C4:DF:A6:AC:E5:' +
|
|
'12:C8:9D:1C:8F:DE:41:ED'
|
|
);
|
|
|
|
// SHA256 fingerprint of the public key
|
|
assert.strictEqual(
|
|
sha256(peerCert.pubkey).digest('hex'),
|
|
'479b505833d21ee26565568def9b92b4771d052cdb2109db5ad6e3747075aa26'
|
|
);
|
|
|
|
// HPKP / RFC7469 "pin-sha256" of the public key
|
|
assert.strictEqual(
|
|
sha256(peerCert.pubkey).digest('base64'),
|
|
'R5tQWDPSHuJlZVaN75uStHcdBSzbIQnbWtbjdHB1qiY='
|
|
);
|
|
|
|
assert.deepStrictEqual(peerCert.infoAccess['OCSP - URI'],
|
|
[ 'http://ocsp.nodejs.org/' ]);
|
|
|
|
const issuer = peerCert.issuerCertificate;
|
|
assert.strictEqual(issuer.issuerCertificate, issuer);
|
|
assert.strictEqual(issuer.serialNumber, 'EE586A7D0951D7B3');
|
|
|
|
return cleanup();
|
|
});
|