@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.
Files changed (161) hide show
  1. package/content/integrations/mollie.json +103 -28
  2. package/dist/mcp-server/http.mjs +228 -118
  3. package/dist/ui/assets/{index-CsrM6RQr.js → index-BFnSVa9N.js} +22 -22
  4. package/dist/ui/index.html +1 -1
  5. package/node_modules/@hap/core/dist/index.d.mts +29 -6
  6. package/node_modules/@hap/core/dist/index.d.ts +29 -6
  7. package/node_modules/@hap/core/dist/index.js +54 -8
  8. package/node_modules/@hap/core/dist/index.mjs +53 -8
  9. package/node_modules/@hap/core/package.json +2 -1
  10. package/node_modules/@hap/core/src/frame.ts +115 -14
  11. package/node_modules/@hap/core/src/gatekeeper.ts +26 -0
  12. package/node_modules/@hap/core/src/types.ts +7 -1
  13. package/node_modules/@types/node/README.md +1 -1
  14. package/node_modules/@types/node/buffer.buffer.d.ts +5 -0
  15. package/node_modules/@types/node/crypto.d.ts +0 -2
  16. package/node_modules/@types/node/dgram.d.ts +119 -4
  17. package/node_modules/@types/node/ffi.d.ts +1 -1
  18. package/node_modules/@types/node/fs/promises.d.ts +61 -65
  19. package/node_modules/@types/node/fs.d.ts +86 -76
  20. package/node_modules/@types/node/http.d.ts +1 -1
  21. package/node_modules/@types/node/http2.d.ts +2 -2
  22. package/node_modules/@types/node/index.d.ts +1 -0
  23. package/node_modules/@types/node/inspector.d.ts +2 -1
  24. package/node_modules/@types/node/net.d.ts +108 -16
  25. package/node_modules/@types/node/package.json +2 -2
  26. package/node_modules/@types/node/quic.d.ts +37 -11
  27. package/node_modules/@types/node/stream/iter.d.ts +4 -4
  28. package/node_modules/@types/node/tls.d.ts +24 -0
  29. package/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +5 -0
  30. package/node_modules/@types/node/ts5.6/index.d.ts +1 -0
  31. package/node_modules/@types/node/ts5.7/index.d.ts +1 -0
  32. package/node_modules/@types/node/tty.d.ts +4 -3
  33. package/node_modules/@types/node/vfs.d.ts +210 -0
  34. package/node_modules/@types/node/vm.d.ts +1 -1
  35. package/node_modules/express-rate-limit/dist/index.cjs +6 -3
  36. package/node_modules/express-rate-limit/dist/index.d.cts +11 -0
  37. package/node_modules/express-rate-limit/dist/index.d.mts +11 -0
  38. package/node_modules/express-rate-limit/dist/index.d.ts +11 -0
  39. package/node_modules/express-rate-limit/dist/index.mjs +6 -3
  40. package/node_modules/express-rate-limit/{license.md → license} +7 -6
  41. package/node_modules/express-rate-limit/package.json +5 -5
  42. package/node_modules/express-rate-limit/readme.md +1 -0
  43. package/node_modules/fast-uri/index.js +20 -5
  44. package/node_modules/fast-uri/lib/utils.js +8 -1
  45. package/node_modules/fast-uri/package.json +1 -1
  46. package/node_modules/fast-uri/test/component-safe-serialization.test.js +58 -0
  47. package/node_modules/fast-uri/test/ipv6-validation.test.js +34 -0
  48. package/node_modules/ip-address/README.md +92 -82
  49. package/node_modules/ip-address/dist/common.d.ts +20 -0
  50. package/node_modules/ip-address/dist/common.js +36 -0
  51. package/node_modules/ip-address/dist/common.js.map +1 -1
  52. package/node_modules/ip-address/dist/ipv4.d.ts +50 -0
  53. package/node_modules/ip-address/dist/ipv4.js +75 -0
  54. package/node_modules/ip-address/dist/ipv4.js.map +1 -1
  55. package/node_modules/ip-address/dist/ipv6.d.ts +79 -10
  56. package/node_modules/ip-address/dist/ipv6.js +120 -30
  57. package/node_modules/ip-address/dist/ipv6.js.map +1 -1
  58. package/node_modules/ip-address/dist/v4/constants.d.ts +12 -0
  59. package/node_modules/ip-address/dist/v4/constants.js +40 -1
  60. package/node_modules/ip-address/dist/v4/constants.js.map +1 -1
  61. package/node_modules/ip-address/dist/v6/constants.d.ts +14 -0
  62. package/node_modules/ip-address/dist/v6/constants.js +47 -1
  63. package/node_modules/ip-address/dist/v6/constants.js.map +1 -1
  64. package/node_modules/ip-address/package.json +1 -1
  65. package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +7 -16
  66. package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +6 -17
  67. package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +7 -16
  68. package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +11 -34
  69. package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +7 -16
  70. package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +15 -35
  71. package/node_modules/jose/dist/types/jwk/embedded.d.ts +3 -8
  72. package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +5 -5
  73. package/node_modules/jose/dist/types/jwks/local.d.ts +6 -10
  74. package/node_modules/jose/dist/types/jwks/remote.d.ts +13 -24
  75. package/node_modules/jose/dist/types/jws/compact/sign.d.ts +5 -10
  76. package/node_modules/jose/dist/types/jws/compact/verify.d.ts +9 -18
  77. package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +7 -16
  78. package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +9 -18
  79. package/node_modules/jose/dist/types/jws/general/sign.d.ts +11 -21
  80. package/node_modules/jose/dist/types/jws/general/verify.d.ts +9 -18
  81. package/node_modules/jose/dist/types/jwt/decrypt.d.ts +10 -20
  82. package/node_modules/jose/dist/types/jwt/encrypt.d.ts +6 -13
  83. package/node_modules/jose/dist/types/jwt/sign.d.ts +5 -6
  84. package/node_modules/jose/dist/types/jwt/unsecured.d.ts +9 -14
  85. package/node_modules/jose/dist/types/jwt/verify.d.ts +9 -19
  86. package/node_modules/jose/dist/types/key/export.d.ts +4 -4
  87. package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +6 -8
  88. package/node_modules/jose/dist/types/key/generate_secret.d.ts +4 -11
  89. package/node_modules/jose/dist/types/key/import.d.ts +10 -17
  90. package/node_modules/jose/dist/types/types.d.ts +44 -84
  91. package/node_modules/jose/dist/types/util/base64url.d.ts +2 -2
  92. package/node_modules/jose/dist/types/util/decode_jwt.d.ts +3 -10
  93. package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +4 -4
  94. package/node_modules/jose/dist/types/util/errors.d.ts +26 -53
  95. package/node_modules/jose/dist/webapi/index.js +70 -32
  96. package/node_modules/jose/dist/webapi/jwe/compact/decrypt.js +7 -8
  97. package/node_modules/jose/dist/webapi/jwe/compact/encrypt.js +42 -48
  98. package/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +14 -14
  99. package/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +53 -64
  100. package/node_modules/jose/dist/webapi/jwe/general/decrypt.js +38 -49
  101. package/node_modules/jose/dist/webapi/jwe/general/encrypt.js +121 -169
  102. package/node_modules/jose/dist/webapi/jwk/embedded.js +30 -32
  103. package/node_modules/jose/dist/webapi/jwk/thumbprint.js +54 -70
  104. package/node_modules/jose/dist/webapi/jwks/local.js +47 -64
  105. package/node_modules/jose/dist/webapi/jwks/remote.js +88 -136
  106. package/node_modules/jose/dist/webapi/jws/compact/sign.js +21 -21
  107. package/node_modules/jose/dist/webapi/jws/compact/verify.js +7 -8
  108. package/node_modules/jose/dist/webapi/jws/flattened/sign.js +29 -31
  109. package/node_modules/jose/dist/webapi/jws/flattened/verify.js +21 -24
  110. package/node_modules/jose/dist/webapi/jws/general/sign.js +61 -72
  111. package/node_modules/jose/dist/webapi/jws/general/verify.js +45 -69
  112. package/node_modules/jose/dist/webapi/jwt/decrypt.js +13 -20
  113. package/node_modules/jose/dist/webapi/jwt/encrypt.js +57 -70
  114. package/node_modules/jose/dist/webapi/jwt/sign.js +17 -16
  115. package/node_modules/jose/dist/webapi/jwt/unsecured.js +32 -40
  116. package/node_modules/jose/dist/webapi/jwt/verify.js +12 -14
  117. package/node_modules/jose/dist/webapi/key/export.js +32 -37
  118. package/node_modules/jose/dist/webapi/key/generate_key_pair.js +40 -48
  119. package/node_modules/jose/dist/webapi/key/generate_secret.js +35 -40
  120. package/node_modules/jose/dist/webapi/key/import.js +52 -56
  121. package/node_modules/jose/dist/webapi/lib/asn1.js +130 -169
  122. package/node_modules/jose/dist/webapi/lib/base64.js +18 -20
  123. package/node_modules/jose/dist/webapi/lib/buffer_utils.js +34 -38
  124. package/node_modules/jose/dist/webapi/lib/content_encryption.js +79 -115
  125. package/node_modules/jose/dist/webapi/lib/crypto_key.js +24 -25
  126. package/node_modules/jose/dist/webapi/lib/deflate.js +45 -47
  127. package/node_modules/jose/dist/webapi/lib/helpers.js +40 -37
  128. package/node_modules/jose/dist/webapi/lib/invalid_key_input.js +10 -24
  129. package/node_modules/jose/dist/webapi/lib/is_key_like.js +17 -15
  130. package/node_modules/jose/dist/webapi/lib/jwe_algorithms.js +106 -93
  131. package/node_modules/jose/dist/webapi/lib/jwe_decrypt.js +207 -230
  132. package/node_modules/jose/dist/webapi/lib/jwe_encrypt.js +104 -138
  133. package/node_modules/jose/dist/webapi/lib/jwk_metadata.js +17 -18
  134. package/node_modules/jose/dist/webapi/lib/jwk_to_key.js +9 -16
  135. package/node_modules/jose/dist/webapi/lib/jws_algorithms.js +62 -61
  136. package/node_modules/jose/dist/webapi/lib/jws_sign.js +50 -75
  137. package/node_modules/jose/dist/webapi/lib/jws_verify.js +80 -125
  138. package/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +123 -209
  139. package/node_modules/jose/dist/webapi/lib/key.js +84 -136
  140. package/node_modules/jose/dist/webapi/lib/key_algorithm.js +13 -8
  141. package/node_modules/jose/dist/webapi/lib/key_descriptor.js +8 -6
  142. package/node_modules/jose/dist/webapi/lib/key_management.js +200 -231
  143. package/node_modules/jose/dist/webapi/lib/key_options.js +7 -5
  144. package/node_modules/jose/dist/webapi/lib/options.js +55 -68
  145. package/node_modules/jose/dist/webapi/lib/signing.js +18 -22
  146. package/node_modules/jose/dist/webapi/lib/type_checks.js +26 -29
  147. package/node_modules/jose/dist/webapi/util/base64url.js +26 -35
  148. package/node_modules/jose/dist/webapi/util/decode_jwt.js +32 -31
  149. package/node_modules/jose/dist/webapi/util/decode_protected_header.js +18 -23
  150. package/node_modules/jose/dist/webapi/util/errors.js +94 -84
  151. package/node_modules/jose/package.json +17 -81
  152. package/package.json +2 -2
  153. package/profiles/calendar/0.5.profile.json +190 -0
  154. package/profiles/charge/0.5.profile.json +210 -0
  155. package/profiles/customers/0.7.profile.json +157 -0
  156. package/profiles/deploy/0.9.profile.json +176 -0
  157. package/profiles/email/0.6.profile.json +208 -0
  158. package/profiles/index.json +9 -1
  159. package/profiles/publish/0.5.profile.json +186 -0
  160. package/profiles/purchase/0.5.profile.json +231 -0
  161. package/profiles/records/0.5.profile.json +117 -0
