@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,139 +1,94 @@
|
|
|
1
|
-
import { verify } from
|
|
2
|
-
import { jwsAlgorithm } from
|
|
3
|
-
import { JOSEAlgNotAllowed, JWSInvalid, JWSSignatureVerificationFailed } from
|
|
4
|
-
import { concat, decoder, encoder, encode } from
|
|
5
|
-
import { decodeBase64url, encodeBase64url, parseJoseHeader } from
|
|
6
|
-
import { isDisjoint, isObject } from
|
|
7
|
-
import { validateB64, validateCrit, validateAlgorithms, JWS_RECOGNIZED } from
|
|
8
|
-
import { prepareKey } from
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
payload = new Uint8Array(payload);
|
|
16
|
-
}
|
|
17
|
-
const signature = jws.signature;
|
|
18
|
-
const snapshot = { payload, signature };
|
|
19
|
-
if (encodedProtected !== undefined)
|
|
20
|
-
snapshot.protected = encodedProtected;
|
|
21
|
-
if (inputHeader !== undefined)
|
|
22
|
-
snapshot.header = header;
|
|
23
|
-
return snapshot;
|
|
1
|
+
import { verify } from "./signing.js";
|
|
2
|
+
import { jwsAlgorithm } from "./jws_algorithms.js";
|
|
3
|
+
import { JOSEAlgNotAllowed, JWSInvalid, JWSSignatureVerificationFailed } from "../util/errors.js";
|
|
4
|
+
import { concat, decoder, encoder, encode } from "./buffer_utils.js";
|
|
5
|
+
import { decodeBase64url, encodeBase64url, parseJoseHeader } from "./helpers.js";
|
|
6
|
+
import { isDisjoint, isObject } from "./type_checks.js";
|
|
7
|
+
import { validateB64, validateCrit, validateAlgorithms, JWS_RECOGNIZED } from "./options.js";
|
|
8
|
+
import { prepareKey } from "./key.js";
|
|
9
|
+
function snapshotJws(jws, sharedPayload) {
|
|
10
|
+
const encodedProtected = jws.protected, inputHeader = jws.header, header = isObject(inputHeader) ? { ...inputHeader } : inputHeader;
|
|
11
|
+
let payload = sharedPayload ? sharedPayload[0] : jws.payload;
|
|
12
|
+
!sharedPayload && payload instanceof Uint8Array && (payload = new Uint8Array(payload));
|
|
13
|
+
const signature = jws.signature, snapshot = { payload, signature };
|
|
14
|
+
return encodedProtected !== void 0 && (snapshot.protected = encodedProtected), inputHeader !== void 0 && (snapshot.header = header), snapshot;
|
|
24
15
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
if (jws.protected !== undefined) {
|
|
29
|
-
result.protectedHeader = parsedProt;
|
|
30
|
-
}
|
|
31
|
-
if (jws.header !== undefined) {
|
|
32
|
-
result.unprotectedHeader = jws.header;
|
|
33
|
-
}
|
|
34
|
-
if (resolvedKey) {
|
|
35
|
-
return { ...result, key };
|
|
36
|
-
}
|
|
37
|
-
return result;
|
|
16
|
+
function verifyResult(jws, verified) {
|
|
17
|
+
const [payload, parsedProt, , key, resolvedKey] = verified, result = { payload };
|
|
18
|
+
return jws.protected !== void 0 && (result.protectedHeader = parsedProt), jws.header !== void 0 && (result.unprotectedHeader = jws.header), resolvedKey ? { ...result, key } : result;
|
|
38
19
|
}
|
|
39
|
-
|
|
40
|
-
|
|
20
|
+
function prepareVerify(options) {
|
|
21
|
+
return [options && validateAlgorithms("algorithms", options.algorithms), options?.crit];
|
|
41
22
|
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
: parseJoseHeader(encodedProtected, JWSInvalid, 'JWS Protected Header is invalid')) {
|
|
45
|
-
return parsedProtected;
|
|
23
|
+
function parseProtectedHeader(encodedProtected, parsedProtected = encodedProtected === void 0 ? {} : parseJoseHeader(encodedProtected, JWSInvalid, "JWS Protected Header is invalid")) {
|
|
24
|
+
return parsedProtected;
|
|
46
25
|
}
|
|
47
26
|
function validateJwsHeaders(parsedProt, joseHeader, shared) {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
throw new JOSEAlgNotAllowed('"alg" (Algorithm) Header Parameter value not allowed');
|
|
55
|
-
}
|
|
56
|
-
return [b64, alg];
|
|
27
|
+
const b64 = validateB64(parsedProt, validateCrit(JWSInvalid, JWS_RECOGNIZED, shared[1], parsedProt, joseHeader)), alg = joseHeader.alg;
|
|
28
|
+
if (typeof alg != "string" || !alg)
|
|
29
|
+
throw new JWSInvalid('JWS "alg" (Algorithm) Header Parameter missing or invalid');
|
|
30
|
+
if (shared[0] && !shared[0].has(alg))
|
|
31
|
+
throw new JOSEAlgNotAllowed('"alg" (Algorithm) Header Parameter value not allowed');
|
|
32
|
+
return [b64, alg];
|
|
57
33
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
joseHeader = parsedProt;
|
|
69
|
-
}
|
|
70
|
-
return [parsedProt, joseHeader, ...validateJwsHeaders(parsedProt, joseHeader, shared)];
|
|
34
|
+
function parseJwsHeaders(encodedProtected, header, shared, parsedProtected) {
|
|
35
|
+
const parsedProt = parseProtectedHeader(encodedProtected, parsedProtected);
|
|
36
|
+
let joseHeader;
|
|
37
|
+
if (header !== void 0) {
|
|
38
|
+
if (!isDisjoint(parsedProt, header))
|
|
39
|
+
throw new JWSInvalid("JWS Protected and JWS Unprotected Header Parameter names must be disjoint");
|
|
40
|
+
joseHeader = { ...parsedProt, ...header };
|
|
41
|
+
} else
|
|
42
|
+
joseHeader = parsedProt;
|
|
43
|
+
return [parsedProt, joseHeader, ...validateJwsHeaders(parsedProt, joseHeader, shared)];
|
|
71
44
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
: 'JWS Payload must not contain unassigned Unicode code points');
|
|
78
|
-
}
|
|
79
|
-
return encoder.encode(payload);
|
|
45
|
+
function encodeJsonUnencodedPayload(payload) {
|
|
46
|
+
const invalid = /[\p{Cs}\p{Cn}]/u.exec(payload)?.[0];
|
|
47
|
+
if (invalid !== void 0)
|
|
48
|
+
throw new JWSInvalid(/\p{Cs}/u.test(invalid) ? "JWS Payload must be a well-formed Unicode string" : "JWS Payload must not contain unassigned Unicode code points");
|
|
49
|
+
return encoder.encode(payload);
|
|
80
50
|
}
|
|
81
51
|
function encodeCompactUnencodedPayload(payload) {
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
52
|
+
try {
|
|
53
|
+
return encode(payload);
|
|
54
|
+
} catch {
|
|
55
|
+
throw new JWSInvalid("JWS Compact Serialization payload must use only ASCII characters");
|
|
56
|
+
}
|
|
88
57
|
}
|
|
89
58
|
async function verifyPrepared(jws, shared, key, encodedProtected, parsedProt, alg, signingPayload) {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
const entry = jwsAlgorithm(alg);
|
|
97
|
-
const data = concat(encodedProtected !== undefined ? encode(encodedProtected) : new Uint8Array(), encode('.'), b64
|
|
98
|
-
?
|
|
99
|
-
(shared[2] ??= encodeBase64url(signingPayload, 'payload', JWSInvalid))
|
|
100
|
-
: signingPayload);
|
|
101
|
-
const signature = decodeBase64url(jws.signature, 'signature', JWSInvalid);
|
|
102
|
-
const k = await prepareKey(entry, key, 'verify');
|
|
103
|
-
if (!(await verify(entry, k, signature, data))) {
|
|
104
|
-
throw new JWSSignatureVerificationFailed();
|
|
105
|
-
}
|
|
106
|
-
const payload = b64 ? decodeBase64url(signingPayload, 'payload', JWSInvalid) : signingPayload;
|
|
107
|
-
return [payload, parsedProt, b64, k, resolvedKey];
|
|
59
|
+
let resolvedKey = !1;
|
|
60
|
+
typeof key == "function" && (key = await key(parsedProt, jws), resolvedKey = !0);
|
|
61
|
+
const b64 = typeof signingPayload == "string", entry = jwsAlgorithm(alg), data = concat(encodedProtected !== void 0 ? encode(encodedProtected) : new Uint8Array(), encode("."), b64 ? shared[2] ??= encodeBase64url(signingPayload, "payload", JWSInvalid) : signingPayload), signature = decodeBase64url(jws.signature, "signature", JWSInvalid), k = await prepareKey(entry, key, "verify");
|
|
62
|
+
if (!await verify(entry, k, signature, data))
|
|
63
|
+
throw new JWSSignatureVerificationFailed();
|
|
64
|
+
return [b64 ? decodeBase64url(signingPayload, "payload", JWSInvalid) : signingPayload, parsedProt, b64, k, resolvedKey];
|
|
108
65
|
}
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
if (
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
throw new JWSInvalid('JWS Payload must be a string or an Uint8Array instance');
|
|
119
|
-
}
|
|
120
|
-
const signingPayload = b64 || typeof inputPayload !== 'string' ? inputPayload : encodeUnencodedPayload(inputPayload);
|
|
121
|
-
return verifyPrepared(jws, shared, key, encodedProtected, parsedProt, alg, signingPayload);
|
|
66
|
+
async function verifySignature(jws, shared, key, encodeUnencodedPayload, parsedProtected) {
|
|
67
|
+
const { protected: encodedProtected, header, payload: inputPayload } = jws, [parsedProt, , b64, alg] = parseJwsHeaders(encodedProtected, header, shared, parsedProtected);
|
|
68
|
+
if (b64) {
|
|
69
|
+
if (typeof inputPayload != "string")
|
|
70
|
+
throw new JWSInvalid("JWS Payload must be a string");
|
|
71
|
+
} else if (typeof inputPayload != "string" && !(inputPayload instanceof Uint8Array))
|
|
72
|
+
throw new JWSInvalid("JWS Payload must be a string or an Uint8Array instance");
|
|
73
|
+
const signingPayload = b64 || typeof inputPayload != "string" ? inputPayload : encodeUnencodedPayload(inputPayload);
|
|
74
|
+
return verifyPrepared(jws, shared, key, encodedProtected, parsedProt, alg, signingPayload);
|
|
122
75
|
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
if (length !== 3) {
|
|
132
|
-
throw new JWSInvalid('Invalid Compact JWS');
|
|
133
|
-
}
|
|
134
|
-
const compactJws = { payload, protected: protectedHeader, signature };
|
|
135
|
-
const parsedProt = parseProtectedHeader(protectedHeader);
|
|
136
|
-
const [b64, alg] = validateJwsHeaders(parsedProt, parsedProt, shared);
|
|
137
|
-
const signingPayload = b64 ? payload : encodeCompactUnencodedPayload(payload);
|
|
138
|
-
return verifyPrepared(compactJws, shared, key, protectedHeader, parsedProt, alg, signingPayload);
|
|
76
|
+
async function verifyCompact(jws, shared, key) {
|
|
77
|
+
if (jws instanceof Uint8Array && (jws = decoder.decode(jws)), typeof jws != "string")
|
|
78
|
+
throw new JWSInvalid("Compact JWS must be a string or Uint8Array");
|
|
79
|
+
const { 0: protectedHeader, 1: payload, 2: signature, length } = jws.split(".");
|
|
80
|
+
if (length !== 3)
|
|
81
|
+
throw new JWSInvalid("Invalid Compact JWS");
|
|
82
|
+
const compactJws = { payload, protected: protectedHeader, signature }, parsedProt = parseProtectedHeader(protectedHeader), [b64, alg] = validateJwsHeaders(parsedProt, parsedProt, shared), signingPayload = b64 ? payload : encodeCompactUnencodedPayload(payload);
|
|
83
|
+
return verifyPrepared(compactJws, shared, key, protectedHeader, parsedProt, alg, signingPayload);
|
|
139
84
|
}
|
|
85
|
+
export {
|
|
86
|
+
encodeJsonUnencodedPayload,
|
|
87
|
+
parseJwsHeaders,
|
|
88
|
+
parseProtectedHeader,
|
|
89
|
+
prepareVerify,
|
|
90
|
+
snapshotJws,
|
|
91
|
+
verifyCompact,
|
|
92
|
+
verifyResult,
|
|
93
|
+
verifySignature
|
|
94
|
+
};
|
|
@@ -1,232 +1,146 @@
|
|
|
1
|
-
import { JWTClaimValidationFailed, JWTExpired, JWTInvalid } from
|
|
2
|
-
import { encoder, strictDecoder } from
|
|
3
|
-
import { isObject } from
|
|
4
|
-
const epoch = (date) => Math.floor(date.getTime() /
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
};
|
|
13
|
-
const REGEX = /^(\+|\-)? ?(\d+|\d+\.\d+) ?(seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)(?: (ago|from now))?$/i;
|
|
14
|
-
const checkFailed = 'check_failed';
|
|
1
|
+
import { JWTClaimValidationFailed, JWTExpired, JWTInvalid } from "../util/errors.js";
|
|
2
|
+
import { encoder, strictDecoder } from "./buffer_utils.js";
|
|
3
|
+
import { isObject } from "./type_checks.js";
|
|
4
|
+
const epoch = (date) => Math.floor(date.getTime() / 1e3), multipliers = {
|
|
5
|
+
s: 1,
|
|
6
|
+
m: 60,
|
|
7
|
+
h: 3600,
|
|
8
|
+
d: 86400,
|
|
9
|
+
w: 604800,
|
|
10
|
+
y: 31557600
|
|
11
|
+
}, REGEX = /^(\+|\-)? ?(\d+|\d+\.\d+) ?(seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)(?: (ago|from now))?$/i, checkFailed = "check_failed";
|
|
15
12
|
function invalidDuration() {
|
|
16
|
-
|
|
13
|
+
throw new TypeError("Invalid time period format");
|
|
17
14
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
invalidDuration();
|
|
25
|
-
}
|
|
26
|
-
const value = parseFloat(matched[2]);
|
|
27
|
-
const numericDate = Math.round(value * multipliers[matched[3][0].toLowerCase()]);
|
|
28
|
-
if (!Number.isFinite(numericDate)) {
|
|
29
|
-
invalidDuration();
|
|
30
|
-
}
|
|
31
|
-
if (matched[1] === '-' || matched[4] === 'ago') {
|
|
32
|
-
return -numericDate;
|
|
33
|
-
}
|
|
34
|
-
return numericDate;
|
|
15
|
+
function secs(str) {
|
|
16
|
+
typeof str != "string" && invalidDuration();
|
|
17
|
+
const matched = REGEX.exec(str);
|
|
18
|
+
(!matched || matched[4] && matched[1]) && invalidDuration();
|
|
19
|
+
const value = parseFloat(matched[2]), numericDate2 = Math.round(value * multipliers[matched[3][0].toLowerCase()]);
|
|
20
|
+
return Number.isFinite(numericDate2) || invalidDuration(), matched[1] === "-" || matched[4] === "ago" ? -numericDate2 : numericDate2;
|
|
35
21
|
}
|
|
36
22
|
function validateInput(label, input) {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
return input;
|
|
23
|
+
if (!Number.isFinite(input))
|
|
24
|
+
throw new TypeError(`Invalid ${label} input`);
|
|
25
|
+
return input;
|
|
41
26
|
}
|
|
42
27
|
function validateStringClaim(claim, value) {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
28
|
+
if (typeof value != "string")
|
|
29
|
+
throw new TypeError(`"${claim}" claim must be a string`);
|
|
46
30
|
}
|
|
47
31
|
function validateAudienceClaim(value) {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
throw new TypeError('"aud" claim must be a string or an array of strings');
|
|
51
|
-
}
|
|
32
|
+
if (typeof value != "string" && (!Array.isArray(value) || Array.from(value).some((member) => typeof member != "string")))
|
|
33
|
+
throw new TypeError('"aud" claim must be a string or an array of strings');
|
|
52
34
|
}
|
|
53
35
|
function numericDate(value, label) {
|
|
54
|
-
|
|
55
|
-
return validateInput(label, value);
|
|
56
|
-
if (value instanceof Date)
|
|
57
|
-
return validateInput(label, epoch(value));
|
|
58
|
-
return epoch(new Date()) + secs(value);
|
|
36
|
+
return typeof value == "number" ? validateInput(label, value) : value instanceof Date ? validateInput(label, epoch(value)) : epoch(/* @__PURE__ */ new Date()) + secs(value);
|
|
59
37
|
}
|
|
60
38
|
const normalizeTyp = (value) => {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
return audOption.some((aud) => audPayload.includes(aud));
|
|
70
|
-
}
|
|
71
|
-
return false;
|
|
72
|
-
};
|
|
73
|
-
function validateNumericDate(payload, claim, required = false) {
|
|
74
|
-
const value = payload[claim];
|
|
75
|
-
if (value === undefined && !required)
|
|
76
|
-
return undefined;
|
|
77
|
-
if (typeof value !== 'number') {
|
|
78
|
-
throw new JWTClaimValidationFailed(`"${claim}" claim must be a number`, payload, claim, 'invalid');
|
|
79
|
-
}
|
|
39
|
+
const normalized = value.toLowerCase();
|
|
40
|
+
return value.includes("/") ? normalized : `application/${normalized}`;
|
|
41
|
+
}, checkAudiencePresence = (audPayload, audOption) => typeof audPayload == "string" ? audOption.includes(audPayload) : Array.isArray(audPayload) ? audOption.some((aud) => audPayload.includes(aud)) : !1;
|
|
42
|
+
function validateNumericDate(payload, claim, required = !1) {
|
|
43
|
+
const value = payload[claim];
|
|
44
|
+
if (!(value === void 0 && !required)) {
|
|
45
|
+
if (typeof value != "number")
|
|
46
|
+
throw new JWTClaimValidationFailed(`"${claim}" claim must be a number`, payload, claim, "invalid");
|
|
80
47
|
return value;
|
|
48
|
+
}
|
|
81
49
|
}
|
|
82
50
|
function unexpectedClaim(payload, claim) {
|
|
83
|
-
|
|
51
|
+
throw new JWTClaimValidationFailed(`unexpected "${claim}" claim value`, payload, claim, checkFailed);
|
|
84
52
|
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
if (
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
if (
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
}
|
|
127
|
-
const { clockTolerance } = options;
|
|
128
|
-
let tolerance = 0;
|
|
129
|
-
if (typeof clockTolerance === 'string') {
|
|
130
|
-
tolerance = secs(clockTolerance);
|
|
131
|
-
}
|
|
132
|
-
else if (clockTolerance !== undefined) {
|
|
133
|
-
if (typeof clockTolerance !== 'number') {
|
|
134
|
-
throw new TypeError('Invalid clockTolerance option type');
|
|
135
|
-
}
|
|
136
|
-
tolerance = clockTolerance;
|
|
137
|
-
}
|
|
138
|
-
validateInput('clockTolerance option', tolerance);
|
|
139
|
-
const { currentDate } = options;
|
|
140
|
-
const now = validateInput('currentDate option', epoch(currentDate === undefined ? new Date() : currentDate));
|
|
141
|
-
const iat = validateNumericDate(payload, 'iat', maxTokenAge !== undefined);
|
|
142
|
-
const nbf = validateNumericDate(payload, 'nbf');
|
|
143
|
-
if (nbf !== undefined) {
|
|
144
|
-
if (nbf > now + tolerance) {
|
|
145
|
-
throw new JWTClaimValidationFailed('"nbf" claim timestamp check failed', payload, 'nbf', checkFailed);
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
const exp = validateNumericDate(payload, 'exp');
|
|
149
|
-
if (exp !== undefined) {
|
|
150
|
-
if (exp <= now - tolerance) {
|
|
151
|
-
throw new JWTExpired('"exp" claim timestamp check failed', payload, 'exp', checkFailed);
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
if (maxTokenAge !== undefined) {
|
|
155
|
-
const age = now - iat;
|
|
156
|
-
const max = validateInput('maxTokenAge option', typeof maxTokenAge === 'number' ? maxTokenAge : secs(maxTokenAge));
|
|
157
|
-
if (age - tolerance > max) {
|
|
158
|
-
throw new JWTExpired('"iat" claim timestamp check failed (too far in the past)', payload, 'iat', checkFailed);
|
|
159
|
-
}
|
|
160
|
-
if (age < -tolerance) {
|
|
161
|
-
throw new JWTClaimValidationFailed('"iat" claim timestamp check failed (it should be in the past)', payload, 'iat', checkFailed);
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
return payload;
|
|
53
|
+
function validateClaimsSet(protectedHeader, encodedPayload, options = {}) {
|
|
54
|
+
let payload;
|
|
55
|
+
try {
|
|
56
|
+
payload = JSON.parse(strictDecoder.decode(encodedPayload));
|
|
57
|
+
} catch {
|
|
58
|
+
}
|
|
59
|
+
if (!isObject(payload))
|
|
60
|
+
throw new JWTInvalid("JWT Claims Set must be a top-level JSON object");
|
|
61
|
+
const { typ } = options;
|
|
62
|
+
if (typ !== void 0 && (typeof protectedHeader.typ != "string" || normalizeTyp(protectedHeader.typ) !== normalizeTyp(typ)))
|
|
63
|
+
throw new JWTClaimValidationFailed('unexpected "typ" JWT header value', payload, "typ", checkFailed);
|
|
64
|
+
const { requiredClaims = [], issuer, subject, audience, maxTokenAge } = options, presenceCheck = [...requiredClaims];
|
|
65
|
+
maxTokenAge !== void 0 && presenceCheck.push("iat"), audience !== void 0 && presenceCheck.push("aud"), subject !== void 0 && presenceCheck.push("sub"), issuer !== void 0 && presenceCheck.push("iss");
|
|
66
|
+
for (const claim of new Set(presenceCheck.reverse()))
|
|
67
|
+
if (!Object.hasOwn(payload, claim))
|
|
68
|
+
throw new JWTClaimValidationFailed(`missing required "${claim}" claim`, payload, claim, "missing");
|
|
69
|
+
issuer !== void 0 && !(Array.isArray(issuer) ? issuer : [issuer]).includes(payload.iss) && unexpectedClaim(payload, "iss"), subject !== void 0 && payload.sub !== subject && unexpectedClaim(payload, "sub"), audience !== void 0 && !checkAudiencePresence(payload.aud, typeof audience == "string" ? [audience] : audience) && unexpectedClaim(payload, "aud");
|
|
70
|
+
const { clockTolerance } = options;
|
|
71
|
+
let tolerance = 0;
|
|
72
|
+
if (typeof clockTolerance == "string")
|
|
73
|
+
tolerance = secs(clockTolerance);
|
|
74
|
+
else if (clockTolerance !== void 0) {
|
|
75
|
+
if (typeof clockTolerance != "number")
|
|
76
|
+
throw new TypeError("Invalid clockTolerance option type");
|
|
77
|
+
tolerance = clockTolerance;
|
|
78
|
+
}
|
|
79
|
+
validateInput("clockTolerance option", tolerance);
|
|
80
|
+
const { currentDate } = options, now = validateInput("currentDate option", epoch(currentDate === void 0 ? /* @__PURE__ */ new Date() : currentDate)), iat = validateNumericDate(payload, "iat", maxTokenAge !== void 0), nbf = validateNumericDate(payload, "nbf");
|
|
81
|
+
if (nbf !== void 0 && nbf > now + tolerance)
|
|
82
|
+
throw new JWTClaimValidationFailed('"nbf" claim timestamp check failed', payload, "nbf", checkFailed);
|
|
83
|
+
const exp = validateNumericDate(payload, "exp");
|
|
84
|
+
if (exp !== void 0 && exp <= now - tolerance)
|
|
85
|
+
throw new JWTExpired('"exp" claim timestamp check failed', payload, "exp", checkFailed);
|
|
86
|
+
if (maxTokenAge !== void 0) {
|
|
87
|
+
const age = now - iat, max = validateInput("maxTokenAge option", typeof maxTokenAge == "number" ? maxTokenAge : secs(maxTokenAge));
|
|
88
|
+
if (age - tolerance > max)
|
|
89
|
+
throw new JWTExpired('"iat" claim timestamp check failed (too far in the past)', payload, "iat", checkFailed);
|
|
90
|
+
if (age < -tolerance)
|
|
91
|
+
throw new JWTClaimValidationFailed('"iat" claim timestamp check failed (it should be in the past)', payload, "iat", checkFailed);
|
|
92
|
+
}
|
|
93
|
+
return payload;
|
|
165
94
|
}
|
|
166
95
|
let producerPayloads;
|
|
167
96
|
function producerPayload(producer) {
|
|
168
|
-
|
|
97
|
+
return producerPayloads.get(producer);
|
|
169
98
|
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
return encoder.encode(JSON.stringify(payload));
|
|
99
|
+
function jwtData(producer) {
|
|
100
|
+
const payload = producerPayload(producer);
|
|
101
|
+
for (const claim of ["iat", "nbf", "exp"]) {
|
|
102
|
+
const value = payload[claim];
|
|
103
|
+
if (typeof value == "number" && !Number.isFinite(value))
|
|
104
|
+
throw new TypeError(`"${claim}" claim must be a finite number`);
|
|
105
|
+
}
|
|
106
|
+
return encoder.encode(JSON.stringify(payload));
|
|
179
107
|
}
|
|
180
|
-
|
|
181
|
-
|
|
108
|
+
function jwtClaim(producer, claim) {
|
|
109
|
+
return producerPayload(producer)[claim];
|
|
182
110
|
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
setNotBefore(value) {
|
|
212
|
-
producerPayload(this).nbf = numericDate(value, 'setNotBefore');
|
|
213
|
-
return this;
|
|
214
|
-
}
|
|
215
|
-
setExpirationTime(value) {
|
|
216
|
-
producerPayload(this).exp = numericDate(value, 'setExpirationTime');
|
|
217
|
-
return this;
|
|
218
|
-
}
|
|
219
|
-
setIssuedAt(value) {
|
|
220
|
-
const payload = producerPayload(this);
|
|
221
|
-
if (value === undefined) {
|
|
222
|
-
payload.iat = epoch(new Date());
|
|
223
|
-
}
|
|
224
|
-
else if (typeof value === 'string') {
|
|
225
|
-
payload.iat = validateInput('setIssuedAt', epoch(new Date()) + secs(value));
|
|
226
|
-
}
|
|
227
|
-
else {
|
|
228
|
-
payload.iat = numericDate(value, 'setIssuedAt');
|
|
229
|
-
}
|
|
230
|
-
return this;
|
|
231
|
-
}
|
|
111
|
+
class JWTClaimsBuilder {
|
|
112
|
+
constructor(payload = {}) {
|
|
113
|
+
if (!isObject(payload))
|
|
114
|
+
throw new TypeError("JWT Claims Set MUST be an object");
|
|
115
|
+
(producerPayloads ||= /* @__PURE__ */ new WeakMap()).set(this, structuredClone(payload));
|
|
116
|
+
}
|
|
117
|
+
setIssuer(value) {
|
|
118
|
+
return validateStringClaim("iss", value), producerPayload(this).iss = value, this;
|
|
119
|
+
}
|
|
120
|
+
setSubject(value) {
|
|
121
|
+
return validateStringClaim("sub", value), producerPayload(this).sub = value, this;
|
|
122
|
+
}
|
|
123
|
+
setAudience(value) {
|
|
124
|
+
return validateAudienceClaim(value), producerPayload(this).aud = value, this;
|
|
125
|
+
}
|
|
126
|
+
setJti(value) {
|
|
127
|
+
return validateStringClaim("jti", value), producerPayload(this).jti = value, this;
|
|
128
|
+
}
|
|
129
|
+
setNotBefore(value) {
|
|
130
|
+
return producerPayload(this).nbf = numericDate(value, "setNotBefore"), this;
|
|
131
|
+
}
|
|
132
|
+
setExpirationTime(value) {
|
|
133
|
+
return producerPayload(this).exp = numericDate(value, "setExpirationTime"), this;
|
|
134
|
+
}
|
|
135
|
+
setIssuedAt(value) {
|
|
136
|
+
const payload = producerPayload(this);
|
|
137
|
+
return value === void 0 ? payload.iat = epoch(/* @__PURE__ */ new Date()) : typeof value == "string" ? payload.iat = validateInput("setIssuedAt", epoch(/* @__PURE__ */ new Date()) + secs(value)) : payload.iat = numericDate(value, "setIssuedAt"), this;
|
|
138
|
+
}
|
|
232
139
|
}
|
|
140
|
+
export {
|
|
141
|
+
JWTClaimsBuilder,
|
|
142
|
+
jwtClaim,
|
|
143
|
+
jwtData,
|
|
144
|
+
secs,
|
|
145
|
+
validateClaimsSet
|
|
146
|
+
};
|