@suveren/gateway 0.7.6 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/content/integrations/mollie.json +103 -28
- package/dist/mcp-server/http.mjs +228 -118
- package/dist/ui/assets/{index-CsrM6RQr.js → index-BFnSVa9N.js} +22 -22
- package/dist/ui/index.html +1 -1
- package/node_modules/@hap/core/dist/index.d.mts +29 -6
- package/node_modules/@hap/core/dist/index.d.ts +29 -6
- package/node_modules/@hap/core/dist/index.js +54 -8
- package/node_modules/@hap/core/dist/index.mjs +53 -8
- package/node_modules/@hap/core/package.json +2 -1
- package/node_modules/@hap/core/src/frame.ts +115 -14
- package/node_modules/@hap/core/src/gatekeeper.ts +26 -0
- package/node_modules/@hap/core/src/types.ts +7 -1
- package/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/buffer.buffer.d.ts +5 -0
- package/node_modules/@types/node/crypto.d.ts +0 -2
- package/node_modules/@types/node/dgram.d.ts +119 -4
- package/node_modules/@types/node/ffi.d.ts +1 -1
- package/node_modules/@types/node/fs/promises.d.ts +61 -65
- package/node_modules/@types/node/fs.d.ts +86 -76
- package/node_modules/@types/node/http.d.ts +1 -1
- package/node_modules/@types/node/http2.d.ts +2 -2
- package/node_modules/@types/node/index.d.ts +1 -0
- package/node_modules/@types/node/inspector.d.ts +2 -1
- package/node_modules/@types/node/net.d.ts +108 -16
- package/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/node/quic.d.ts +37 -11
- package/node_modules/@types/node/stream/iter.d.ts +4 -4
- package/node_modules/@types/node/tls.d.ts +24 -0
- package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +5 -0
- package/node_modules/@types/node/ts5.6/index.d.ts +1 -0
- package/node_modules/@types/node/ts5.7/index.d.ts +1 -0
- package/node_modules/@types/node/tty.d.ts +4 -3
- package/node_modules/@types/node/vfs.d.ts +210 -0
- package/node_modules/@types/node/vm.d.ts +1 -1
- package/node_modules/express-rate-limit/dist/index.cjs +6 -3
- package/node_modules/express-rate-limit/dist/index.d.cts +11 -0
- package/node_modules/express-rate-limit/dist/index.d.mts +11 -0
- package/node_modules/express-rate-limit/dist/index.d.ts +11 -0
- package/node_modules/express-rate-limit/dist/index.mjs +6 -3
- package/node_modules/express-rate-limit/{license.md → license} +7 -6
- package/node_modules/express-rate-limit/package.json +5 -5
- package/node_modules/express-rate-limit/readme.md +1 -0
- package/node_modules/fast-uri/index.js +20 -5
- package/node_modules/fast-uri/lib/utils.js +8 -1
- package/node_modules/fast-uri/package.json +1 -1
- package/node_modules/fast-uri/test/component-safe-serialization.test.js +58 -0
- package/node_modules/fast-uri/test/ipv6-validation.test.js +34 -0
- package/node_modules/ip-address/README.md +92 -82
- package/node_modules/ip-address/dist/common.d.ts +20 -0
- package/node_modules/ip-address/dist/common.js +36 -0
- package/node_modules/ip-address/dist/common.js.map +1 -1
- package/node_modules/ip-address/dist/ipv4.d.ts +50 -0
- package/node_modules/ip-address/dist/ipv4.js +75 -0
- package/node_modules/ip-address/dist/ipv4.js.map +1 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +79 -10
- package/node_modules/ip-address/dist/ipv6.js +120 -30
- package/node_modules/ip-address/dist/ipv6.js.map +1 -1
- package/node_modules/ip-address/dist/v4/constants.d.ts +12 -0
- package/node_modules/ip-address/dist/v4/constants.js +40 -1
- package/node_modules/ip-address/dist/v4/constants.js.map +1 -1
- package/node_modules/ip-address/dist/v6/constants.d.ts +14 -0
- package/node_modules/ip-address/dist/v6/constants.js +47 -1
- package/node_modules/ip-address/dist/v6/constants.js.map +1 -1
- package/node_modules/ip-address/package.json +1 -1
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +6 -17
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +11 -34
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +7 -16
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +15 -35
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +3 -8
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +5 -5
- package/node_modules/jose/dist/types/jwks/local.d.ts +6 -10
- package/node_modules/jose/dist/types/jwks/remote.d.ts +13 -24
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +5 -10
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +7 -16
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +11 -21
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +9 -18
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +10 -20
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +6 -13
- package/node_modules/jose/dist/types/jwt/sign.d.ts +5 -6
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +9 -14
- package/node_modules/jose/dist/types/jwt/verify.d.ts +9 -19
- package/node_modules/jose/dist/types/key/export.d.ts +4 -4
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +6 -8
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +4 -11
- package/node_modules/jose/dist/types/key/import.d.ts +10 -17
- package/node_modules/jose/dist/types/types.d.ts +44 -84
- package/node_modules/jose/dist/types/util/base64url.d.ts +2 -2
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +3 -10
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +4 -4
- package/node_modules/jose/dist/types/util/errors.d.ts +26 -53
- package/node_modules/jose/dist/webapi/index.js +70 -32
- package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +7 -8
- package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +42 -48
- package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +14 -14
- package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +53 -64
- package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +38 -49
- package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +121 -169
- package/node_modules/jose/dist/webapi/jwk/embedded.js +30 -32
- package/node_modules/jose/dist/webapi/jwk/thumbprint.js +54 -70
- package/node_modules/jose/dist/webapi/jwks/local.js +47 -64
- package/node_modules/jose/dist/webapi/jwks/remote.js +88 -136
- package/node_modules/jose/dist/webapi/jws/compact/sign.js +21 -21
- package/node_modules/jose/dist/webapi/jws/compact/verify.js +7 -8
- package/node_modules/jose/dist/webapi/jws/flattened/sign.js +29 -31
- package/node_modules/jose/dist/webapi/jws/flattened/verify.js +21 -24
- package/node_modules/jose/dist/webapi/jws/general/sign.js +61 -72
- package/node_modules/jose/dist/webapi/jws/general/verify.js +45 -69
- package/node_modules/jose/dist/webapi/jwt/decrypt.js +13 -20
- package/node_modules/jose/dist/webapi/jwt/encrypt.js +57 -70
- package/node_modules/jose/dist/webapi/jwt/sign.js +17 -16
- package/node_modules/jose/dist/webapi/jwt/unsecured.js +32 -40
- package/node_modules/jose/dist/webapi/jwt/verify.js +12 -14
- package/node_modules/jose/dist/webapi/key/export.js +32 -37
- package/node_modules/jose/dist/webapi/key/generate_key_pair.js +40 -48
- package/node_modules/jose/dist/webapi/key/generate_secret.js +35 -40
- package/node_modules/jose/dist/webapi/key/import.js +52 -56
- package/node_modules/jose/dist/webapi/lib/asn1.js +130 -169
- package/node_modules/jose/dist/webapi/lib/base64.js +18 -20
- package/node_modules/jose/dist/webapi/lib/buffer_utils.js +34 -38
- package/node_modules/jose/dist/webapi/lib/content_encryption.js +79 -115
- package/node_modules/jose/dist/webapi/lib/crypto_key.js +24 -25
- package/node_modules/jose/dist/webapi/lib/deflate.js +45 -47
- package/node_modules/jose/dist/webapi/lib/helpers.js +40 -37
- package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +10 -24
- package/node_modules/jose/dist/webapi/lib/is_key_like.js +17 -15
- package/node_modules/jose/dist/webapi/lib/jwe_algorithms.js +106 -93
- package/node_modules/jose/dist/webapi/lib/jwe_decrypt.js +207 -230
- package/node_modules/jose/dist/webapi/lib/jwe_encrypt.js +104 -138
- package/node_modules/jose/dist/webapi/lib/jwk_metadata.js +17 -18
- package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +9 -16
- package/node_modules/jose/dist/webapi/lib/jws_algorithms.js +62 -61
- package/node_modules/jose/dist/webapi/lib/jws_sign.js +50 -75
- package/node_modules/jose/dist/webapi/lib/jws_verify.js +80 -125
- package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +123 -209
- package/node_modules/jose/dist/webapi/lib/key.js +84 -136
- package/node_modules/jose/dist/webapi/lib/key_algorithm.js +13 -8
- package/node_modules/jose/dist/webapi/lib/key_descriptor.js +8 -6
- package/node_modules/jose/dist/webapi/lib/key_management.js +200 -231
- package/node_modules/jose/dist/webapi/lib/key_options.js +7 -5
- package/node_modules/jose/dist/webapi/lib/options.js +55 -68
- package/node_modules/jose/dist/webapi/lib/signing.js +18 -22
- package/node_modules/jose/dist/webapi/lib/type_checks.js +26 -29
- package/node_modules/jose/dist/webapi/util/base64url.js +26 -35
- package/node_modules/jose/dist/webapi/util/decode_jwt.js +32 -31
- package/node_modules/jose/dist/webapi/util/decode_protected_header.js +18 -23
- package/node_modules/jose/dist/webapi/util/errors.js +94 -84
- package/node_modules/jose/package.json +17 -81
- package/package.json +2 -2
- package/profiles/calendar/0.5.profile.json +190 -0
- package/profiles/charge/0.5.profile.json +210 -0
- package/profiles/customers/0.7.profile.json +157 -0
- package/profiles/deploy/0.9.profile.json +176 -0
- package/profiles/email/0.6.profile.json +208 -0
- package/profiles/index.json +9 -1
- package/profiles/publish/0.5.profile.json +186 -0
- package/profiles/purchase/0.5.profile.json +231 -0
- package/profiles/records/0.5.profile.json +117 -0
|
@@ -1,147 +1,95 @@
|
|
|
1
|
-
import { withAlg as invalidKeyInput } from
|
|
2
|
-
import { isKeyLike, isCryptoKey } from
|
|
3
|
-
import { isObject } from
|
|
4
|
-
import { decode } from
|
|
5
|
-
import { jwkToKey } from
|
|
6
|
-
import { normalizeJwk } from
|
|
7
|
-
const tag = (key) => key[Symbol.toStringTag]
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
if (expectedKeyOp && !key.key_ops.includes(expectedKeyOp)) {
|
|
22
|
-
throw new TypeError(`Invalid key for this operation, its "key_ops" must include "${expectedKeyOp}" when present`);
|
|
23
|
-
}
|
|
24
|
-
}
|
|
1
|
+
import { withAlg as invalidKeyInput } from "./invalid_key_input.js";
|
|
2
|
+
import { isKeyLike, isCryptoKey } from "./is_key_like.js";
|
|
3
|
+
import { isObject } from "./type_checks.js";
|
|
4
|
+
import { decode } from "../util/base64url.js";
|
|
5
|
+
import { jwkToKey } from "./jwk_to_key.js";
|
|
6
|
+
import { normalizeJwk } from "./jwk_metadata.js";
|
|
7
|
+
const tag = (key) => key[Symbol.toStringTag], jwkMatchesOp = (entry, key, usage) => {
|
|
8
|
+
const { alg } = entry;
|
|
9
|
+
if (key.use !== void 0) {
|
|
10
|
+
const expected = usage === "sign" || usage === "verify" ? "sig" : "enc";
|
|
11
|
+
if (key.use !== expected)
|
|
12
|
+
throw new TypeError(`Invalid key for this operation, its "use" must be "${expected}" when present`);
|
|
13
|
+
}
|
|
14
|
+
if (key.alg !== void 0 && key.alg !== alg)
|
|
15
|
+
throw new TypeError(`Invalid key for this operation, its "alg" must be "${alg}" when present`);
|
|
16
|
+
if (Array.isArray(key.key_ops)) {
|
|
17
|
+
const expectedKeyOp = usage === "encrypt" || usage === "decrypt" ? entry.ops?.[usage === "encrypt" ? 0 : 1] : usage;
|
|
18
|
+
if (expectedKeyOp && !key.key_ops.includes(expectedKeyOp))
|
|
19
|
+
throw new TypeError(`Invalid key for this operation, its "key_ops" must include "${expectedKeyOp}" when present`);
|
|
20
|
+
}
|
|
25
21
|
};
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
jwkMatchesOp(entry, normalized, usage);
|
|
51
|
-
return [JWK, key, normalized];
|
|
52
|
-
}
|
|
53
|
-
if (!isKeyLike(key)) {
|
|
54
|
-
throw new TypeError(secret
|
|
55
|
-
? invalidKeyInput(alg, key, 'CryptoKey', 'KeyObject', 'JSON Web Key', 'Uint8Array')
|
|
56
|
-
: invalidKeyInput(alg, key, 'CryptoKey', 'KeyObject', 'JSON Web Key'));
|
|
57
|
-
}
|
|
58
|
-
if (secret) {
|
|
59
|
-
if (key.type !== 'secret') {
|
|
60
|
-
throw new TypeError(`${tag(key)} instances for symmetric algorithms must be of type "secret"`);
|
|
61
|
-
}
|
|
22
|
+
function checkKeyType(entry, key, usage) {
|
|
23
|
+
const { alg, secret } = entry, privateKey = usage === "decrypt" || usage === "sign";
|
|
24
|
+
if (secret && key instanceof Uint8Array)
|
|
25
|
+
return [BYTES, key];
|
|
26
|
+
if (isObject(key)) {
|
|
27
|
+
const normalized = normalizeJwk(key);
|
|
28
|
+
if (typeof normalized.kty != "string")
|
|
29
|
+
throw new TypeError(secret ? invalidKeyInput(alg, key, "CryptoKey", "KeyObject", "JSON Web Key", "Uint8Array") : invalidKeyInput(alg, key, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
30
|
+
if (!(secret ? normalized.kty === "oct" && typeof normalized.k == "string" : normalized.kty !== "oct" && (privateKey ? normalized.kty === "AKP" && typeof normalized.priv == "string" || typeof normalized.d == "string" : normalized.d === void 0 && normalized.priv === void 0)))
|
|
31
|
+
throw new TypeError(secret ? 'JSON Web Key for symmetric algorithms must have JWK "kty" (Key Type) equal to "oct" and the JWK "k" (Key Value) present' : `JSON Web Key for this operation must be a ${privateKey ? "private" : "public"} JWK`);
|
|
32
|
+
return jwkMatchesOp(entry, normalized, usage), [JWK, key, normalized];
|
|
33
|
+
}
|
|
34
|
+
if (!isKeyLike(key))
|
|
35
|
+
throw new TypeError(secret ? invalidKeyInput(alg, key, "CryptoKey", "KeyObject", "JSON Web Key", "Uint8Array") : invalidKeyInput(alg, key, "CryptoKey", "KeyObject", "JSON Web Key"));
|
|
36
|
+
if (secret) {
|
|
37
|
+
if (key.type !== "secret")
|
|
38
|
+
throw new TypeError(`${tag(key)} instances for symmetric algorithms must be of type "secret"`);
|
|
39
|
+
} else {
|
|
40
|
+
if (key.type === "secret")
|
|
41
|
+
throw new TypeError(`${tag(key)} instances for asymmetric algorithms must not be of type "secret"`);
|
|
42
|
+
const expectedType = privateKey ? "private" : "public";
|
|
43
|
+
if ((key.type === "public" || key.type === "private") && key.type !== expectedType) {
|
|
44
|
+
const operation = usage === "sign" ? "signing" : usage === "verify" ? "verifying" : `${usage.slice(0, -1)}tion`;
|
|
45
|
+
throw new TypeError(`${tag(key)} instances for asymmetric algorithm ${operation} must be of type "${expectedType}"`);
|
|
62
46
|
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
throw new TypeError(`${tag(key)} instances for asymmetric algorithms must not be of type "secret"`);
|
|
66
|
-
}
|
|
67
|
-
const expectedType = privateKey ? 'private' : 'public';
|
|
68
|
-
if ((key.type === 'public' || key.type === 'private') && key.type !== expectedType) {
|
|
69
|
-
const operation = usage === 'sign'
|
|
70
|
-
? 'signing'
|
|
71
|
-
: usage === 'verify'
|
|
72
|
-
? 'verifying'
|
|
73
|
-
: `${usage.slice(0, -1)}tion`;
|
|
74
|
-
throw new TypeError(`${tag(key)} instances for asymmetric algorithm ${operation} must be of type "${expectedType}"`);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
return isCryptoKey(key) ? [CRYPTO, key] : [KEYOBJECT, key];
|
|
47
|
+
}
|
|
48
|
+
return isCryptoKey(key) ? [CRYPTO, key] : [KEYOBJECT, key];
|
|
78
49
|
}
|
|
79
|
-
const BYTES = 0;
|
|
80
|
-
const CRYPTO = 1;
|
|
81
|
-
const KEYOBJECT = 2;
|
|
82
|
-
const JWK = 3;
|
|
50
|
+
const BYTES = 0, CRYPTO = 1, KEYOBJECT = 2, JWK = 3;
|
|
83
51
|
let cache;
|
|
84
52
|
const nist = {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
53
|
+
__proto__: null,
|
|
54
|
+
prime256v1: "P-256",
|
|
55
|
+
secp384r1: "P-384",
|
|
56
|
+
secp521r1: "P-521"
|
|
89
57
|
};
|
|
90
58
|
function cached(key, alg, value) {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
if (entry) {
|
|
95
|
-
entry[alg] = value;
|
|
96
|
-
}
|
|
97
|
-
else {
|
|
98
|
-
cache.set(key, { [alg]: value });
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
return value ?? entry?.[alg];
|
|
59
|
+
cache ||= /* @__PURE__ */ new WeakMap();
|
|
60
|
+
const entry = cache.get(key);
|
|
61
|
+
return value && (entry ? entry[alg] = value : cache.set(key, { [alg]: value })), value ?? entry?.[alg];
|
|
102
62
|
}
|
|
103
|
-
const handleJWK = async (key, jwk, entry) => cached(key, entry.alg) ??
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
const isPublic = keyObject.type === 'public';
|
|
110
|
-
const usages = entry.usages[isPublic ? 0 : 1];
|
|
111
|
-
const { asymmetricKeyType } = keyObject;
|
|
112
|
-
const crv = nist[keyObject.asymmetricKeyDetails?.namedCurve];
|
|
113
|
-
const params = entry.resolve?.({ crv, asymmetricKeyType }) ?? entry.subtle;
|
|
114
|
-
return cached(keyObject, entry.alg, keyObject.toCryptoKey(params, isPublic, usages));
|
|
63
|
+
const handleJWK = async (key, jwk, entry) => cached(key, entry.alg) ?? cached(key, entry.alg, await jwkToKey(entry, { ...jwk, alg: entry.alg })), handleKeyObject = (keyObject, entry) => {
|
|
64
|
+
const hit = cached(keyObject, entry.alg);
|
|
65
|
+
if (hit)
|
|
66
|
+
return hit;
|
|
67
|
+
const isPublic = keyObject.type === "public", usages = entry.usages[isPublic ? 0 : 1], { asymmetricKeyType } = keyObject, crv = nist[keyObject.asymmetricKeyDetails?.namedCurve], params = entry.resolve?.({ crv, asymmetricKeyType }) ?? entry.subtle;
|
|
68
|
+
return cached(keyObject, entry.alg, keyObject.toCryptoKey(params, isPublic, usages));
|
|
115
69
|
};
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
Object.freeze(key_ops);
|
|
132
|
-
Object.freeze(key);
|
|
133
|
-
}
|
|
134
|
-
return handleJWK(key, normalized, entry);
|
|
135
|
-
}
|
|
136
|
-
case KEYOBJECT: {
|
|
137
|
-
const keyObject = tagged[1];
|
|
138
|
-
if (keyObject.type === 'secret') {
|
|
139
|
-
return keyObject.export();
|
|
140
|
-
}
|
|
141
|
-
if ('toCryptoKey' in keyObject && typeof keyObject.toCryptoKey === 'function') {
|
|
142
|
-
return handleKeyObject(keyObject, entry);
|
|
143
|
-
}
|
|
144
|
-
return handleJWK(keyObject, keyObject.export({ format: 'jwk' }), entry);
|
|
145
|
-
}
|
|
70
|
+
async function prepareKey(entry, key, usage) {
|
|
71
|
+
const tagged = checkKeyType(entry, key, usage);
|
|
72
|
+
switch (tagged[0]) {
|
|
73
|
+
case BYTES:
|
|
74
|
+
case CRYPTO:
|
|
75
|
+
return tagged[1];
|
|
76
|
+
case JWK: {
|
|
77
|
+
const key2 = tagged[1], normalized = tagged[2];
|
|
78
|
+
if (normalized.kty === "oct")
|
|
79
|
+
return decode(normalized.k);
|
|
80
|
+
if (!Object.isFrozen(key2)) {
|
|
81
|
+
const { key_ops } = key2;
|
|
82
|
+
Array.isArray(key_ops) && Object.freeze(key_ops), Object.freeze(key2);
|
|
83
|
+
}
|
|
84
|
+
return handleJWK(key2, normalized, entry);
|
|
146
85
|
}
|
|
86
|
+
case KEYOBJECT: {
|
|
87
|
+
const keyObject = tagged[1];
|
|
88
|
+
return keyObject.type === "secret" ? keyObject.export() : "toCryptoKey" in keyObject && typeof keyObject.toCryptoKey == "function" ? handleKeyObject(keyObject, entry) : handleJWK(keyObject, keyObject.export({ format: "jwk" }), entry);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
147
91
|
}
|
|
92
|
+
export {
|
|
93
|
+
checkKeyType,
|
|
94
|
+
prepareKey
|
|
95
|
+
};
|
|
@@ -1,10 +1,15 @@
|
|
|
1
|
-
import { JOSENotSupported } from
|
|
2
|
-
import { JWS } from
|
|
3
|
-
import { JWE } from
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { JOSENotSupported } from "../util/errors.js";
|
|
2
|
+
import { JWS } from "./jws_algorithms.js";
|
|
3
|
+
import { JWE } from "./jwe_algorithms.js";
|
|
4
|
+
const algArgument = '"alg" (Algorithm)';
|
|
5
|
+
function unsupportedAlg(source = 'JWK "alg" (Algorithm) Parameter') {
|
|
6
|
+
throw new JOSENotSupported(`Invalid or unsupported ${source} value`);
|
|
7
7
|
}
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
function keyAlgorithm(alg, source) {
|
|
9
|
+
return (typeof alg == "string" ? JWS[alg] ?? JWE[alg] : void 0) ?? unsupportedAlg(source);
|
|
10
10
|
}
|
|
11
|
+
export {
|
|
12
|
+
algArgument,
|
|
13
|
+
keyAlgorithm,
|
|
14
|
+
unsupportedAlg
|
|
15
|
+
};
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
return out;
|
|
1
|
+
function table(entries) {
|
|
2
|
+
const out = { __proto__: null };
|
|
3
|
+
for (const alg in entries)
|
|
4
|
+
out[alg] = { ...entries[alg], alg };
|
|
5
|
+
return out;
|
|
7
6
|
}
|
|
7
|
+
export {
|
|
8
|
+
table
|
|
9
|
+
};
|