/var/www/greso.tech/server/nsm/node_modules/jose/dist/node/cjs/lib
NameSizeModeActions
aesgcmkw.js9350644editdlrm
buffer_utils.js21350644editdlrm
cek.js7700644editdlrm
check_iv_length.js3820644editdlrm
check_key_type.js22270644editdlrm
check_p2s.js3330644editdlrm
crypto_key.js54800644editdlrm
decrypt_key_management.js53590644editdlrm
encrypt_key_management.js37460644editdlrm
epoch.js1400644editdlrm
invalid_key_input.js10980644editdlrm
is_disjoint.js6740644editdlrm
is_object.js6000644editdlrm
iv.js7750644editdlrm
jwt_claims_set.js45850644editdlrm
secs.js12890644editdlrm
validate_algorithms.js4680644editdlrm
validate_crit.js16730644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js (1098B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.withAlg = void 0; function message(msg, actual, ...types) { if (types.length > 2) { const last = types.pop(); msg += `one of type ${types.join(', ')}, or ${last}.`; } else if (types.length === 2) { msg += `one of type ${types[0]} or ${types[1]}.`; } else { msg += `of type ${types[0]}.`; } if (actual == null) { msg += ` Received ${actual}`; } else if (typeof actual === 'function' && actual.name) { msg += ` Received function ${actual.name}`; } else if (typeof actual === 'object' && actual != null) { if (actual.constructor && actual.constructor.name) { msg += ` Received an instance of ${actual.constructor.name}`; } } return msg; } exports.default = (actual, ...types) => { return message('Key must be ', actual, ...types); }; function withAlg(alg, actual, ...types) { return message(`Key for the ${alg} algorithm must be `, actual, ...types); } exports.withAlg = withAlg;