@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,243 +1,220 @@
|
|
|
1
|
-
import { decrypt, generateCek } from
|
|
2
|
-
import { decodeBase64url, encodeBase64url, parseJoseHeader } from
|
|
3
|
-
import { JOSEAlgNotAllowed, JOSENotSupported, JWEInvalid } from
|
|
4
|
-
import { isDisjoint, isObject } from
|
|
5
|
-
import { decryptKeyManagement } from
|
|
6
|
-
import { concat, decoder, encode } from
|
|
7
|
-
import { validateCrit, validateAlgorithms, JWE_RECOGNIZED } from
|
|
8
|
-
import { prepareKey } from
|
|
9
|
-
import { jweAlgorithm, jweEncryption } from
|
|
10
|
-
import { decompress, validateZip } from
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
ciphertext,
|
|
34
|
-
iv,
|
|
35
|
-
protected: encodedProtected,
|
|
36
|
-
tag,
|
|
37
|
-
unprotected: unprotected === undefined ? undefined : { ...unprotected },
|
|
38
|
-
};
|
|
1
|
+
import { decrypt, generateCek } from "./content_encryption.js";
|
|
2
|
+
import { decodeBase64url, encodeBase64url, parseJoseHeader } from "./helpers.js";
|
|
3
|
+
import { JOSEAlgNotAllowed, JOSENotSupported, JWEInvalid } from "../util/errors.js";
|
|
4
|
+
import { isDisjoint, isObject } from "./type_checks.js";
|
|
5
|
+
import { decryptKeyManagement } from "./key_management.js";
|
|
6
|
+
import { concat, decoder, encode } from "./buffer_utils.js";
|
|
7
|
+
import { validateCrit, validateAlgorithms, JWE_RECOGNIZED } from "./options.js";
|
|
8
|
+
import { prepareKey } from "./key.js";
|
|
9
|
+
import { JWE, invalidJWEKeyManagementMode, isJWECEKTransport, jweAlgorithm, jweEncryption } from "./jwe_algorithms.js";
|
|
10
|
+
import { decompress, validateZip } from "./deflate.js";
|
|
11
|
+
function snapshotSharedJWE(jwe) {
|
|
12
|
+
const { aad, ciphertext, iv, protected: encodedProtected, tag, unprotected } = jwe;
|
|
13
|
+
if (iv !== void 0 && (typeof iv != "string" || !iv))
|
|
14
|
+
throw new JWEInvalid("JWE Initialization Vector incorrect type");
|
|
15
|
+
if (typeof ciphertext != "string")
|
|
16
|
+
throw new JWEInvalid("JWE Ciphertext missing or incorrect type");
|
|
17
|
+
if (tag !== void 0 && (typeof tag != "string" || !tag))
|
|
18
|
+
throw new JWEInvalid("JWE Authentication Tag incorrect type");
|
|
19
|
+
if (encodedProtected !== void 0 && typeof encodedProtected != "string")
|
|
20
|
+
throw new JWEInvalid("JWE Protected Header incorrect type");
|
|
21
|
+
if (aad !== void 0 && (typeof aad != "string" || !aad))
|
|
22
|
+
throw new JWEInvalid("JWE AAD incorrect type");
|
|
23
|
+
if (unprotected !== void 0 && !isObject(unprotected))
|
|
24
|
+
throw new JWEInvalid("JWE Shared Unprotected Header incorrect type");
|
|
25
|
+
return {
|
|
26
|
+
aad,
|
|
27
|
+
ciphertext,
|
|
28
|
+
iv,
|
|
29
|
+
protected: encodedProtected,
|
|
30
|
+
tag,
|
|
31
|
+
unprotected: unprotected === void 0 ? void 0 : { ...unprotected }
|
|
32
|
+
};
|
|
39
33
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
try {
|
|
63
|
-
const { encrypted_key: encryptedKey } = recipient;
|
|
64
|
-
return [{ encrypted_key: encryptedKey, header }, headerAlg];
|
|
65
|
-
}
|
|
66
|
-
catch (error) {
|
|
67
|
-
return [undefined, headerAlg, error];
|
|
68
|
-
}
|
|
34
|
+
function snapshotRecipientJWE(recipient) {
|
|
35
|
+
let header, headerAlg;
|
|
36
|
+
try {
|
|
37
|
+
const { header: inputHeader } = recipient;
|
|
38
|
+
if (isObject(inputHeader)) {
|
|
39
|
+
headerAlg = inputHeader.alg;
|
|
40
|
+
const parameters = Object.keys(inputHeader);
|
|
41
|
+
parameters.includes("alg") || (headerAlg = void 0), header = Object.fromEntries(parameters.map((parameter) => [
|
|
42
|
+
parameter,
|
|
43
|
+
parameter === "alg" ? headerAlg : inputHeader[parameter]
|
|
44
|
+
]));
|
|
45
|
+
} else
|
|
46
|
+
header = inputHeader;
|
|
47
|
+
} catch (error) {
|
|
48
|
+
return [void 0, headerAlg, error];
|
|
49
|
+
}
|
|
50
|
+
try {
|
|
51
|
+
const { encrypted_key: encryptedKey } = recipient;
|
|
52
|
+
return [{ encrypted_key: encryptedKey, header }, headerAlg];
|
|
53
|
+
} catch (error) {
|
|
54
|
+
return [void 0, headerAlg, error];
|
|
55
|
+
}
|
|
69
56
|
}
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
if (jwe.protected === undefined && header === undefined && jwe.unprotected === undefined) {
|
|
81
|
-
throw new JWEInvalid('JOSE Header missing');
|
|
82
|
-
}
|
|
57
|
+
function checkRecipient(jwe) {
|
|
58
|
+
const { encrypted_key: encryptedKey, header } = jwe;
|
|
59
|
+
if (encryptedKey !== void 0 && typeof encryptedKey != "string")
|
|
60
|
+
throw new JWEInvalid("JWE Encrypted Key incorrect type");
|
|
61
|
+
if (header !== void 0 && !isObject(header))
|
|
62
|
+
throw new JWEInvalid("JWE Per-Recipient Unprotected Header incorrect type");
|
|
63
|
+
if (jwe.protected === void 0 && header === void 0 && jwe.unprotected === void 0)
|
|
64
|
+
throw new JWEInvalid("JOSE Header missing");
|
|
83
65
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
aad !== undefined
|
|
97
|
-
? concat(protectedHeader, encode('.'), encodeBase64url(aad, 'aad', JWEInvalid))
|
|
98
|
-
: protectedHeader,
|
|
99
|
-
];
|
|
66
|
+
function shareJWE(jwe) {
|
|
67
|
+
const { protected: encodedProtected, ciphertext, iv, tag, aad } = jwe;
|
|
68
|
+
let parsedProt;
|
|
69
|
+
encodedProtected !== void 0 && (parsedProt = parseJoseHeader(encodedProtected, JWEInvalid, "JWE Protected Header is invalid"));
|
|
70
|
+
const protectedHeader = encodedProtected !== void 0 ? encode(encodedProtected) : new Uint8Array();
|
|
71
|
+
return [
|
|
72
|
+
parsedProt,
|
|
73
|
+
decodeBase64url(ciphertext, "ciphertext", JWEInvalid),
|
|
74
|
+
iv !== void 0 ? decodeBase64url(iv, "iv", JWEInvalid) : void 0,
|
|
75
|
+
tag !== void 0 ? decodeBase64url(tag, "tag", JWEInvalid) : void 0,
|
|
76
|
+
aad !== void 0 ? concat(protectedHeader, encode("."), encodeBase64url(aad, "aad", JWEInvalid)) : protectedHeader
|
|
77
|
+
];
|
|
100
78
|
}
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
const result = { plaintext };
|
|
105
|
-
if (encodedProtected !== undefined) {
|
|
106
|
-
result.protectedHeader = parsedProt;
|
|
107
|
-
}
|
|
108
|
-
if (aad !== undefined) {
|
|
109
|
-
result.additionalAuthenticatedData = decodeBase64url(aad, 'aad', JWEInvalid);
|
|
110
|
-
}
|
|
111
|
-
if (unprotected !== undefined) {
|
|
112
|
-
result.sharedUnprotectedHeader = unprotected;
|
|
113
|
-
}
|
|
114
|
-
if (header !== undefined) {
|
|
115
|
-
result.unprotectedHeader = header;
|
|
116
|
-
}
|
|
117
|
-
if (resolvedKey) {
|
|
118
|
-
return { ...result, key };
|
|
119
|
-
}
|
|
120
|
-
return result;
|
|
79
|
+
function decryptResult(jwe, decrypted) {
|
|
80
|
+
const [plaintext, parsedProt, key, resolvedKey] = decrypted, { protected: encodedProtected, aad, unprotected, header } = jwe, result = { plaintext };
|
|
81
|
+
return encodedProtected !== void 0 && (result.protectedHeader = parsedProt), aad !== void 0 && (result.additionalAuthenticatedData = decodeBase64url(aad, "aad", JWEInvalid)), unprotected !== void 0 && (result.sharedUnprotectedHeader = unprotected), header !== void 0 && (result.unprotectedHeader = header), resolvedKey ? { ...result, key } : result;
|
|
121
82
|
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
];
|
|
83
|
+
function prepareDecrypt(options) {
|
|
84
|
+
return [
|
|
85
|
+
options && validateAlgorithms("keyManagementAlgorithms", options.keyManagementAlgorithms),
|
|
86
|
+
options && validateAlgorithms("contentEncryptionAlgorithms", options.contentEncryptionAlgorithms),
|
|
87
|
+
options?.crit,
|
|
88
|
+
options?.maxPBES2Count,
|
|
89
|
+
options?.maxDecompressedLength
|
|
90
|
+
];
|
|
131
91
|
}
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
if (header
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
else {
|
|
143
|
-
joseHeader = parsedProt ?? {};
|
|
144
|
-
}
|
|
145
|
-
return decryptRecipientCore(jwe, token, shared, key, joseHeader);
|
|
92
|
+
async function decryptRecipient(jwe, token, shared, key) {
|
|
93
|
+
const [parsedProt] = token, { header, unprotected } = jwe;
|
|
94
|
+
let joseHeader;
|
|
95
|
+
if (header !== void 0 || unprotected !== void 0) {
|
|
96
|
+
if (!isDisjoint(parsedProt, header, unprotected))
|
|
97
|
+
throw new JWEInvalid("JWE Protected, JWE Unprotected Header, and JWE Per-Recipient Unprotected Header Parameter names must be disjoint");
|
|
98
|
+
joseHeader = { ...parsedProt, ...header, ...unprotected };
|
|
99
|
+
} else
|
|
100
|
+
joseHeader = parsedProt ?? {};
|
|
101
|
+
return decryptRecipientCore(jwe, token, shared, key, joseHeader);
|
|
146
102
|
}
|
|
147
103
|
async function decryptRecipientCore(jwe, token, shared, key, joseHeader) {
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
104
|
+
const [keyManagementAlgorithms, contentEncryptionAlgorithms, crit, maxPBES2Count, maxDecompressedLength] = shared, [parsedProt, ciphertext, iv, tag, additionalData] = token, { encrypted_key: encodedKey } = jwe;
|
|
105
|
+
validateCrit(JWEInvalid, JWE_RECOGNIZED, crit, parsedProt, joseHeader), validateZip(joseHeader, parsedProt);
|
|
106
|
+
const { alg, enc } = joseHeader;
|
|
107
|
+
if (typeof alg != "string" || !alg)
|
|
108
|
+
throw new JWEInvalid("missing JWE Algorithm (alg) in JWE Header");
|
|
109
|
+
const selected = JWE[alg];
|
|
110
|
+
if (encodedKey === "" && (!selected || !isJWECEKTransport(selected)))
|
|
111
|
+
throw new JWEInvalid("JWE Encrypted Key incorrect type");
|
|
112
|
+
const integrated = selected?.mode === "integrated-encryption";
|
|
113
|
+
if (!integrated && (typeof enc != "string" || !enc))
|
|
114
|
+
throw new JWEInvalid("missing JWE Encryption Algorithm (enc) in JWE Header");
|
|
115
|
+
if (keyManagementAlgorithms && !keyManagementAlgorithms.has(alg) || !keyManagementAlgorithms && alg.startsWith("PBES2"))
|
|
116
|
+
throw new JOSEAlgNotAllowed('"alg" (Algorithm) Header Parameter value not allowed');
|
|
117
|
+
let encEntry;
|
|
118
|
+
if (integrated) {
|
|
119
|
+
if (enc !== void 0)
|
|
120
|
+
throw new JWEInvalid('JWE "enc" (Encryption Algorithm) Header Parameter must not be present for integrated encryption');
|
|
121
|
+
if (iv?.byteLength)
|
|
122
|
+
throw new JWEInvalid("JWE Initialization Vector must be empty for integrated encryption");
|
|
123
|
+
if (tag?.byteLength)
|
|
124
|
+
throw new JWEInvalid("JWE Authentication Tag must be empty for integrated encryption");
|
|
125
|
+
} else {
|
|
126
|
+
if (contentEncryptionAlgorithms && !contentEncryptionAlgorithms.has(enc))
|
|
127
|
+
throw new JOSEAlgNotAllowed('"enc" (Encryption Algorithm) Header Parameter value not allowed');
|
|
128
|
+
encEntry = jweEncryption(enc);
|
|
129
|
+
}
|
|
130
|
+
let encryptedKey;
|
|
131
|
+
if (encodedKey !== void 0)
|
|
132
|
+
try {
|
|
133
|
+
encryptedKey = decodeBase64url(encodedKey, "encrypted_key", JWEInvalid);
|
|
134
|
+
} catch (error) {
|
|
135
|
+
if (!selected || !isJWECEKTransport(selected))
|
|
136
|
+
throw error;
|
|
137
|
+
encryptedKey = new Uint8Array();
|
|
138
|
+
}
|
|
139
|
+
let resolvedKey = !1;
|
|
140
|
+
typeof key == "function" && (key = await key(parsedProt, jwe), resolvedKey = !0);
|
|
141
|
+
const algEntry = selected ?? jweAlgorithm(alg);
|
|
142
|
+
isJWECEKTransport(algEntry) && encryptedKey === void 0 && (encryptedKey = new Uint8Array());
|
|
143
|
+
let k;
|
|
144
|
+
const mode = algEntry.mode;
|
|
145
|
+
switch (mode) {
|
|
146
|
+
case "direct-encryption":
|
|
147
|
+
k = await prepareKey(encEntry, key, "decrypt");
|
|
148
|
+
break;
|
|
149
|
+
case "direct-key-agreement":
|
|
150
|
+
case "key-wrapping":
|
|
151
|
+
case "key-encryption":
|
|
152
|
+
case "key-agreement-with-key-wrapping":
|
|
153
|
+
case "integrated-encryption":
|
|
154
|
+
k = await prepareKey(algEntry, key, "decrypt");
|
|
155
|
+
break;
|
|
156
|
+
default:
|
|
157
|
+
invalidJWEKeyManagementMode(mode);
|
|
158
|
+
}
|
|
159
|
+
let plaintext;
|
|
160
|
+
if (algEntry.mode === "integrated-encryption")
|
|
161
|
+
plaintext = await algEntry.decrypt(k, encryptedKey, ciphertext, additionalData, parsedProt, joseHeader);
|
|
162
|
+
else {
|
|
163
|
+
const encryption = encEntry;
|
|
179
164
|
let cek;
|
|
180
165
|
try {
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
if (decompressionLimit !== Infinity &&
|
|
201
|
-
(!Number.isSafeInteger(decompressionLimit) || decompressionLimit < 1)) {
|
|
202
|
-
throw new TypeError('maxDecompressedLength must be 0, a positive safe integer, or Infinity');
|
|
203
|
-
}
|
|
204
|
-
plaintext = await decompress(plaintext, decompressionLimit).catch((cause) => {
|
|
205
|
-
if (cause instanceof JWEInvalid)
|
|
206
|
-
throw cause;
|
|
207
|
-
throw new JWEInvalid('Failed to decompress plaintext', { cause });
|
|
208
|
-
});
|
|
209
|
-
}
|
|
210
|
-
return [plaintext, parsedProt, k, resolvedKey];
|
|
166
|
+
cek = await decryptKeyManagement(algEntry, encryption, k, encryptedKey, joseHeader, maxPBES2Count), isJWECEKTransport(algEntry) && cek instanceof Uint8Array && cek.byteLength << 3 !== encryption.cekBits && (cek = generateCek(encryption));
|
|
167
|
+
} catch (err) {
|
|
168
|
+
if (err instanceof TypeError || err instanceof JWEInvalid || err instanceof JOSENotSupported)
|
|
169
|
+
throw err;
|
|
170
|
+
cek = generateCek(encryption);
|
|
171
|
+
}
|
|
172
|
+
plaintext = await decrypt(encryption, cek, ciphertext, iv, tag, additionalData);
|
|
173
|
+
}
|
|
174
|
+
if (joseHeader.zip === "DEF") {
|
|
175
|
+
const decompressionLimit = maxDecompressedLength ?? 25e4;
|
|
176
|
+
if (decompressionLimit === 0)
|
|
177
|
+
throw new JOSENotSupported('JWE "zip" (Compression Algorithm) Header Parameter is not supported.');
|
|
178
|
+
if (decompressionLimit !== 1 / 0 && (!Number.isSafeInteger(decompressionLimit) || decompressionLimit < 1))
|
|
179
|
+
throw new TypeError("maxDecompressedLength must be 0, a positive safe integer, or Infinity");
|
|
180
|
+
plaintext = await decompress(plaintext, decompressionLimit).catch((cause) => {
|
|
181
|
+
throw cause instanceof JWEInvalid ? cause : new JWEInvalid("Failed to decompress plaintext", { cause });
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
return [plaintext, parsedProt, k, resolvedKey];
|
|
211
185
|
}
|
|
212
|
-
|
|
213
|
-
|
|
186
|
+
async function decryptJWE(jwe, shared, key) {
|
|
187
|
+
return decryptRecipient(jwe, shareJWE(jwe), shared, key);
|
|
214
188
|
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
const token = [
|
|
236
|
-
parsedProt,
|
|
237
|
-
decodeBase64url(ciphertext, 'ciphertext', JWEInvalid),
|
|
238
|
-
iv ? decodeBase64url(iv, 'iv', JWEInvalid) : undefined,
|
|
239
|
-
tag ? decodeBase64url(tag, 'tag', JWEInvalid) : undefined,
|
|
240
|
-
protectedBytes,
|
|
241
|
-
];
|
|
242
|
-
return decryptRecipientCore(flattened, token, shared, key, parsedProt);
|
|
189
|
+
async function decryptCompact(jwe, shared, key) {
|
|
190
|
+
if (jwe instanceof Uint8Array && (jwe = decoder.decode(jwe)), typeof jwe != "string")
|
|
191
|
+
throw new JWEInvalid("Compact JWE must be a string or Uint8Array");
|
|
192
|
+
const { 0: protectedHeader, 1: encryptedKey, 2: iv, 3: ciphertext, 4: tag, length } = jwe.split(".");
|
|
193
|
+
if (length !== 5)
|
|
194
|
+
throw new JWEInvalid("Invalid Compact JWE");
|
|
195
|
+
const flattened = {
|
|
196
|
+
ciphertext,
|
|
197
|
+
iv: iv || void 0,
|
|
198
|
+
protected: protectedHeader,
|
|
199
|
+
tag: tag || void 0,
|
|
200
|
+
encrypted_key: encryptedKey || void 0
|
|
201
|
+
}, parsedProt = parseJoseHeader(protectedHeader, JWEInvalid, "JWE Protected Header is invalid"), protectedBytes = encode(protectedHeader), token = [
|
|
202
|
+
parsedProt,
|
|
203
|
+
decodeBase64url(ciphertext, "ciphertext", JWEInvalid),
|
|
204
|
+
iv ? decodeBase64url(iv, "iv", JWEInvalid) : void 0,
|
|
205
|
+
tag ? decodeBase64url(tag, "tag", JWEInvalid) : void 0,
|
|
206
|
+
protectedBytes
|
|
207
|
+
];
|
|
208
|
+
return decryptRecipientCore(flattened, token, shared, key, parsedProt);
|
|
243
209
|
}
|
|
210
|
+
export {
|
|
211
|
+
checkRecipient,
|
|
212
|
+
decryptCompact,
|
|
213
|
+
decryptJWE,
|
|
214
|
+
decryptRecipient,
|
|
215
|
+
decryptResult,
|
|
216
|
+
prepareDecrypt,
|
|
217
|
+
shareJWE,
|
|
218
|
+
snapshotRecipientJWE,
|
|
219
|
+
snapshotSharedJWE
|
|
220
|
+
};
|