mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

internalBinding is used so often that it should just automatically be available for usage in internals. PR-URL: https://github.com/nodejs/node/pull/23025 Refs: https://github.com/nodejs/node/commit/2a9eb31 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
67 lines
1.6 KiB
JavaScript
67 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
const {
|
|
certExportChallenge,
|
|
certExportPublicKey,
|
|
certVerifySpkac
|
|
} = internalBinding('crypto');
|
|
|
|
const { ERR_INVALID_ARG_TYPE } = require('internal/errors').codes;
|
|
const { isArrayBufferView } = require('internal/util/types');
|
|
|
|
const {
|
|
toBuf
|
|
} = require('internal/crypto/util');
|
|
|
|
function verifySpkac(spkac) {
|
|
if (!isArrayBufferView(spkac)) {
|
|
throw new ERR_INVALID_ARG_TYPE(
|
|
'spkac',
|
|
['Buffer', 'TypedArray', 'DataView'],
|
|
spkac
|
|
);
|
|
}
|
|
return certVerifySpkac(spkac);
|
|
}
|
|
|
|
function exportPublicKey(spkac, encoding) {
|
|
spkac = toBuf(spkac, encoding);
|
|
if (!isArrayBufferView(spkac)) {
|
|
throw new ERR_INVALID_ARG_TYPE(
|
|
'spkac',
|
|
['string', 'Buffer', 'TypedArray', 'DataView'],
|
|
spkac
|
|
);
|
|
}
|
|
return certExportPublicKey(spkac);
|
|
}
|
|
|
|
function exportChallenge(spkac, encoding) {
|
|
spkac = toBuf(spkac, encoding);
|
|
if (!isArrayBufferView(spkac)) {
|
|
throw new ERR_INVALID_ARG_TYPE(
|
|
'spkac',
|
|
['string', 'Buffer', 'TypedArray', 'DataView'],
|
|
spkac
|
|
);
|
|
}
|
|
return certExportChallenge(spkac);
|
|
}
|
|
|
|
// For backwards compatibility reasons, this cannot be converted into a
|
|
// ES6 Class.
|
|
function Certificate() {
|
|
if (!(this instanceof Certificate))
|
|
return new Certificate();
|
|
}
|
|
|
|
Certificate.prototype.verifySpkac = verifySpkac;
|
|
Certificate.prototype.exportPublicKey = exportPublicKey;
|
|
Certificate.prototype.exportChallenge = exportChallenge;
|
|
|
|
Certificate.exportChallenge = exportChallenge;
|
|
Certificate.exportPublicKey = exportPublicKey;
|
|
Certificate.verifySpkac = verifySpkac;
|
|
|
|
module.exports = Certificate;
|