@@ -1,179 +1,140 @@
1
- import { invalidKeyInput } from './invalid_key_input.js';
2
- import { encodeBase64, decodeBase64 } from '../lib/base64.js';
3
- import { JOSENotSupported } from '../util/errors.js';
4
- import { keyAlgorithm, unsupportedAlg, algArgument } from './key_algorithm.js';
5
- import { isCryptoKey, isKeyObject } from './is_key_like.js';
6
- import { validateExtractableOption } from './key_options.js';
1
+ import { invalidKeyInput } from "./invalid_key_input.js";
2
+ import { encodeBase64, decodeBase64 } from "../lib/base64.js";
3
+ import { JOSENotSupported } from "../util/errors.js";
4
+ import { keyAlgorithm, unsupportedAlg, algArgument } from "./key_algorithm.js";
5
+ import { isCryptoKey, isKeyObject } from "./is_key_like.js";
6
+ import { validateExtractableOption } from "./key_options.js";
7
7
  const formatPEM = (b64, descriptor) => {
8
- const newlined = (b64.match(/.{1,64}/g) || []).join('\n');
9
- return `-----BEGIN ${descriptor}-----\n${newlined}\n-----END ${descriptor}-----`;
10
- };
11
- const genericExport = async (keyType, keyFormat, key) => {
12
- if (isKeyObject(key)) {
13
- if (key.type !== keyType) {
14
- throw new TypeError(`key is not a ${keyType} key`);
15
- }
16
- return key.export({ format: 'pem', type: keyFormat });
17
- }
18
- if (!isCryptoKey(key)) {
19
- throw new TypeError(invalidKeyInput(key, 'CryptoKey', 'KeyObject'));
20
- }
21
- if (!key.extractable) {
22
- throw new TypeError('CryptoKey is not extractable');
23
- }
24
- if (key.type !== keyType) {
25
- throw new TypeError(`key is not a ${keyType} key`);
26
- }
27
- return formatPEM(encodeBase64(new Uint8Array(await crypto.subtle.exportKey(keyFormat, key))), `${keyType.toUpperCase()} KEY`);
28
- };
29
- export const toSPKI = (key) => genericExport('public', 'spki', key);
30
- export const toPKCS8 = (key) => genericExport('private', 'pkcs8', key);
31
- const bytesEqual = (a, b) => {
32
- if (a.byteLength !== b.length)
33
- return false;
34
- for (let i = 0; i < a.byteLength; i++) {
35
- if (a[i] !== b[i])
36
- return false;
37
- }
38
- return true;
39
- };
40
- const createASN1State = (data) => ({ data, pos: 0 });
41
- const readByte = (state) => {
42
- const byte = state.data[state.pos++];
43
- if (byte === undefined) {
44
- throw new Error('Unexpected end of ASN.1 input');
45
- }
46
- return byte;
47
- };
48
- const parseLength = (state) => {
49
- const first = readByte(state);
50
- if (first & 0x80) {
51
- const lengthOfLen = first & 0x7f;
52
- let length = 0;
53
- for (let i = 0; i < lengthOfLen; i++) {
54
- length = (length << 8) | readByte(state);
55
- }
56
- return length;
57
- }
58
- return first;
59
- };
60
- const skipElement = (state, count = 1) => {
61
- while (count-- > 0) {
62
- state.pos++;
63
- const length = parseLength(state);
64
- state.pos += length;
65
- }
66
- };
67
- const expectTag = (state, expectedTag, errorMessage) => {
68
- if (readByte(state) !== expectedTag) {
69
- throw new Error(errorMessage);
70
- }
71
- };
72
- const getSubarray = (state, length) => {
73
- if (length < 0 || state.pos + length > state.data.length) {
74
- throw new Error('Unexpected end of ASN.1 input');
75
- }
76
- const result = state.data.subarray(state.pos, state.pos + length);
8
+ const newlined = (b64.match(/.{1,64}/g) || []).join(`
9
+ `);
10
+ return `-----BEGIN ${descriptor}-----
11
+ ${newlined}
12
+ -----END ${descriptor}-----`;
13
+ }, genericExport = async (keyType, keyFormat, key) => {
14
+ if (isKeyObject(key)) {
15
+ if (key.type !== keyType)
16
+ throw new TypeError(`key is not a ${keyType} key`);
17
+ return key.export({ format: "pem", type: keyFormat });
18
+ }
19
+ if (!isCryptoKey(key))
20
+ throw new TypeError(invalidKeyInput(key, "CryptoKey", "KeyObject"));
21
+ if (!key.extractable)
22
+ throw new TypeError("CryptoKey is not extractable");
23
+ if (key.type !== keyType)
24
+ throw new TypeError(`key is not a ${keyType} key`);
25
+ return formatPEM(encodeBase64(new Uint8Array(await crypto.subtle.exportKey(keyFormat, key))), `${keyType.toUpperCase()} KEY`);
26
+ }, toSPKI = (key) => genericExport("public", "spki", key), toPKCS8 = (key) => genericExport("private", "pkcs8", key), bytesEqual = (a, b) => {
27
+ if (a.byteLength !== b.length)
28
+ return !1;
29
+ for (let i = 0; i < a.byteLength; i++)
30
+ if (a[i] !== b[i])
31
+ return !1;
32
+ return !0;
33
+ }, createASN1State = (data) => ({ data, pos: 0 }), readByte = (state) => {
34
+ const byte = state.data[state.pos++];
35
+ if (byte === void 0)
36
+ throw new Error("Unexpected end of ASN.1 input");
37
+ return byte;
38
+ }, parseLength = (state) => {
39
+ const first = readByte(state);
40
+ if (first & 128) {
41
+ const lengthOfLen = first & 127;
42
+ let length = 0;
43
+ for (let i = 0; i < lengthOfLen; i++)
44
+ length = length << 8 | readByte(state);
45
+ return length;
46
+ }
47
+ return first;
48
+ }, skipElement = (state, count = 1) => {
49
+ for (; count-- > 0; ) {
50
+ state.pos++;
51
+ const length = parseLength(state);
77
52
  state.pos += length;
78
- return result;
79
- };
80
- const parseAlgorithmOID = (state) => {
81
- expectTag(state, 0x06, 'Expected algorithm OID');
82
- const oidLen = parseLength(state);
83
- return getSubarray(state, oidLen);
53
+ }
54
+ }, expectTag = (state, expectedTag, errorMessage) => {
55
+ if (readByte(state) !== expectedTag)
56
+ throw new Error(errorMessage);
57
+ }, getSubarray = (state, length) => {
58
+ if (length < 0 || state.pos + length > state.data.length)
59
+ throw new Error("Unexpected end of ASN.1 input");
60
+ const result = state.data.subarray(state.pos, state.pos + length);
61
+ return state.pos += length, result;
62
+ }, parseAlgorithmOID = (state) => {
63
+ expectTag(state, 6, "Expected algorithm OID");
64
+ const oidLen = parseLength(state);
65
+ return getSubarray(state, oidLen);
84
66
  };
