* call Certificate function directly * check exception when sign option is undefined PR-URL: https://github.com/nodejs/node/pull/11280 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const crypto = require('crypto');
|
|
|
|
crypto.DEFAULT_ENCODING = 'buffer';
|
|
|
|
const fs = require('fs');
|
|
|
|
// Test Certificates
|
|
const spkacValid = fs.readFileSync(common.fixturesDir + '/spkac.valid');
|
|
const spkacFail = fs.readFileSync(common.fixturesDir + '/spkac.fail');
|
|
const spkacPem = fs.readFileSync(common.fixturesDir + '/spkac.pem');
|
|
|
|
const certificate = new crypto.Certificate();
|
|
|
|
assert.strictEqual(certificate.verifySpkac(spkacValid), true);
|
|
assert.strictEqual(certificate.verifySpkac(spkacFail), false);
|
|
|
|
assert.strictEqual(
|
|
stripLineEndings(certificate.exportPublicKey(spkacValid).toString('utf8')),
|
|
stripLineEndings(spkacPem.toString('utf8'))
|
|
);
|
|
assert.strictEqual(certificate.exportPublicKey(spkacFail), '');
|
|
|
|
assert.strictEqual(
|
|
certificate.exportChallenge(spkacValid).toString('utf8'),
|
|
'fb9ab814-6677-42a4-a60c-f905d1a6924d'
|
|
);
|
|
assert.strictEqual(certificate.exportChallenge(spkacFail), '');
|
|
|
|
function stripLineEndings(obj) {
|
|
return obj.replace(/\n/g, '');
|
|
}
|
|
|
|
// direct call Certificate() should return instance
|
|
assert(crypto.Certificate() instanceof crypto.Certificate);
|