Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
81 lines
3.7 KiB
Plaintext
81 lines
3.7 KiB
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.checkKeyTypeWithJwk = void 0;
|
|
const invalid_key_input_js_1 = require("./invalid_key_input.js");
|
|
const is_key_like_js_1 = require("../runtime/is_key_like.js");
|
|
const jwk = require("./is_jwk.js");
|
|
const tag = (key) => key?.[Symbol.toStringTag];
|
|
const jwkMatchesOp = (alg, key, usage) => {
|
|
if (key.use !== undefined && key.use !== 'sig') {
|
|
throw new TypeError('Invalid key for this operation, when present its use must be sig');
|
|
}
|
|
if (key.key_ops !== undefined && key.key_ops.includes?.(usage) !== true) {
|
|
throw new TypeError(`Invalid key for this operation, when present its key_ops must include ${usage}`);
|
|
}
|
|
if (key.alg !== undefined && key.alg !== alg) {
|
|
throw new TypeError(`Invalid key for this operation, when present its alg must be ${alg}`);
|
|
}
|
|
return true;
|
|
};
|
|
const symmetricTypeCheck = (alg, key, usage, allowJwk) => {
|
|
if (key instanceof Uint8Array)
|
|
return;
|
|
if (allowJwk && jwk.isJWK(key)) {
|
|
if (jwk.isSecretJWK(key) && jwkMatchesOp(alg, key, usage))
|
|
return;
|
|
throw new TypeError(`JSON Web Key for symmetric algorithms must have JWK "kty" (Key Type) equal to "oct" and the JWK "k" (Key Value) present`);
|
|
}
|
|
if (!(0, is_key_like_js_1.default)(key)) {
|
|
throw new TypeError((0, invalid_key_input_js_1.withAlg)(alg, key, ...is_key_like_js_1.types, 'Uint8Array', allowJwk ? 'JSON Web Key' : null));
|
|
}
|
|
if (key.type !== 'secret') {
|
|
throw new TypeError(`${tag(key)} instances for symmetric algorithms must be of type "secret"`);
|
|
}
|
|
};
|
|
const asymmetricTypeCheck = (alg, key, usage, allowJwk) => {
|
|
if (allowJwk && jwk.isJWK(key)) {
|
|
switch (usage) {
|
|
case 'sign':
|
|
if (jwk.isPrivateJWK(key) && jwkMatchesOp(alg, key, usage))
|
|
return;
|
|
throw new TypeError(`JSON Web Key for this operation be a private JWK`);
|
|
case 'verify':
|
|
if (jwk.isPublicJWK(key) && jwkMatchesOp(alg, key, usage))
|
|
return;
|
|
throw new TypeError(`JSON Web Key for this operation be a public JWK`);
|
|
}
|
|
}
|
|
if (!(0, is_key_like_js_1.default)(key)) {
|
|
throw new TypeError((0, invalid_key_input_js_1.withAlg)(alg, key, ...is_key_like_js_1.types, allowJwk ? 'JSON Web Key' : null));
|
|
}
|
|
if (key.type === 'secret') {
|
|
throw new TypeError(`${tag(key)} instances for asymmetric algorithms must not be of type "secret"`);
|
|
}
|
|
if (usage === 'sign' && key.type === 'public') {
|
|
throw new TypeError(`${tag(key)} instances for asymmetric algorithm signing must be of type "private"`);
|
|
}
|
|
if (usage === 'decrypt' && key.type === 'public') {
|
|
throw new TypeError(`${tag(key)} instances for asymmetric algorithm decryption must be of type "private"`);
|
|
}
|
|
if (key.algorithm && usage === 'verify' && key.type === 'private') {
|
|
throw new TypeError(`${tag(key)} instances for asymmetric algorithm verifying must be of type "public"`);
|
|
}
|
|
if (key.algorithm && usage === 'encrypt' && key.type === 'private') {
|
|
throw new TypeError(`${tag(key)} instances for asymmetric algorithm encryption must be of type "public"`);
|
|
}
|
|
};
|
|
function checkKeyType(allowJwk, alg, key, usage) {
|
|
const symmetric = alg.startsWith('HS') ||
|
|
alg === 'dir' ||
|
|
alg.startsWith('PBES2') ||
|
|
/^A\d{3}(?:GCM)?KW$/.test(alg);
|
|
if (symmetric) {
|
|
symmetricTypeCheck(alg, key, usage, allowJwk);
|
|
}
|
|
else {
|
|
asymmetricTypeCheck(alg, key, usage, allowJwk);
|
|
}
|
|
}
|
|
exports.default = checkKeyType.bind(undefined, false);
|
|
exports.checkKeyTypeWithJwk = checkKeyType.bind(undefined, true);
|