85
67
  function parseKeyHeader(state, keyFormat) {
86
- expectTag(state, 0x30, `Invalid ${keyFormat === 'spki' ? 'SPKI' : 'PKCS#8'} structure`);
87
- parseLength(state);
88
- if (keyFormat === 'pkcs8') {
89
- expectTag(state, 0x02, 'Expected version field');
90
- const length = parseLength(state);
91
- state.pos += length;
92
- }
93
- expectTag(state, 0x30, 'Expected algorithm identifier');
94
- parseLength(state);
68
+ if (expectTag(state, 48, `Invalid ${keyFormat === "spki" ? "SPKI" : "PKCS#8"} structure`), parseLength(state), keyFormat === "pkcs8") {
69
+ expectTag(state, 2, "Expected version field");
70
+ const length = parseLength(state);
71
+ state.pos += length;
72
+ }
73
+ expectTag(state, 48, "Expected algorithm identifier"), parseLength(state);
95
74
  }
96
75
  const parseECAlgorithmIdentifier = (state) => {
97
- const algOid = parseAlgorithmOID(state);
98
- if (bytesEqual(algOid, [0x2b, 0x65, 0x6e])) {
99
- return 'X25519';
100
- }
101
- if (!bytesEqual(algOid, [0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01])) {
102
- throw new Error('Unsupported key algorithm');
103
- }
104
- expectTag(state, 0x06, 'Expected curve OID');
105
- const curveOidLen = parseLength(state);
106
- const curveOid = getSubarray(state, curveOidLen);
107
- if (bytesEqual(curveOid, [0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07]))
108
- return 'P-256';
109
- if (bytesEqual(curveOid, [0x2b, 0x81, 0x04, 0x00, 0x22]))
110
- return 'P-384';
111
- if (bytesEqual(curveOid, [0x2b, 0x81, 0x04, 0x00, 0x23]))
112
- return 'P-521';
113
- throw new Error('Unsupported named curve');
114
- };
115
- const genericImport = async (keyFormat, keyData, alg, options) => {
116
- const extractable = validateExtractableOption(options?.extractable);
117
- const entry = keyAlgorithm(alg, algArgument);
118
- if (entry.secret) {
119
- unsupportedAlg(algArgument);
120
- }
121
- const isPublic = keyFormat === 'spki';
122
- let algorithm;
123
- if (entry.resolve) {
124
- try {
125
- const state = createASN1State(keyData);
126
- parseKeyHeader(state, keyFormat);
127
- algorithm = entry.resolve({ crv: parseECAlgorithmIdentifier(state) });
128
- }
129
- catch {
130
- throw new JOSENotSupported('Invalid or unsupported key format');
131
- }
132
- }
133
- else {
134
- algorithm = entry.subtle;
135
- }
136
- return crypto.subtle.importKey(keyFormat, keyData, algorithm, extractable ?? isPublic, entry.usages[isPublic ? 0 : 1]);
137
- };
138
- const processPEMData = (pem, pattern) => {
139
- return decodeBase64(pem.replace(pattern, ''));
140
- };
141
- export const fromPKCS8 = (pem, alg, options) => {
142
- const keyData = processPEMData(pem, /(?:-----(?:BEGIN|END) PRIVATE KEY-----|\s)/g);
143
- return genericImport('pkcs8', keyData, alg, options);
144
- };
145
- export const fromSPKI = (pem, alg, options) => {
146
- const keyData = processPEMData(pem, /(?:-----(?:BEGIN|END) PUBLIC KEY-----|\s)/g);
147
- return genericImport('spki', keyData, alg, options);
76
+ const algOid = parseAlgorithmOID(state);
77
+ if (bytesEqual(algOid, [43, 101, 110]))
78
+ return "X25519";
79
+ if (!bytesEqual(algOid, [42, 134, 72, 206, 61, 2, 1]))
80
+ throw new Error("Unsupported key algorithm");
81
+ expectTag(state, 6, "Expected curve OID");
82
+ const curveOidLen = parseLength(state), curveOid = getSubarray(state, curveOidLen);
83
+ if (bytesEqual(curveOid, [42, 134, 72, 206, 61, 3, 1, 7]))
84
+ return "P-256";
85
+ if (bytesEqual(curveOid, [43, 129, 4, 0, 34]))
86
+ return "P-384";
87
+ if (bytesEqual(curveOid, [43, 129, 4, 0, 35]))
88
+ return "P-521";
89
+ throw new Error("Unsupported named curve");
90
+ }, genericImport = async (keyFormat, keyData, alg, options) => {
91
+ const extractable = validateExtractableOption(options?.extractable), entry = keyAlgorithm(alg, algArgument);
92
+ entry.secret && unsupportedAlg(algArgument);
93
+ const isPublic = keyFormat === "spki";
94
+ let algorithm;
95
+ if (entry.resolve)
96
+ try {
97
+ const state = createASN1State(keyData);
98
+ parseKeyHeader(state, keyFormat), algorithm = entry.resolve({ crv: parseECAlgorithmIdentifier(state) });
99
+ } catch {
100
+ throw new JOSENotSupported("Invalid or unsupported key format");
101
+ }
102
+ else
103
+ algorithm = entry.subtle;
104
+ return crypto.subtle.importKey(keyFormat, keyData, algorithm, extractable ?? isPublic, entry.usages[isPublic ? 0 : 1]);
105
+ }, processPEMData = (pem, pattern) => decodeBase64(pem.replace(pattern, "")), fromPKCS8 = (pem, alg, options) => {
106
+ const keyData = processPEMData(pem, /(?:-----(?:BEGIN|END) PRIVATE KEY-----|\s)/g);
107
+ return genericImport("pkcs8", keyData, alg, options);
108
+ }, fromSPKI = (pem, alg, options) => {
109
+ const keyData = processPEMData(pem, /(?:-----(?:BEGIN|END) PUBLIC KEY-----|\s)/g);
110
+ return genericImport("spki", keyData, alg, options);
148
111
  };
