@springmicro/auth 0.7.20 → 0.7.22

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.
@@ -1,326 +0,0 @@
1
- function m(t) {
2
- if (!Number.isSafeInteger(t) || t < 0)
3
- throw new Error(`Wrong positive integer: ${t}`);
4
- }
5
- function T(t, ...e) {
6
- if (!(t instanceof Uint8Array))
7
- throw new Error("Expected Uint8Array");
8
- if (e.length > 0 && !e.includes(t.length))
9
- throw new Error(`Expected Uint8Array of length ${e}, not of length=${t.length}`);
10
- }
11
- function Z(t) {
12
- if (typeof t != "function" || typeof t.create != "function")
13
- throw new Error("Hash should be wrapped by utils.wrapConstructor");
14
- m(t.outputLen), m(t.blockLen);
15
- }
16
- function B(t, e = !0) {
17
- if (t.destroyed)
18
- throw new Error("Hash instance has been destroyed");
19
- if (e && t.finished)
20
- throw new Error("Hash#digest() has already been called");
21
- }
22
- function I(t, e) {
23
- T(t);
24
- const s = e.outputLen;
25
- if (t.length < s)
26
- throw new Error(`digestInto() expects output buffer of length at least ${s}`);
27
- }
28
- const A = typeof globalThis == "object" && "crypto" in globalThis ? globalThis.crypto : void 0;
29
- /*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
30
- const E = (t) => t instanceof Uint8Array, j = (t) => new Uint8Array(t.buffer, t.byteOffset, t.byteLength), C = (t) => new Uint32Array(t.buffer, t.byteOffset, Math.floor(t.byteLength / 4)), w = (t) => new DataView(t.buffer, t.byteOffset, t.byteLength), u = (t, e) => t << 32 - e | t >>> e, _ = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68;
31
- if (!_)
32
- throw new Error("Non little-endian hardware is not supported");
33
- const D = /* @__PURE__ */ Array.from({ length: 256 }, (t, e) => e.toString(16).padStart(2, "0"));
34
- function N(t) {
35
- if (!E(t))
36
- throw new Error("Uint8Array expected");
37
- let e = "";
38
- for (let s = 0; s < t.length; s++)
39
- e += D[t[s]];
40
- return e;
41
- }
42
- function F(t) {
43
- if (typeof t != "string")
44
- throw new Error("hex string expected, got " + typeof t);
45
- const e = t.length;
46
- if (e % 2)
47
- throw new Error("padded hex string expected, got unpadded hex of length " + e);
48
- const s = new Uint8Array(e / 2);
49
- for (let n = 0; n < s.length; n++) {
50
- const o = n * 2, i = t.slice(o, o + 2), r = Number.parseInt(i, 16);
51
- if (Number.isNaN(r) || r < 0)
52
- throw new Error("Invalid byte sequence");
53
- s[n] = r;
54
- }
55
- return s;
56
- }
57
- const H = async () => {
58
- };
59
- async function V(t, e, s) {
60
- let n = Date.now();
61
- for (let o = 0; o < t; o++) {
62
- s(o);
63
- const i = Date.now() - n;
64
- i >= 0 && i < e || (await H(), n += i);
65
- }
66
- }
67
- function S(t) {
68
- if (typeof t != "string")
69
- throw new Error(`utf8ToBytes expected string, got ${typeof t}`);
70
- return new Uint8Array(new TextEncoder().encode(t));
71
- }
72
- function g(t) {
73
- if (typeof t == "string" && (t = S(t)), !E(t))
74
- throw new Error(`expected Uint8Array, got ${typeof t}`);
75
- return t;
76
- }
77
- function $(...t) {
78
- const e = new Uint8Array(t.reduce((n, o) => n + o.length, 0));
79
- let s = 0;
80
- return t.forEach((n) => {
81
- if (!E(n))
82
- throw new Error("Uint8Array expected");
83
- e.set(n, s), s += n.length;
84
- }), e;
85
- }
86
- class O {
87
- // Safe version that clones internal state
88
- clone() {
89
- return this._cloneInto();
90
- }
91
- }
92
- const G = {}.toString;
93
- function W(t, e) {
94
- if (e !== void 0 && G.call(e) !== "[object Object]")
95
- throw new Error("Options should be object or undefined");
96
- return Object.assign(t, e);
97
- }
98
- function L(t) {
99
- const e = (n) => t().update(g(n)).digest(), s = t();
100
- return e.outputLen = s.outputLen, e.blockLen = s.blockLen, e.create = () => t(), e;
101
- }
102
- function M(t) {
103
- const e = (n, o) => t(o).update(g(n)).digest(), s = t({});
104
- return e.outputLen = s.outputLen, e.blockLen = s.blockLen, e.create = (n) => t(n), e;
105
- }
106
- function v(t) {
107
- const e = (n, o) => t(o).update(g(n)).digest(), s = t({});
108
- return e.outputLen = s.outputLen, e.blockLen = s.blockLen, e.create = (n) => t(n), e;
109
- }
110
- function R(t = 32) {
111
- if (A && typeof A.getRandomValues == "function")
112
- return A.getRandomValues(new Uint8Array(t));
113
- throw new Error("crypto.getRandomValues must be defined");
114
- }
115
- const tt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
116
- __proto__: null,
117
- Hash: O,
118
- asyncLoop: V,
119
- bytesToHex: N,
120
- checkOpts: W,
121
- concatBytes: $,
122
- createView: w,
123
- hexToBytes: F,
124
- isLE: _,
125
- nextTick: H,
126
- randomBytes: R,
127
- rotr: u,
128
- toBytes: g,
129
- u32: C,
130
- u8: j,
131
- utf8ToBytes: S,
132
- wrapConstructor: L,
133
- wrapConstructorWithOpts: M,
134
- wrapXOFConstructorWithOpts: v
135
- }, Symbol.toStringTag, { value: "Module" }));
136
- function z(t, e, s, n) {
137
- if (typeof t.setBigUint64 == "function")
138
- return t.setBigUint64(e, s, n);
139
- const o = BigInt(32), i = BigInt(4294967295), r = Number(s >> o & i), f = Number(s & i), h = n ? 4 : 0, a = n ? 0 : 4;
140
- t.setUint32(e + h, r, n), t.setUint32(e + a, f, n);
141
- }
142
- class P extends O {
143
- constructor(e, s, n, o) {
144
- super(), this.blockLen = e, this.outputLen = s, this.padOffset = n, this.isLE = o, this.finished = !1, this.length = 0, this.pos = 0, this.destroyed = !1, this.buffer = new Uint8Array(e), this.view = w(this.buffer);
145
- }
146
- update(e) {
147
- B(this);
148
- const { view: s, buffer: n, blockLen: o } = this;
149
- e = g(e);
150
- const i = e.length;
151
- for (let r = 0; r < i; ) {
152
- const f = Math.min(o - this.pos, i - r);
153
- if (f === o) {
154
- const h = w(e);
155
- for (; o <= i - r; r += o)
156
- this.process(h, r);
157
- continue;
158
- }
159
- n.set(e.subarray(r, r + f), this.pos), this.pos += f, r += f, this.pos === o && (this.process(s, 0), this.pos = 0);
160
- }
161
- return this.length += e.length, this.roundClean(), this;
162
- }
163
- digestInto(e) {
164
- B(this), I(e, this), this.finished = !0;
165
- const { buffer: s, view: n, blockLen: o, isLE: i } = this;
166
- let { pos: r } = this;
167
- s[r++] = 128, this.buffer.subarray(r).fill(0), this.padOffset > o - r && (this.process(n, 0), r = 0);
168
- for (let c = r; c < o; c++)
169
- s[c] = 0;
170
- z(n, o - 8, BigInt(this.length * 8), i), this.process(n, 0);
171
- const f = w(e), h = this.outputLen;
172
- if (h % 4)
173
- throw new Error("_sha2: outputLen should be aligned to 32bit");
174
- const a = h / 4, x = this.get();
175
- if (a > x.length)
176
- throw new Error("_sha2: outputLen bigger than state");
177
- for (let c = 0; c < a; c++)
178
- f.setUint32(4 * c, x[c], i);
179
- }
180
- digest() {
181
- const { buffer: e, outputLen: s } = this;
182
- this.digestInto(e);
183
- const n = e.slice(0, s);
184
- return this.destroy(), n;
185
- }
186
- _cloneInto(e) {
187
- e || (e = new this.constructor()), e.set(...this.get());
188
- const { blockLen: s, buffer: n, length: o, finished: i, destroyed: r, pos: f } = this;
189
- return e.length = o, e.pos = f, e.finished = i, e.destroyed = r, o % s && e.buffer.set(n), e;
190
- }
191
- }
192
- const q = (t, e, s) => t & e ^ ~t & s, K = (t, e, s) => t & e ^ t & s ^ e & s, X = /* @__PURE__ */ new Uint32Array([
193
- 1116352408,
194
- 1899447441,
195
- 3049323471,
196
- 3921009573,
197
- 961987163,
198
- 1508970993,
199
- 2453635748,
200
- 2870763221,
201
- 3624381080,
202
- 310598401,
203
- 607225278,
204
- 1426881987,
205
- 1925078388,
206
- 2162078206,
207
- 2614888103,
208
- 3248222580,
209
- 3835390401,
210
- 4022224774,
211
- 264347078,
212
- 604807628,
213
- 770255983,
214
- 1249150122,
215
- 1555081692,
216
- 1996064986,
217
- 2554220882,
218
- 2821834349,
219
- 2952996808,
220
- 3210313671,
221
- 3336571891,
222
- 3584528711,
223
- 113926993,
224
- 338241895,
225
- 666307205,
226
- 773529912,
227
- 1294757372,
228
- 1396182291,
229
- 1695183700,
230
- 1986661051,
231
- 2177026350,
232
- 2456956037,
233
- 2730485921,
234
- 2820302411,
235
- 3259730800,
236
- 3345764771,
237
- 3516065817,
238
- 3600352804,
239
- 4094571909,
240
- 275423344,
241
- 430227734,
242
- 506948616,
243
- 659060556,
244
- 883997877,
245
- 958139571,
246
- 1322822218,
247
- 1537002063,
248
- 1747873779,
249
- 1955562222,
250
- 2024104815,
251
- 2227730452,
252
- 2361852424,
253
- 2428436474,
254
- 2756734187,
255
- 3204031479,
256
- 3329325298
257
- ]), l = /* @__PURE__ */ new Uint32Array([
258
- 1779033703,
259
- 3144134277,
260
- 1013904242,
261
- 2773480762,
262
- 1359893119,
263
- 2600822924,
264
- 528734635,
265
- 1541459225
266
- ]), d = /* @__PURE__ */ new Uint32Array(64);
267
- class k extends P {
268
- constructor() {
269
- super(64, 32, 8, !1), this.A = l[0] | 0, this.B = l[1] | 0, this.C = l[2] | 0, this.D = l[3] | 0, this.E = l[4] | 0, this.F = l[5] | 0, this.G = l[6] | 0, this.H = l[7] | 0;
270
- }
271
- get() {
272
- const { A: e, B: s, C: n, D: o, E: i, F: r, G: f, H: h } = this;
273
- return [e, s, n, o, i, r, f, h];
274
- }
275
- // prettier-ignore
276
- set(e, s, n, o, i, r, f, h) {
277
- this.A = e | 0, this.B = s | 0, this.C = n | 0, this.D = o | 0, this.E = i | 0, this.F = r | 0, this.G = f | 0, this.H = h | 0;
278
- }
279
- process(e, s) {
280
- for (let c = 0; c < 16; c++, s += 4)
281
- d[c] = e.getUint32(s, !1);
282
- for (let c = 16; c < 64; c++) {
283
- const p = d[c - 15], b = d[c - 2], U = u(p, 7) ^ u(p, 18) ^ p >>> 3, y = u(b, 17) ^ u(b, 19) ^ b >>> 10;
284
- d[c] = y + d[c - 7] + U + d[c - 16] | 0;
285
- }
286
- let { A: n, B: o, C: i, D: r, E: f, F: h, G: a, H: x } = this;
287
- for (let c = 0; c < 64; c++) {
288
- const p = u(f, 6) ^ u(f, 11) ^ u(f, 25), b = x + p + q(f, h, a) + X[c] + d[c] | 0, y = (u(n, 2) ^ u(n, 13) ^ u(n, 22)) + K(n, o, i) | 0;
289
- x = a, a = h, h = f, f = r + b | 0, r = i, i = o, o = n, n = b + y | 0;
290
- }
291
- n = n + this.A | 0, o = o + this.B | 0, i = i + this.C | 0, r = r + this.D | 0, f = f + this.E | 0, h = h + this.F | 0, a = a + this.G | 0, x = x + this.H | 0, this.set(n, o, i, r, f, h, a, x);
292
- }
293
- roundClean() {
294
- d.fill(0);
295
- }
296
- destroy() {
297
- this.set(0, 0, 0, 0, 0, 0, 0, 0), this.buffer.fill(0);
298
- }
299
- }
300
- class J extends k {
301
- constructor() {
302
- super(), this.A = -1056596264, this.B = 914150663, this.C = 812702999, this.D = -150054599, this.E = -4191439, this.F = 1750603025, this.G = 1694076839, this.H = -1090891868, this.outputLen = 28;
303
- }
304
- }
305
- const Q = /* @__PURE__ */ L(() => new k()), Y = /* @__PURE__ */ L(() => new J()), et = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
306
- __proto__: null,
307
- sha224: Y,
308
- sha256: Q
309
- }, Symbol.toStringTag, { value: "Module" }));
310
- export {
311
- O as H,
312
- P as S,
313
- et as a,
314
- T as b,
315
- $ as c,
316
- C as d,
317
- B as e,
318
- Z as h,
319
- m as n,
320
- I as o,
321
- R as r,
322
- Q as s,
323
- g as t,
324
- tt as u,
325
- L as w
326
- };