@springmicro/auth 0.7.2 → 0.7.4

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.
@@ -0,0 +1,325 @@
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 O(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 = O(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 S {
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: S,
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: O,
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 S {
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
+ S as H,
312
+ et as a,
313
+ T as b,
314
+ $ as c,
315
+ C as d,
316
+ B as e,
317
+ Z as h,
318
+ m as n,
319
+ I as o,
320
+ R as r,
321
+ Q as s,
322
+ g as t,
323
+ tt as u,
324
+ L as w
325
+ };
@@ -1053,57 +1053,57 @@ function Tt(e) {
1053
1053
  return typeof e.accessList < "u" && (t.accessList = e.accessList), typeof e.blobVersionedHashes < "u" && (t.blobVersionedHashes = e.blobVersionedHashes), typeof e.blobs < "u" && (typeof e.blobs[0] != "string" ? t.blobs = e.blobs.map((r) => E(r)) : t.blobs = e.blobs), typeof e.data < "u" && (t.data = e.data), typeof e.from < "u" && (t.from = e.from), typeof e.gas < "u" && (t.gas = l(e.gas)), typeof e.gasPrice < "u" && (t.gasPrice = l(e.gasPrice)), typeof e.maxFeePerBlobGas < "u" && (t.maxFeePerBlobGas = l(e.maxFeePerBlobGas)), typeof e.maxFeePerGas < "u" && (t.maxFeePerGas = l(e.maxFeePerGas)), typeof e.maxPriorityFeePerGas < "u" && (t.maxPriorityFeePerGas = l(e.maxPriorityFeePerGas)), typeof e.nonce < "u" && (t.nonce = l(e.nonce)), typeof e.to < "u" && (t.to = e.to), typeof e.type < "u" && (t.type = nt[e.type]), typeof e.value < "u" && (t.value = l(e.value)), t;
1054
1054
  }
1055
1055
  export {
1056
- Je as $,
1057
- q as A,
1056
+ tt as $,
1057
+ Tt as A,
1058
1058
  a as B,
1059
- ne as C,
1060
- se as D,
1061
- st as E,
1059
+ $t as C,
1060
+ vt as D,
1061
+ M as E,
1062
1062
  De as F,
1063
- Tt as G,
1063
+ Se as G,
1064
1064
  ve as H,
1065
1065
  lt as I,
1066
- $t as J,
1067
- vt as K,
1068
- ze as L,
1069
- tt as M,
1070
- Se as N,
1071
- M as O,
1072
- yt as P,
1073
- g as Q,
1074
- ot as R,
1075
- _e as S,
1066
+ pt as J,
1067
+ yt as K,
1068
+ _ as L,
1069
+ Xe as M,
1070
+ We as N,
1071
+ Ke as O,
1072
+ Ye as P,
1073
+ Je as Q,
1074
+ Qe as R,
1075
+ Ze as S,
1076
1076
  et as T,
1077
1077
  Ot as U,
1078
- x as V,
1079
- _ as W,
1080
- Xe as X,
1081
- We as Y,
1082
- Ke as Z,
1083
- Ye as _,
1078
+ qe as V,
1079
+ _e as W,
1080
+ x as X,
1081
+ ut as Y,
1082
+ Ge as Z,
1083
+ ze as _,
1084
1084
  ct as a,
1085
- Qe as a0,
1086
- Ze as a1,
1087
- qe as a2,
1088
- Ge as a3,
1089
- ut as a4,
1090
- mt as a5,
1091
- it as a6,
1085
+ q as a0,
1086
+ ne as a1,
1087
+ se as a2,
1088
+ it as a3,
1089
+ g as a4,
1090
+ ot as a5,
1091
+ mt as a6,
1092
1092
  gt as b,
1093
1093
  Re as c,
1094
1094
  ft as d,
1095
1095
  E as e,
1096
- k as f,
1096
+ xt as f,
1097
1097
  wt as g,
1098
1098
  fe as h,
1099
1099
  bt as i,
1100
- at as j,
1101
- It as k,
1102
- Et as l,
1103
- xt as m,
1104
- Pt as n,
1105
- P as o,
1106
- ae as p,
1100
+ Et as j,
1101
+ Pt as k,
1102
+ at as l,
1103
+ It as m,
1104
+ k as n,
1105
+ ae as o,
1106
+ P as p,
1107
1107
  ht as q,
1108
1108
  L as r,
1109
1109
  b as s,
@@ -1112,6 +1112,6 @@ export {
1112
1112
  le as v,
1113
1113
  $e as w,
1114
1114
  dt as x,
1115
- l as y,
1116
- pt as z
1115
+ st as y,
1116
+ l as z
1117
1117
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@springmicro/auth",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -53,5 +53,5 @@
53
53
  "react-social-login-buttons": "^4.1.0",
54
54
  "uuid": "^9.0.1"
55
55
  },
56
- "gitHead": "baedb0de00a8f238a2356a747e69eb1754606d58"
56
+ "gitHead": "b786438d6e75f39145e05d4583a7926eda3c4bf3"
57
57
  }