149
112
  function spkiFromX509(buf) {
150
- const state = createASN1State(buf);
151
- expectTag(state, 0x30, 'Invalid certificate structure');
152
- const certificateLength = parseLength(state);
153
- if (certificateLength < 0 || state.pos + certificateLength > state.data.length) {
154
- throw new Error('Unexpected end of ASN.1 input');
155
- }
156
- expectTag(state, 0x30, 'Invalid tbsCertificate structure');
157
- parseLength(state);
158
- if (buf[state.pos] === 0xa0) {
159
- skipElement(state, 6);
160
- }
161
- else {
162
- skipElement(state, 5);
163
- }
164
- const spkiStart = state.pos;
165
- expectTag(state, 0x30, 'Invalid SPKI structure');
166
- const spkiContentLen = parseLength(state);
167
- return buf.subarray(spkiStart, spkiStart + spkiContentLen + (state.pos - spkiStart));
113
+ const state = createASN1State(buf);
114
+ expectTag(state, 48, "Invalid certificate structure");
115
+ const certificateLength = parseLength(state);
116
+ if (certificateLength < 0 || state.pos + certificateLength > state.data.length)
117
+ throw new Error("Unexpected end of ASN.1 input");
118
+ expectTag(state, 48, "Invalid tbsCertificate structure"), parseLength(state), buf[state.pos] === 160 ? skipElement(state, 6) : skipElement(state, 5);
119
+ const spkiStart = state.pos;
120
+ expectTag(state, 48, "Invalid SPKI structure");
121
+ const spkiContentLen = parseLength(state);
122
+ return buf.subarray(spkiStart, spkiStart + spkiContentLen + (state.pos - spkiStart));
168
123
  }
169
- export const fromX509 = (pem, alg, options) => {
170
- let spki;
171
- try {
172
- const certificate = processPEMData(pem, /(?:-----(?:BEGIN|END) CERTIFICATE-----|\s)/g);
173
- spki = spkiFromX509(certificate);
174
- }
175
- catch (cause) {
176
- throw new TypeError('Failed to parse the X.509 certificate', { cause });
177
- }
178
- return genericImport('spki', spki, alg, options);
124
+ const fromX509 = (pem, alg, options) => {
125
+ let spki;
126
+ try {
127
+ const certificate = processPEMData(pem, /(?:-----(?:BEGIN|END) CERTIFICATE-----|\s)/g);
128
+ spki = spkiFromX509(certificate);
129
+ } catch (cause) {
130
+ throw new TypeError("Failed to parse the X.509 certificate", { cause });
131
+ }
132
+ return genericImport("spki", spki, alg, options);
133
+ };
134
+ export {
135
+ fromPKCS8,
136
+ fromSPKI,
137
+ fromX509,
138
+ toPKCS8,
139
+ toSPKI
179
140
  };
@@ -1,22 +1,20 @@
1
- export function encodeBase64(input) {
2
- if (Uint8Array.prototype.toBase64) {
3
- return input.toBase64();
4
- }
5
- const CHUNK_SIZE = 0x8000;
6
- const arr = [];
7
- for (let i = 0; i < input.length; i += CHUNK_SIZE) {
8
- arr.push(String.fromCharCode.apply(null, input.subarray(i, i + CHUNK_SIZE)));
9
- }
10
- return btoa(arr.join(''));
1
+ function encodeBase64(input) {
2
+ if (Uint8Array.prototype.toBase64)
3
+ return input.toBase64();
4
+ const CHUNK_SIZE = 32768, arr = [];
5
+ for (let i = 0; i < input.length; i += CHUNK_SIZE)
6
+ arr.push(String.fromCharCode.apply(null, input.subarray(i, i + CHUNK_SIZE)));
7
+ return btoa(arr.join(""));
11
8
  }
12
- export function decodeBase64(encoded) {
13
- if (Uint8Array.fromBase64) {
14
- return Uint8Array.fromBase64(encoded);
15
- }
16
- const binary = atob(encoded);
17
- const bytes = new Uint8Array(binary.length);
18
- for (let i = 0; i < binary.length; i++) {
19
- bytes[i] = binary.charCodeAt(i);
20
- }
21
- return bytes;
9
+ function decodeBase64(encoded) {
10
+ if (Uint8Array.fromBase64)
11
+ return Uint8Array.fromBase64(encoded);
12
+ const binary = atob(encoded), bytes = new Uint8Array(binary.length);
13
+ for (let i = 0; i < binary.length; i++)
14
+ bytes[i] = binary.charCodeAt(i);
15
+ return bytes;
22
16
  }
17
+ export {
18
+ decodeBase64,
19
+ encodeBase64
20
+ };
@@ -1,44 +1,40 @@
1
- export const encoder = new TextEncoder();
2
- export const decoder = new TextDecoder();
3
- export const strictDecoder = new TextDecoder('utf-8', { fatal: true });
4
- const MAX_INT32 = 2 ** 32;
5
- export function concat(...buffers) {
6
- const size = buffers.reduce((acc, { length }) => acc + length, 0);
7
- const buf = new Uint8Array(size);
8
- let i = 0;
9
- for (const buffer of buffers) {
10
- buf.set(buffer, i);
11
- i += buffer.length;
12
- }
13
- return buf;
1
+ const encoder = new TextEncoder(), decoder = new TextDecoder(), strictDecoder = new TextDecoder("utf-8", { fatal: !0 }), MAX_INT32 = 2 ** 32;
2
+ function concat(...buffers) {
3
+ const size = buffers.reduce((acc, { length }) => acc + length, 0), buf = new Uint8Array(size);
4
+ let i = 0;
5
+ for (const buffer of buffers)
6
+ buf.set(buffer, i), i += buffer.length;
7
+ return buf;
14
8
  }
15
9
  function writeUInt32BE(buf, value, offset) {
16
- if (value < 0 || value >= MAX_INT32) {
17
- throw new RangeError(`value must be >= 0 and <= ${MAX_INT32 - 1}. Received ${value}`);
18
- }
19
- buf.set([value >>> 24, value >>> 16, value >>> 8, value & 0xff], offset);
10
+ if (value < 0 || value >= MAX_INT32)
11
+ throw new RangeError(`value must be >= 0 and <= ${MAX_INT32 - 1}. Received ${value}`);
12
+ buf.set([value >>> 24, value >>> 16, value >>> 8, value & 255], offset);
20
13
  }
21
- export function uint64be(value) {
22
- const high = Math.floor(value / MAX_INT32);
23
- const low = value % MAX_INT32;
24
- const buf = new Uint8Array(8);
25
- writeUInt32BE(buf, high, 0);
26
- writeUInt32BE(buf, low, 4);
27
- return buf;
14
+ function uint64be(value) {
15
+ const high = Math.floor(value / MAX_INT32), low = value % MAX_INT32, buf = new Uint8Array(8);
16
+ return writeUInt32BE(buf, high, 0), writeUInt32BE(buf, low, 4), buf;
28
17
  }
29
- export function uint32be(value) {
30
- const buf = new Uint8Array(4);
31
- writeUInt32BE(buf, value);
32
- return buf;
18
+ function uint32be(value) {
19
+ const buf = new Uint8Array(4);
20
+ return writeUInt32BE(buf, value), buf;
33
21
  }
34
- export function encode(string) {
35
- const bytes = new Uint8Array(string.length);
36
- for (let i = 0; i < string.length; i++) {
37
- const code = string.charCodeAt(i);
38
- if (code > 127) {
39
- throw new TypeError('non-ASCII string encountered in encode()');
40
- }
41
- bytes[i] = code;
42
- }
43
- return bytes;
22
+ function encode(string) {
23
+ const bytes = new Uint8Array(string.length);
24
+ for (let i = 0; i < string.length; i++) {
25
+ const code = string.charCodeAt(i);
26
+ if (code > 127)
27
+ throw new TypeError("non-ASCII string encountered in encode()");
28
+ bytes[i] = code;
29
+ }
30
+ return bytes;
44
31
  }
32
+ export {
33
+ concat,
34
+ decoder,
35
+ encode,
36
+ encoder,
37
+ strictDecoder,
38
+ uint32be,
39
+ uint64be
40
+ };