nostr-double-ratchet 0.0.8 → 0.0.9
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/dist/Invite.d.ts +10 -5
- package/dist/Invite.d.ts.map +1 -1
- package/dist/nostr-double-ratchet.es.js +723 -711
- package/dist/nostr-double-ratchet.umd.js +1 -1
- package/package.json +1 -1
- package/src/Invite.ts +23 -10
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
var
|
|
2
|
-
var ai = (e, t, n) => t in e ?
|
|
1
|
+
var oi = Object.defineProperty;
|
|
2
|
+
var ai = (e, t, n) => t in e ? oi(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
|
|
3
3
|
var ee = (e, t, n) => ai(e, typeof t != "symbol" ? t + "" : t, n);
|
|
4
|
-
function
|
|
4
|
+
function En(e) {
|
|
5
5
|
if (!Number.isSafeInteger(e) || e < 0)
|
|
6
6
|
throw new Error(`Wrong positive integer: ${e}`);
|
|
7
7
|
}
|
|
@@ -14,7 +14,7 @@ function Pn(e, ...t) {
|
|
|
14
14
|
function ci(e) {
|
|
15
15
|
if (typeof e != "function" || typeof e.create != "function")
|
|
16
16
|
throw new Error("Hash should be wrapped by utils.wrapConstructor");
|
|
17
|
-
|
|
17
|
+
En(e.outputLen), En(e.blockLen);
|
|
18
18
|
}
|
|
19
19
|
function rt(e, t = !0) {
|
|
20
20
|
if (e.destroyed)
|
|
@@ -70,8 +70,8 @@ function qn(e = 32) {
|
|
|
70
70
|
function yi(e, t, n, r) {
|
|
71
71
|
if (typeof e.setBigUint64 == "function")
|
|
72
72
|
return e.setBigUint64(t, n, r);
|
|
73
|
-
const i = BigInt(32),
|
|
74
|
-
e.setUint32(t + c,
|
|
73
|
+
const i = BigInt(32), s = BigInt(4294967295), o = Number(n >> i & s), a = Number(n & s), c = r ? 4 : 0, l = r ? 0 : 4;
|
|
74
|
+
e.setUint32(t + c, o, r), e.setUint32(t + l, a, r);
|
|
75
75
|
}
|
|
76
76
|
let pi = class extends Hn {
|
|
77
77
|
constructor(t, n, r, i) {
|
|
@@ -81,27 +81,27 @@ let pi = class extends Hn {
|
|
|
81
81
|
rt(this);
|
|
82
82
|
const { view: n, buffer: r, blockLen: i } = this;
|
|
83
83
|
t = Ft(t);
|
|
84
|
-
const
|
|
85
|
-
for (let
|
|
86
|
-
const a = Math.min(i - this.pos,
|
|
84
|
+
const s = t.length;
|
|
85
|
+
for (let o = 0; o < s; ) {
|
|
86
|
+
const a = Math.min(i - this.pos, s - o);
|
|
87
87
|
if (a === i) {
|
|
88
88
|
const c = Kt(t);
|
|
89
|
-
for (; i <=
|
|
90
|
-
this.process(c,
|
|
89
|
+
for (; i <= s - o; o += i)
|
|
90
|
+
this.process(c, o);
|
|
91
91
|
continue;
|
|
92
92
|
}
|
|
93
|
-
r.set(t.subarray(
|
|
93
|
+
r.set(t.subarray(o, o + a), this.pos), this.pos += a, o += a, this.pos === i && (this.process(n, 0), this.pos = 0);
|
|
94
94
|
}
|
|
95
95
|
return this.length += t.length, this.roundClean(), this;
|
|
96
96
|
}
|
|
97
97
|
digestInto(t) {
|
|
98
98
|
rt(this), li(t, this), this.finished = !0;
|
|
99
|
-
const { buffer: n, view: r, blockLen: i, isLE:
|
|
100
|
-
let { pos:
|
|
101
|
-
n[
|
|
102
|
-
for (let u =
|
|
99
|
+
const { buffer: n, view: r, blockLen: i, isLE: s } = this;
|
|
100
|
+
let { pos: o } = this;
|
|
101
|
+
n[o++] = 128, this.buffer.subarray(o).fill(0), this.padOffset > i - o && (this.process(r, 0), o = 0);
|
|
102
|
+
for (let u = o; u < i; u++)
|
|
103
103
|
n[u] = 0;
|
|
104
|
-
yi(r, i - 8, BigInt(this.length * 8),
|
|
104
|
+
yi(r, i - 8, BigInt(this.length * 8), s), this.process(r, 0);
|
|
105
105
|
const a = Kt(t), c = this.outputLen;
|
|
106
106
|
if (c % 4)
|
|
107
107
|
throw new Error("_sha2: outputLen should be aligned to 32bit");
|
|
@@ -109,7 +109,7 @@ let pi = class extends Hn {
|
|
|
109
109
|
if (l > f.length)
|
|
110
110
|
throw new Error("_sha2: outputLen bigger than state");
|
|
111
111
|
for (let u = 0; u < l; u++)
|
|
112
|
-
a.setUint32(4 * u, f[u],
|
|
112
|
+
a.setUint32(4 * u, f[u], s);
|
|
113
113
|
}
|
|
114
114
|
digest() {
|
|
115
115
|
const { buffer: t, outputLen: n } = this;
|
|
@@ -119,8 +119,8 @@ let pi = class extends Hn {
|
|
|
119
119
|
}
|
|
120
120
|
_cloneInto(t) {
|
|
121
121
|
t || (t = new this.constructor()), t.set(...this.get());
|
|
122
|
-
const { blockLen: n, buffer: r, length: i, finished:
|
|
123
|
-
return t.length = i, t.pos = a, t.finished =
|
|
122
|
+
const { blockLen: n, buffer: r, length: i, finished: s, destroyed: o, pos: a } = this;
|
|
123
|
+
return t.length = i, t.pos = a, t.finished = s, t.destroyed = o, i % n && t.buffer.set(r), t;
|
|
124
124
|
}
|
|
125
125
|
};
|
|
126
126
|
const gi = (e, t, n) => e & t ^ ~e & n, wi = (e, t, n) => e & t ^ e & n ^ t & n, bi = /* @__PURE__ */ new Uint32Array([
|
|
@@ -203,12 +203,12 @@ let vi = class extends pi {
|
|
|
203
203
|
super(64, 32, 8, !1), this.A = ge[0] | 0, this.B = ge[1] | 0, this.C = ge[2] | 0, this.D = ge[3] | 0, this.E = ge[4] | 0, this.F = ge[5] | 0, this.G = ge[6] | 0, this.H = ge[7] | 0;
|
|
204
204
|
}
|
|
205
205
|
get() {
|
|
206
|
-
const { A: t, B: n, C: r, D: i, E:
|
|
207
|
-
return [t, n, r, i,
|
|
206
|
+
const { A: t, B: n, C: r, D: i, E: s, F: o, G: a, H: c } = this;
|
|
207
|
+
return [t, n, r, i, s, o, a, c];
|
|
208
208
|
}
|
|
209
209
|
// prettier-ignore
|
|
210
|
-
set(t, n, r, i,
|
|
211
|
-
this.A = t | 0, this.B = n | 0, this.C = r | 0, this.D = i | 0, this.E =
|
|
210
|
+
set(t, n, r, i, s, o, a, c) {
|
|
211
|
+
this.A = t | 0, this.B = n | 0, this.C = r | 0, this.D = i | 0, this.E = s | 0, this.F = o | 0, this.G = a | 0, this.H = c | 0;
|
|
212
212
|
}
|
|
213
213
|
process(t, n) {
|
|
214
214
|
for (let u = 0; u < 16; u++, n += 4)
|
|
@@ -217,12 +217,12 @@ let vi = class extends pi {
|
|
|
217
217
|
const d = we[u - 15], p = we[u - 2], g = ne(d, 7) ^ ne(d, 18) ^ d >>> 3, h = ne(p, 17) ^ ne(p, 19) ^ p >>> 10;
|
|
218
218
|
we[u] = h + we[u - 7] + g + we[u - 16] | 0;
|
|
219
219
|
}
|
|
220
|
-
let { A: r, B: i, C:
|
|
220
|
+
let { A: r, B: i, C: s, D: o, E: a, F: c, G: l, H: f } = this;
|
|
221
221
|
for (let u = 0; u < 64; u++) {
|
|
222
|
-
const d = ne(a, 6) ^ ne(a, 11) ^ ne(a, 25), p = f + d + gi(a, c, l) + bi[u] + we[u] | 0, h = (ne(r, 2) ^ ne(r, 13) ^ ne(r, 22)) + wi(r, i,
|
|
223
|
-
f = l, l = c, c = a, a =
|
|
222
|
+
const d = ne(a, 6) ^ ne(a, 11) ^ ne(a, 25), p = f + d + gi(a, c, l) + bi[u] + we[u] | 0, h = (ne(r, 2) ^ ne(r, 13) ^ ne(r, 22)) + wi(r, i, s) | 0;
|
|
223
|
+
f = l, l = c, c = a, a = o + p | 0, o = s, s = i, i = r, r = p + h | 0;
|
|
224
224
|
}
|
|
225
|
-
r = r + this.A | 0, i = i + this.B | 0,
|
|
225
|
+
r = r + this.A | 0, i = i + this.B | 0, s = s + this.C | 0, o = o + this.D | 0, a = a + this.E | 0, c = c + this.F | 0, l = l + this.G | 0, f = f + this.H | 0, this.set(r, i, s, o, a, c, l, f);
|
|
226
226
|
}
|
|
227
227
|
roundClean() {
|
|
228
228
|
we.fill(0);
|
|
@@ -233,13 +233,13 @@ let vi = class extends pi {
|
|
|
233
233
|
};
|
|
234
234
|
const $t = /* @__PURE__ */ di(() => new vi());
|
|
235
235
|
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
236
|
-
const Dn = BigInt(0), lt = BigInt(1),
|
|
236
|
+
const Dn = BigInt(0), lt = BigInt(1), mi = BigInt(2), ut = (e) => e instanceof Uint8Array, Ei = /* @__PURE__ */ Array.from({ length: 256 }, (e, t) => t.toString(16).padStart(2, "0"));
|
|
237
237
|
function qe(e) {
|
|
238
238
|
if (!ut(e))
|
|
239
239
|
throw new Error("Uint8Array expected");
|
|
240
240
|
let t = "";
|
|
241
241
|
for (let n = 0; n < e.length; n++)
|
|
242
|
-
t +=
|
|
242
|
+
t += Ei[e[n]];
|
|
243
243
|
return t;
|
|
244
244
|
}
|
|
245
245
|
function jn(e) {
|
|
@@ -259,10 +259,10 @@ function De(e) {
|
|
|
259
259
|
throw new Error("padded hex string expected, got unpadded hex of length " + t);
|
|
260
260
|
const n = new Uint8Array(t / 2);
|
|
261
261
|
for (let r = 0; r < n.length; r++) {
|
|
262
|
-
const i = r * 2,
|
|
263
|
-
if (Number.isNaN(
|
|
262
|
+
const i = r * 2, s = e.slice(i, i + 2), o = Number.parseInt(s, 16);
|
|
263
|
+
if (Number.isNaN(o) || o < 0)
|
|
264
264
|
throw new Error("Invalid byte sequence");
|
|
265
|
-
n[r] =
|
|
265
|
+
n[r] = o;
|
|
266
266
|
}
|
|
267
267
|
return n;
|
|
268
268
|
}
|
|
@@ -288,8 +288,8 @@ function Z(e, t, n) {
|
|
|
288
288
|
if (typeof t == "string")
|
|
289
289
|
try {
|
|
290
290
|
r = De(t);
|
|
291
|
-
} catch (
|
|
292
|
-
throw new Error(`${e} must be valid hex string, got "${t}". Cause: ${
|
|
291
|
+
} catch (s) {
|
|
292
|
+
throw new Error(`${e} must be valid hex string, got "${t}". Cause: ${s}`);
|
|
293
293
|
}
|
|
294
294
|
else if (ut(t))
|
|
295
295
|
r = Uint8Array.from(t);
|
|
@@ -300,7 +300,7 @@ function Z(e, t, n) {
|
|
|
300
300
|
throw new Error(`${e} expected ${n} bytes, got ${i}`);
|
|
301
301
|
return r;
|
|
302
302
|
}
|
|
303
|
-
function
|
|
303
|
+
function ke(...e) {
|
|
304
304
|
const t = new Uint8Array(e.reduce((r, i) => r + i.length, 0));
|
|
305
305
|
let n = 0;
|
|
306
306
|
return e.forEach((r) => {
|
|
@@ -331,7 +331,7 @@ function Ki(e) {
|
|
|
331
331
|
function Ni(e, t) {
|
|
332
332
|
return e >> BigInt(t) & lt;
|
|
333
333
|
}
|
|
334
|
-
const
|
|
334
|
+
const Bi = (e, t, n) => e | (n ? lt : Dn) << BigInt(t), Yt = (e) => (mi << BigInt(e - 1)) - lt, Nt = (e) => new Uint8Array(e), xn = (e) => Uint8Array.from(e);
|
|
335
335
|
function Vn(e, t, n) {
|
|
336
336
|
if (typeof e != "number" || e < 2)
|
|
337
337
|
throw new Error("hashLen must be a number");
|
|
@@ -339,13 +339,13 @@ function Vn(e, t, n) {
|
|
|
339
339
|
throw new Error("qByteLen must be a number");
|
|
340
340
|
if (typeof n != "function")
|
|
341
341
|
throw new Error("hmacFn must be a function");
|
|
342
|
-
let r = Nt(e), i = Nt(e),
|
|
343
|
-
const
|
|
344
|
-
r.fill(1), i.fill(0),
|
|
342
|
+
let r = Nt(e), i = Nt(e), s = 0;
|
|
343
|
+
const o = () => {
|
|
344
|
+
r.fill(1), i.fill(0), s = 0;
|
|
345
345
|
}, a = (...u) => n(i, r, ...u), c = (u = Nt()) => {
|
|
346
346
|
i = a(xn([0]), u), r = a(), u.length !== 0 && (i = a(xn([1]), u), r = a());
|
|
347
347
|
}, l = () => {
|
|
348
|
-
if (
|
|
348
|
+
if (s++ >= 1e3)
|
|
349
349
|
throw new Error("drbg: tried 1000 values");
|
|
350
350
|
let u = 0;
|
|
351
351
|
const d = [];
|
|
@@ -354,17 +354,17 @@ function Vn(e, t, n) {
|
|
|
354
354
|
const p = r.slice();
|
|
355
355
|
d.push(p), u += r.length;
|
|
356
356
|
}
|
|
357
|
-
return
|
|
357
|
+
return ke(...d);
|
|
358
358
|
};
|
|
359
359
|
return (u, d) => {
|
|
360
|
-
|
|
360
|
+
o(), c(u);
|
|
361
361
|
let p;
|
|
362
362
|
for (; !(p = d(l())); )
|
|
363
363
|
c();
|
|
364
|
-
return
|
|
364
|
+
return o(), p;
|
|
365
365
|
};
|
|
366
366
|
}
|
|
367
|
-
const
|
|
367
|
+
const Ci = {
|
|
368
368
|
bigint: (e) => typeof e == "bigint",
|
|
369
369
|
function: (e) => typeof e == "function",
|
|
370
370
|
boolean: (e) => typeof e == "boolean",
|
|
@@ -376,30 +376,30 @@ const ki = {
|
|
|
376
376
|
hash: (e) => typeof e == "function" && Number.isSafeInteger(e.outputLen)
|
|
377
377
|
};
|
|
378
378
|
function Ye(e, t, n = {}) {
|
|
379
|
-
const r = (i,
|
|
380
|
-
const a =
|
|
379
|
+
const r = (i, s, o) => {
|
|
380
|
+
const a = Ci[s];
|
|
381
381
|
if (typeof a != "function")
|
|
382
|
-
throw new Error(`Invalid validator "${
|
|
382
|
+
throw new Error(`Invalid validator "${s}", expected function`);
|
|
383
383
|
const c = e[i];
|
|
384
|
-
if (!(
|
|
385
|
-
throw new Error(`Invalid param ${String(i)}=${c} (${typeof c}), expected ${
|
|
384
|
+
if (!(o && c === void 0) && !a(c, e))
|
|
385
|
+
throw new Error(`Invalid param ${String(i)}=${c} (${typeof c}), expected ${s}`);
|
|
386
386
|
};
|
|
387
|
-
for (const [i,
|
|
388
|
-
r(i,
|
|
389
|
-
for (const [i,
|
|
390
|
-
r(i,
|
|
387
|
+
for (const [i, s] of Object.entries(t))
|
|
388
|
+
r(i, s, !1);
|
|
389
|
+
for (const [i, s] of Object.entries(n))
|
|
390
|
+
r(i, s, !0);
|
|
391
391
|
return e;
|
|
392
392
|
}
|
|
393
|
-
const
|
|
393
|
+
const ki = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
394
394
|
__proto__: null,
|
|
395
395
|
bitGet: Ni,
|
|
396
396
|
bitLen: Ki,
|
|
397
397
|
bitMask: Yt,
|
|
398
|
-
bitSet:
|
|
398
|
+
bitSet: Bi,
|
|
399
399
|
bytesToHex: qe,
|
|
400
400
|
bytesToNumberBE: G,
|
|
401
401
|
bytesToNumberLE: Gt,
|
|
402
|
-
concatBytes:
|
|
402
|
+
concatBytes: ke,
|
|
403
403
|
createHmacDrbg: Vn,
|
|
404
404
|
ensureBytes: Z,
|
|
405
405
|
equalBytes: Si,
|
|
@@ -439,10 +439,10 @@ function J(e, t, n) {
|
|
|
439
439
|
function Ot(e, t) {
|
|
440
440
|
if (e === V || t <= V)
|
|
441
441
|
throw new Error(`invert: expected positive integers, got n=${e} mod=${t}`);
|
|
442
|
-
let n = z(e, t), r = t, i = V,
|
|
442
|
+
let n = z(e, t), r = t, i = V, s = q;
|
|
443
443
|
for (; n !== V; ) {
|
|
444
|
-
const a = r / n, c = r % n, l = i -
|
|
445
|
-
r = n, n = c, i =
|
|
444
|
+
const a = r / n, c = r % n, l = i - s * a;
|
|
445
|
+
r = n, n = c, i = s, s = l;
|
|
446
446
|
}
|
|
447
447
|
if (r !== q)
|
|
448
448
|
throw new Error("invert: does not exist");
|
|
@@ -456,19 +456,19 @@ function _i(e) {
|
|
|
456
456
|
for (i = Ne; i < e && Ii(i, t, e) !== e - q; i++)
|
|
457
457
|
;
|
|
458
458
|
if (r === 1) {
|
|
459
|
-
const
|
|
459
|
+
const o = (e + q) / Rt;
|
|
460
460
|
return function(c, l) {
|
|
461
|
-
const f = c.pow(l,
|
|
461
|
+
const f = c.pow(l, o);
|
|
462
462
|
if (!c.eql(c.sqr(f), l))
|
|
463
463
|
throw new Error("Cannot find square root");
|
|
464
464
|
return f;
|
|
465
465
|
};
|
|
466
466
|
}
|
|
467
|
-
const
|
|
467
|
+
const s = (n + q) / Ne;
|
|
468
468
|
return function(a, c) {
|
|
469
469
|
if (a.pow(c, t) === a.neg(a.ONE))
|
|
470
470
|
throw new Error("Cannot find square root");
|
|
471
|
-
let l = r, f = a.pow(a.mul(a.ONE, i), n), u = a.pow(c,
|
|
471
|
+
let l = r, f = a.pow(a.mul(a.ONE, i), n), u = a.pow(c, s), d = a.pow(c, n);
|
|
472
472
|
for (; !a.eql(d, a.ONE); ) {
|
|
473
473
|
if (a.eql(d, a.ZERO))
|
|
474
474
|
return a.ZERO;
|
|
@@ -485,16 +485,16 @@ function Li(e) {
|
|
|
485
485
|
if (e % Rt === Ui) {
|
|
486
486
|
const t = (e + q) / Rt;
|
|
487
487
|
return function(r, i) {
|
|
488
|
-
const
|
|
489
|
-
if (!r.eql(r.sqr(
|
|
488
|
+
const s = r.pow(i, t);
|
|
489
|
+
if (!r.eql(r.sqr(s), i))
|
|
490
490
|
throw new Error("Cannot find square root");
|
|
491
|
-
return
|
|
491
|
+
return s;
|
|
492
492
|
};
|
|
493
493
|
}
|
|
494
494
|
if (e % An === Sn) {
|
|
495
495
|
const t = (e - Sn) / An;
|
|
496
496
|
return function(r, i) {
|
|
497
|
-
const
|
|
497
|
+
const s = r.mul(i, Ne), o = r.pow(s, t), a = r.mul(i, o), c = r.mul(r.mul(a, Ne), o), l = r.mul(a, r.sub(c, r.ONE));
|
|
498
498
|
if (!r.eql(r.sqr(l), i))
|
|
499
499
|
throw new Error("Cannot find square root");
|
|
500
500
|
return l;
|
|
@@ -543,8 +543,8 @@ function Ri(e, t, n) {
|
|
|
543
543
|
return r;
|
|
544
544
|
}
|
|
545
545
|
function Oi(e, t) {
|
|
546
|
-
const n = new Array(t.length), r = t.reduce((
|
|
547
|
-
return t.reduceRight((
|
|
546
|
+
const n = new Array(t.length), r = t.reduce((s, o, a) => e.is0(o) ? s : (n[a] = s, e.mul(s, o)), e.ONE), i = e.inv(r);
|
|
547
|
+
return t.reduceRight((s, o, a) => e.is0(o) ? s : (n[a] = e.mul(s, n[a]), e.mul(s, o)), i), n;
|
|
548
548
|
}
|
|
549
549
|
function zn(e, t) {
|
|
550
550
|
const n = t !== void 0 ? t : e.toString(2).length, r = Math.ceil(n / 8);
|
|
@@ -553,13 +553,13 @@ function zn(e, t) {
|
|
|
553
553
|
function Pi(e, t, n = !1, r = {}) {
|
|
554
554
|
if (e <= V)
|
|
555
555
|
throw new Error(`Expected Field ORDER > 0, got ${e}`);
|
|
556
|
-
const { nBitLength: i, nByteLength:
|
|
557
|
-
if (
|
|
556
|
+
const { nBitLength: i, nByteLength: s } = zn(e, t);
|
|
557
|
+
if (s > 2048)
|
|
558
558
|
throw new Error("Field lengths over 2048 bytes are not supported");
|
|
559
|
-
const
|
|
559
|
+
const o = Li(e), a = Object.freeze({
|
|
560
560
|
ORDER: e,
|
|
561
561
|
BITS: i,
|
|
562
|
-
BYTES:
|
|
562
|
+
BYTES: s,
|
|
563
563
|
MASK: Yt(i),
|
|
564
564
|
ZERO: V,
|
|
565
565
|
ONE: q,
|
|
@@ -585,15 +585,15 @@ function Pi(e, t, n = !1, r = {}) {
|
|
|
585
585
|
subN: (c, l) => c - l,
|
|
586
586
|
mulN: (c, l) => c * l,
|
|
587
587
|
inv: (c) => Ot(c, e),
|
|
588
|
-
sqrt: r.sqrt || ((c) =>
|
|
588
|
+
sqrt: r.sqrt || ((c) => o(a, c)),
|
|
589
589
|
invertBatch: (c) => Oi(a, c),
|
|
590
590
|
// TODO: do we really need constant cmov?
|
|
591
591
|
// We don't have const-time bigints anyway, so probably will be not very useful
|
|
592
592
|
cmov: (c, l, f) => f ? l : c,
|
|
593
|
-
toBytes: (c) => n ? Jt(c,
|
|
593
|
+
toBytes: (c) => n ? Jt(c, s) : xe(c, s),
|
|
594
594
|
fromBytes: (c) => {
|
|
595
|
-
if (c.length !==
|
|
596
|
-
throw new Error(`Fp.fromBytes: expected ${
|
|
595
|
+
if (c.length !== s)
|
|
596
|
+
throw new Error(`Fp.fromBytes: expected ${s}, got ${c.length}`);
|
|
597
597
|
return n ? Gt(c) : G(c);
|
|
598
598
|
}
|
|
599
599
|
});
|
|
@@ -610,30 +610,30 @@ function Fn(e) {
|
|
|
610
610
|
return t + Math.ceil(t / 2);
|
|
611
611
|
}
|
|
612
612
|
function Mi(e, t, n = !1) {
|
|
613
|
-
const r = e.length, i = Zn(t),
|
|
614
|
-
if (r < 16 || r <
|
|
615
|
-
throw new Error(`expected ${
|
|
616
|
-
const
|
|
613
|
+
const r = e.length, i = Zn(t), s = Fn(t);
|
|
614
|
+
if (r < 16 || r < s || r > 1024)
|
|
615
|
+
throw new Error(`expected ${s}-1024 bytes of input, got ${r}`);
|
|
616
|
+
const o = n ? G(e) : Gt(e), a = z(o, t - q) + q;
|
|
617
617
|
return n ? Jt(a, i) : xe(a, i);
|
|
618
618
|
}
|
|
619
619
|
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
620
|
-
const Hi = BigInt(0),
|
|
620
|
+
const Hi = BigInt(0), Bt = BigInt(1);
|
|
621
621
|
function qi(e, t) {
|
|
622
|
-
const n = (i,
|
|
623
|
-
const
|
|
624
|
-
return i ?
|
|
622
|
+
const n = (i, s) => {
|
|
623
|
+
const o = s.negate();
|
|
624
|
+
return i ? o : s;
|
|
625
625
|
}, r = (i) => {
|
|
626
|
-
const
|
|
627
|
-
return { windows:
|
|
626
|
+
const s = Math.ceil(t / i) + 1, o = 2 ** (i - 1);
|
|
627
|
+
return { windows: s, windowSize: o };
|
|
628
628
|
};
|
|
629
629
|
return {
|
|
630
630
|
constTimeNegate: n,
|
|
631
631
|
// non-const time multiplication ladder
|
|
632
|
-
unsafeLadder(i,
|
|
633
|
-
let
|
|
634
|
-
for (;
|
|
635
|
-
|
|
636
|
-
return
|
|
632
|
+
unsafeLadder(i, s) {
|
|
633
|
+
let o = e.ZERO, a = i;
|
|
634
|
+
for (; s > Hi; )
|
|
635
|
+
s & Bt && (o = o.add(a)), a = a.double(), s >>= Bt;
|
|
636
|
+
return o;
|
|
637
637
|
},
|
|
638
638
|
/**
|
|
639
639
|
* Creates a wNAF precomputation window. Used for caching.
|
|
@@ -645,10 +645,10 @@ function qi(e, t) {
|
|
|
645
645
|
* For a 256-bit curve and window size 8, the number of precomputed points is 128 * 33 = 4224.
|
|
646
646
|
* @returns precomputed point tables flattened to a single array
|
|
647
647
|
*/
|
|
648
|
-
precomputeWindow(i,
|
|
649
|
-
const { windows:
|
|
648
|
+
precomputeWindow(i, s) {
|
|
649
|
+
const { windows: o, windowSize: a } = r(s), c = [];
|
|
650
650
|
let l = i, f = l;
|
|
651
|
-
for (let u = 0; u <
|
|
651
|
+
for (let u = 0; u < o; u++) {
|
|
652
652
|
f = l, c.push(f);
|
|
653
653
|
for (let d = 1; d < a; d++)
|
|
654
654
|
f = f.add(l), c.push(f);
|
|
@@ -663,23 +663,23 @@ function qi(e, t) {
|
|
|
663
663
|
* @param n scalar (we don't check here, but should be less than curve order)
|
|
664
664
|
* @returns real and fake (for const-time) points
|
|
665
665
|
*/
|
|
666
|
-
wNAF(i,
|
|
666
|
+
wNAF(i, s, o) {
|
|
667
667
|
const { windows: a, windowSize: c } = r(i);
|
|
668
668
|
let l = e.ZERO, f = e.BASE;
|
|
669
669
|
const u = BigInt(2 ** i - 1), d = 2 ** i, p = BigInt(i);
|
|
670
670
|
for (let g = 0; g < a; g++) {
|
|
671
671
|
const h = g * c;
|
|
672
|
-
let y = Number(
|
|
673
|
-
|
|
674
|
-
const w = h,
|
|
675
|
-
y === 0 ? f = f.add(n(K,
|
|
672
|
+
let y = Number(o & u);
|
|
673
|
+
o >>= p, y > c && (y -= d, o += Bt);
|
|
674
|
+
const w = h, E = h + Math.abs(y) - 1, K = g % 2 !== 0, I = y < 0;
|
|
675
|
+
y === 0 ? f = f.add(n(K, s[w])) : l = l.add(n(I, s[E]));
|
|
676
676
|
}
|
|
677
677
|
return { p: l, f };
|
|
678
678
|
},
|
|
679
|
-
wNAFCached(i,
|
|
679
|
+
wNAFCached(i, s, o, a) {
|
|
680
680
|
const c = i._WINDOW_SIZE || 1;
|
|
681
|
-
let l =
|
|
682
|
-
return l || (l = this.precomputeWindow(i, c), c !== 1 &&
|
|
681
|
+
let l = s.get(i);
|
|
682
|
+
return l || (l = this.precomputeWindow(i, c), c !== 1 && s.set(i, a(l))), this.wNAF(c, l, o);
|
|
683
683
|
}
|
|
684
684
|
};
|
|
685
685
|
}
|
|
@@ -722,7 +722,7 @@ function Di(e) {
|
|
|
722
722
|
}
|
|
723
723
|
return Object.freeze({ ...t });
|
|
724
724
|
}
|
|
725
|
-
const { bytesToNumberBE: ji, hexToBytes: Vi } =
|
|
725
|
+
const { bytesToNumberBE: ji, hexToBytes: Vi } = ki, Be = {
|
|
726
726
|
// asn.1 DER encoding utils
|
|
727
727
|
Err: class extends Error {
|
|
728
728
|
constructor(t = "") {
|
|
@@ -730,7 +730,7 @@ const { bytesToNumberBE: ji, hexToBytes: Vi } = Bi, Ce = {
|
|
|
730
730
|
}
|
|
731
731
|
},
|
|
732
732
|
_parseInt(e) {
|
|
733
|
-
const { Err: t } =
|
|
733
|
+
const { Err: t } = Be;
|
|
734
734
|
if (e.length < 2 || e[0] !== 2)
|
|
735
735
|
throw new t("Invalid signature integer tag");
|
|
736
736
|
const n = e[1], r = e.subarray(2, n + 2);
|
|
@@ -743,7 +743,7 @@ const { bytesToNumberBE: ji, hexToBytes: Vi } = Bi, Ce = {
|
|
|
743
743
|
return { d: ji(r), l: e.subarray(n + 2) };
|
|
744
744
|
},
|
|
745
745
|
toSig(e) {
|
|
746
|
-
const { Err: t } =
|
|
746
|
+
const { Err: t } = Be, n = typeof e == "string" ? Vi(e) : e;
|
|
747
747
|
if (!(n instanceof Uint8Array))
|
|
748
748
|
throw new Error("ui8a expected");
|
|
749
749
|
let r = n.length;
|
|
@@ -751,17 +751,17 @@ const { bytesToNumberBE: ji, hexToBytes: Vi } = Bi, Ce = {
|
|
|
751
751
|
throw new t("Invalid signature tag");
|
|
752
752
|
if (n[1] !== r - 2)
|
|
753
753
|
throw new t("Invalid signature: incorrect length");
|
|
754
|
-
const { d: i, l:
|
|
754
|
+
const { d: i, l: s } = Be._parseInt(n.subarray(2)), { d: o, l: a } = Be._parseInt(s);
|
|
755
755
|
if (a.length)
|
|
756
756
|
throw new t("Invalid signature: left bytes after parsing");
|
|
757
|
-
return { r: i, s };
|
|
757
|
+
return { r: i, s: o };
|
|
758
758
|
},
|
|
759
759
|
hexFromSig(e) {
|
|
760
760
|
const t = (l) => Number.parseInt(l[0], 16) & 8 ? "00" + l : l, n = (l) => {
|
|
761
761
|
const f = l.toString(16);
|
|
762
762
|
return f.length & 1 ? `0${f}` : f;
|
|
763
|
-
}, r = t(n(e.s)), i = t(n(e.r)),
|
|
764
|
-
return `30${n(
|
|
763
|
+
}, r = t(n(e.s)), i = t(n(e.r)), s = r.length / 2, o = i.length / 2, a = n(s), c = n(o);
|
|
764
|
+
return `30${n(o + s + 4)}02${c}${i}02${a}${r}`;
|
|
765
765
|
}
|
|
766
766
|
}, ce = BigInt(0), Y = BigInt(1);
|
|
767
767
|
BigInt(2);
|
|
@@ -770,26 +770,26 @@ BigInt(4);
|
|
|
770
770
|
function zi(e) {
|
|
771
771
|
const t = Di(e), { Fp: n } = t, r = t.toBytes || ((g, h, y) => {
|
|
772
772
|
const w = h.toAffine();
|
|
773
|
-
return
|
|
773
|
+
return ke(Uint8Array.from([4]), n.toBytes(w.x), n.toBytes(w.y));
|
|
774
774
|
}), i = t.fromBytes || ((g) => {
|
|
775
775
|
const h = g.subarray(1), y = n.fromBytes(h.subarray(0, n.BYTES)), w = n.fromBytes(h.subarray(n.BYTES, 2 * n.BYTES));
|
|
776
776
|
return { x: y, y: w };
|
|
777
777
|
});
|
|
778
|
-
function
|
|
779
|
-
const { a: h, b: y } = t, w = n.sqr(g),
|
|
780
|
-
return n.add(n.add(
|
|
778
|
+
function s(g) {
|
|
779
|
+
const { a: h, b: y } = t, w = n.sqr(g), E = n.mul(w, g);
|
|
780
|
+
return n.add(n.add(E, n.mul(g, h)), y);
|
|
781
781
|
}
|
|
782
|
-
if (!n.eql(n.sqr(t.Gy),
|
|
782
|
+
if (!n.eql(n.sqr(t.Gy), s(t.Gx)))
|
|
783
783
|
throw new Error("bad generator point: equation left != right");
|
|
784
|
-
function
|
|
784
|
+
function o(g) {
|
|
785
785
|
return typeof g == "bigint" && ce < g && g < t.n;
|
|
786
786
|
}
|
|
787
787
|
function a(g) {
|
|
788
|
-
if (!
|
|
788
|
+
if (!o(g))
|
|
789
789
|
throw new Error("Expected valid bigint: 0 < bigint < curve.n");
|
|
790
790
|
}
|
|
791
791
|
function c(g) {
|
|
792
|
-
const { allowedPrivateKeyLengths: h, nByteLength: y, wrapPrivateKey: w, n:
|
|
792
|
+
const { allowedPrivateKeyLengths: h, nByteLength: y, wrapPrivateKey: w, n: E } = t;
|
|
793
793
|
if (h && typeof g != "bigint") {
|
|
794
794
|
if (g instanceof Uint8Array && (g = qe(g)), typeof g != "string" || !h.includes(g.length))
|
|
795
795
|
throw new Error("Invalid key");
|
|
@@ -801,7 +801,7 @@ function zi(e) {
|
|
|
801
801
|
} catch {
|
|
802
802
|
throw new Error(`private key must be ${y} bytes, hex or bigint, not ${typeof g}`);
|
|
803
803
|
}
|
|
804
|
-
return w && (K = z(K,
|
|
804
|
+
return w && (K = z(K, E)), a(K), K;
|
|
805
805
|
}
|
|
806
806
|
const l = /* @__PURE__ */ new Map();
|
|
807
807
|
function f(g) {
|
|
@@ -825,8 +825,8 @@ function zi(e) {
|
|
|
825
825
|
throw new Error("invalid affine point");
|
|
826
826
|
if (h instanceof u)
|
|
827
827
|
throw new Error("projective point not allowed");
|
|
828
|
-
const
|
|
829
|
-
return
|
|
828
|
+
const E = (K) => n.eql(K, n.ZERO);
|
|
829
|
+
return E(y) && E(w) ? u.ZERO : new u(y, w, n.ONE);
|
|
830
830
|
}
|
|
831
831
|
get x() {
|
|
832
832
|
return this.toAffine().x;
|
|
@@ -842,7 +842,7 @@ function zi(e) {
|
|
|
842
842
|
*/
|
|
843
843
|
static normalizeZ(h) {
|
|
844
844
|
const y = n.invertBatch(h.map((w) => w.pz));
|
|
845
|
-
return h.map((w,
|
|
845
|
+
return h.map((w, E) => w.toAffine(y[E])).map(u.fromAffine);
|
|
846
846
|
}
|
|
847
847
|
/**
|
|
848
848
|
* Converts hash string or Uint8Array to Point.
|
|
@@ -870,8 +870,8 @@ function zi(e) {
|
|
|
870
870
|
const { x: h, y } = this.toAffine();
|
|
871
871
|
if (!n.isValid(h) || !n.isValid(y))
|
|
872
872
|
throw new Error("bad point: x or y not FE");
|
|
873
|
-
const w = n.sqr(y),
|
|
874
|
-
if (!n.eql(w,
|
|
873
|
+
const w = n.sqr(y), E = s(h);
|
|
874
|
+
if (!n.eql(w, E))
|
|
875
875
|
throw new Error("bad point: equation left != right");
|
|
876
876
|
if (!this.isTorsionFree())
|
|
877
877
|
throw new Error("bad point: not in prime-order subgroup");
|
|
@@ -887,8 +887,8 @@ function zi(e) {
|
|
|
887
887
|
*/
|
|
888
888
|
equals(h) {
|
|
889
889
|
f(h);
|
|
890
|
-
const { px: y, py: w, pz:
|
|
891
|
-
return
|
|
890
|
+
const { px: y, py: w, pz: E } = this, { px: K, py: I, pz: C } = h, m = n.eql(n.mul(y, C), n.mul(K, E)), x = n.eql(n.mul(w, C), n.mul(I, E));
|
|
891
|
+
return m && x;
|
|
892
892
|
}
|
|
893
893
|
/**
|
|
894
894
|
* Flips point to one corresponding to (x, -y) in Affine coordinates.
|
|
@@ -901,9 +901,9 @@ function zi(e) {
|
|
|
901
901
|
// https://eprint.iacr.org/2015/1060, algorithm 3
|
|
902
902
|
// Cost: 8M + 3S + 3*a + 2*b3 + 15add.
|
|
903
903
|
double() {
|
|
904
|
-
const { a: h, b: y } = t, w = n.mul(y, Kn), { px:
|
|
905
|
-
let
|
|
906
|
-
return N = n.add(N, N), x = n.mul(
|
|
904
|
+
const { a: h, b: y } = t, w = n.mul(y, Kn), { px: E, py: K, pz: I } = this;
|
|
905
|
+
let C = n.ZERO, m = n.ZERO, x = n.ZERO, S = n.mul(E, E), P = n.mul(K, K), U = n.mul(I, I), N = n.mul(E, K);
|
|
906
|
+
return N = n.add(N, N), x = n.mul(E, I), x = n.add(x, x), C = n.mul(h, x), m = n.mul(w, U), m = n.add(C, m), C = n.sub(P, m), m = n.add(P, m), m = n.mul(C, m), C = n.mul(N, C), x = n.mul(w, x), U = n.mul(h, U), N = n.sub(S, U), N = n.mul(h, N), N = n.add(N, x), x = n.add(S, S), S = n.add(x, S), S = n.add(S, U), S = n.mul(S, N), m = n.add(m, S), U = n.mul(K, I), U = n.add(U, U), S = n.mul(U, N), C = n.sub(C, S), x = n.mul(U, P), x = n.add(x, x), x = n.add(x, x), new u(C, m, x);
|
|
907
907
|
}
|
|
908
908
|
// Renes-Costello-Batina exception-free addition formula.
|
|
909
909
|
// There is 30% faster Jacobian formula, but it is not complete.
|
|
@@ -911,13 +911,13 @@ function zi(e) {
|
|
|
911
911
|
// Cost: 12M + 0S + 3*a + 3*b3 + 23add.
|
|
912
912
|
add(h) {
|
|
913
913
|
f(h);
|
|
914
|
-
const { px: y, py: w, pz:
|
|
915
|
-
let
|
|
914
|
+
const { px: y, py: w, pz: E } = this, { px: K, py: I, pz: C } = h;
|
|
915
|
+
let m = n.ZERO, x = n.ZERO, S = n.ZERO;
|
|
916
916
|
const P = t.a, U = n.mul(t.b, Kn);
|
|
917
|
-
let N = n.mul(y, K), $ = n.mul(w, I), R = n.mul(
|
|
918
|
-
H = n.mul(H, b), b = n.add(N, $), H = n.sub(H, b), b = n.add(y,
|
|
919
|
-
let v = n.add(K,
|
|
920
|
-
return b = n.mul(b, v), v = n.add(N, R), b = n.sub(b, v), v = n.add(w,
|
|
917
|
+
let N = n.mul(y, K), $ = n.mul(w, I), R = n.mul(E, C), H = n.add(y, w), b = n.add(K, I);
|
|
918
|
+
H = n.mul(H, b), b = n.add(N, $), H = n.sub(H, b), b = n.add(y, E);
|
|
919
|
+
let v = n.add(K, C);
|
|
920
|
+
return b = n.mul(b, v), v = n.add(N, R), b = n.sub(b, v), v = n.add(w, E), m = n.add(I, C), v = n.mul(v, m), m = n.add($, R), v = n.sub(v, m), S = n.mul(P, b), m = n.mul(U, R), S = n.add(m, S), m = n.sub($, S), S = n.add($, S), x = n.mul(m, S), $ = n.add(N, N), $ = n.add($, N), R = n.mul(P, R), b = n.mul(U, b), $ = n.add($, R), R = n.sub(N, R), R = n.mul(P, R), b = n.add(b, R), N = n.mul($, b), x = n.add(x, N), N = n.mul(v, b), m = n.mul(H, m), m = n.sub(m, N), N = n.mul(H, $), S = n.mul(v, S), S = n.add(S, N), new u(m, x, S);
|
|
921
921
|
}
|
|
922
922
|
subtract(h) {
|
|
923
923
|
return this.add(h.negate());
|
|
@@ -927,8 +927,8 @@ function zi(e) {
|
|
|
927
927
|
}
|
|
928
928
|
wNAF(h) {
|
|
929
929
|
return p.wNAFCached(this, l, h, (y) => {
|
|
930
|
-
const w = n.invertBatch(y.map((
|
|
931
|
-
return y.map((
|
|
930
|
+
const w = n.invertBatch(y.map((E) => E.pz));
|
|
931
|
+
return y.map((E, K) => E.toAffine(w[K])).map(u.fromAffine);
|
|
932
932
|
});
|
|
933
933
|
}
|
|
934
934
|
/**
|
|
@@ -945,10 +945,10 @@ function zi(e) {
|
|
|
945
945
|
const { endo: w } = t;
|
|
946
946
|
if (!w)
|
|
947
947
|
return p.unsafeLadder(this, h);
|
|
948
|
-
let { k1neg:
|
|
949
|
-
for (; K > ce ||
|
|
950
|
-
K & Y && (
|
|
951
|
-
return
|
|
948
|
+
let { k1neg: E, k1: K, k2neg: I, k2: C } = w.splitScalar(h), m = y, x = y, S = this;
|
|
949
|
+
for (; K > ce || C > ce; )
|
|
950
|
+
K & Y && (m = m.add(S)), C & Y && (x = x.add(S)), S = S.double(), K >>= Y, C >>= Y;
|
|
951
|
+
return E && (m = m.negate()), I && (x = x.negate()), x = new u(n.mul(x.px, w.beta), x.py, x.pz), m.add(x);
|
|
952
952
|
}
|
|
953
953
|
/**
|
|
954
954
|
* Constant time multiplication.
|
|
@@ -961,17 +961,17 @@ function zi(e) {
|
|
|
961
961
|
*/
|
|
962
962
|
multiply(h) {
|
|
963
963
|
a(h);
|
|
964
|
-
let y = h, w,
|
|
964
|
+
let y = h, w, E;
|
|
965
965
|
const { endo: K } = t;
|
|
966
966
|
if (K) {
|
|
967
|
-
const { k1neg: I, k1:
|
|
968
|
-
let { p: S, f: P } = this.wNAF(
|
|
969
|
-
S = p.constTimeNegate(I, S), U = p.constTimeNegate(
|
|
967
|
+
const { k1neg: I, k1: C, k2neg: m, k2: x } = K.splitScalar(y);
|
|
968
|
+
let { p: S, f: P } = this.wNAF(C), { p: U, f: N } = this.wNAF(x);
|
|
969
|
+
S = p.constTimeNegate(I, S), U = p.constTimeNegate(m, U), U = new u(n.mul(U.px, K.beta), U.py, U.pz), w = S.add(U), E = P.add(N);
|
|
970
970
|
} else {
|
|
971
|
-
const { p: I, f:
|
|
972
|
-
w = I,
|
|
971
|
+
const { p: I, f: C } = this.wNAF(y);
|
|
972
|
+
w = I, E = C;
|
|
973
973
|
}
|
|
974
|
-
return u.normalizeZ([w,
|
|
974
|
+
return u.normalizeZ([w, E])[0];
|
|
975
975
|
}
|
|
976
976
|
/**
|
|
977
977
|
* Efficiently calculate `aP + bQ`. Unsafe, can expose private key, if used incorrectly.
|
|
@@ -980,21 +980,21 @@ function zi(e) {
|
|
|
980
980
|
* @returns non-zero affine point
|
|
981
981
|
*/
|
|
982
982
|
multiplyAndAddUnsafe(h, y, w) {
|
|
983
|
-
const
|
|
983
|
+
const E = u.BASE, K = (C, m) => m === ce || m === Y || !C.equals(E) ? C.multiplyUnsafe(m) : C.multiply(m), I = K(this, y).add(K(h, w));
|
|
984
984
|
return I.is0() ? void 0 : I;
|
|
985
985
|
}
|
|
986
986
|
// Converts Projective point to affine (x, y) coordinates.
|
|
987
987
|
// Can accept precomputed Z^-1 - for example, from invertBatch.
|
|
988
988
|
// (x, y, z) ∋ (x=x/z, y=y/z)
|
|
989
989
|
toAffine(h) {
|
|
990
|
-
const { px: y, py: w, pz:
|
|
991
|
-
h == null && (h = K ? n.ONE : n.inv(
|
|
992
|
-
const I = n.mul(y, h),
|
|
990
|
+
const { px: y, py: w, pz: E } = this, K = this.is0();
|
|
991
|
+
h == null && (h = K ? n.ONE : n.inv(E));
|
|
992
|
+
const I = n.mul(y, h), C = n.mul(w, h), m = n.mul(E, h);
|
|
993
993
|
if (K)
|
|
994
994
|
return { x: n.ZERO, y: n.ZERO };
|
|
995
|
-
if (!n.eql(
|
|
995
|
+
if (!n.eql(m, n.ONE))
|
|
996
996
|
throw new Error("invZ was invalid");
|
|
997
|
-
return { x: I, y:
|
|
997
|
+
return { x: I, y: C };
|
|
998
998
|
}
|
|
999
999
|
isTorsionFree() {
|
|
1000
1000
|
const { h, isTorsionFree: y } = t;
|
|
@@ -1021,8 +1021,8 @@ function zi(e) {
|
|
|
1021
1021
|
CURVE: t,
|
|
1022
1022
|
ProjectivePoint: u,
|
|
1023
1023
|
normPrivateKeyToScalar: c,
|
|
1024
|
-
weierstrassEquation:
|
|
1025
|
-
isWithinCurveOrder:
|
|
1024
|
+
weierstrassEquation: s,
|
|
1025
|
+
isWithinCurveOrder: o
|
|
1026
1026
|
};
|
|
1027
1027
|
}
|
|
1028
1028
|
function Zi(e) {
|
|
@@ -1038,8 +1038,8 @@ function Zi(e) {
|
|
|
1038
1038
|
}), Object.freeze({ lowS: !0, ...t });
|
|
1039
1039
|
}
|
|
1040
1040
|
function Fi(e) {
|
|
1041
|
-
const t = Zi(e), { Fp: n, n: r } = t, i = n.BYTES + 1,
|
|
1042
|
-
function
|
|
1041
|
+
const t = Zi(e), { Fp: n, n: r } = t, i = n.BYTES + 1, s = 2 * n.BYTES + 1;
|
|
1042
|
+
function o(b) {
|
|
1043
1043
|
return ce < b && b < n.ORDER;
|
|
1044
1044
|
}
|
|
1045
1045
|
function a(b) {
|
|
@@ -1051,24 +1051,24 @@ function Fi(e) {
|
|
|
1051
1051
|
const { ProjectivePoint: l, normPrivateKeyToScalar: f, weierstrassEquation: u, isWithinCurveOrder: d } = zi({
|
|
1052
1052
|
...t,
|
|
1053
1053
|
toBytes(b, v, A) {
|
|
1054
|
-
const
|
|
1055
|
-
return A ? _(Uint8Array.from([v.hasEvenY() ? 2 : 3]),
|
|
1054
|
+
const k = v.toAffine(), B = n.toBytes(k.x), _ = ke;
|
|
1055
|
+
return A ? _(Uint8Array.from([v.hasEvenY() ? 2 : 3]), B) : _(Uint8Array.from([4]), B, n.toBytes(k.y));
|
|
1056
1056
|
},
|
|
1057
1057
|
fromBytes(b) {
|
|
1058
|
-
const v = b.length, A = b[0],
|
|
1058
|
+
const v = b.length, A = b[0], k = b.subarray(1);
|
|
1059
1059
|
if (v === i && (A === 2 || A === 3)) {
|
|
1060
|
-
const
|
|
1061
|
-
if (!
|
|
1060
|
+
const B = G(k);
|
|
1061
|
+
if (!o(B))
|
|
1062
1062
|
throw new Error("Point is not on curve");
|
|
1063
|
-
const _ = u(
|
|
1063
|
+
const _ = u(B);
|
|
1064
1064
|
let O = n.sqrt(_);
|
|
1065
1065
|
const T = (O & Y) === Y;
|
|
1066
|
-
return (A & 1) === 1 !== T && (O = n.neg(O)), { x:
|
|
1067
|
-
} else if (v ===
|
|
1068
|
-
const
|
|
1069
|
-
return { x:
|
|
1066
|
+
return (A & 1) === 1 !== T && (O = n.neg(O)), { x: B, y: O };
|
|
1067
|
+
} else if (v === s && A === 4) {
|
|
1068
|
+
const B = n.fromBytes(k.subarray(0, n.BYTES)), _ = n.fromBytes(k.subarray(n.BYTES, 2 * n.BYTES));
|
|
1069
|
+
return { x: B, y: _ };
|
|
1070
1070
|
} else
|
|
1071
|
-
throw new Error(`Point of length ${v} was invalid. Expected ${i} compressed bytes or ${
|
|
1071
|
+
throw new Error(`Point of length ${v} was invalid. Expected ${i} compressed bytes or ${s} uncompressed bytes`);
|
|
1072
1072
|
}
|
|
1073
1073
|
}), p = (b) => qe(xe(b, t.nByteLength));
|
|
1074
1074
|
function g(b) {
|
|
@@ -1080,8 +1080,8 @@ function Fi(e) {
|
|
|
1080
1080
|
}
|
|
1081
1081
|
const y = (b, v, A) => G(b.slice(v, A));
|
|
1082
1082
|
class w {
|
|
1083
|
-
constructor(v, A,
|
|
1084
|
-
this.r = v, this.s = A, this.recovery =
|
|
1083
|
+
constructor(v, A, k) {
|
|
1084
|
+
this.r = v, this.s = A, this.recovery = k, this.assertValidity();
|
|
1085
1085
|
}
|
|
1086
1086
|
// pair (bytes of r, bytes of s)
|
|
1087
1087
|
static fromCompact(v) {
|
|
@@ -1091,8 +1091,8 @@ function Fi(e) {
|
|
|
1091
1091
|
// DER encoded ECDSA signature
|
|
1092
1092
|
// https://bitcoin.stackexchange.com/questions/57644/what-are-the-parts-of-a-bitcoin-transaction-input-script
|
|
1093
1093
|
static fromDER(v) {
|
|
1094
|
-
const { r: A, s:
|
|
1095
|
-
return new w(A,
|
|
1094
|
+
const { r: A, s: k } = Be.toSig(Z("DER", v));
|
|
1095
|
+
return new w(A, k);
|
|
1096
1096
|
}
|
|
1097
1097
|
assertValidity() {
|
|
1098
1098
|
if (!d(this.r))
|
|
@@ -1104,13 +1104,13 @@ function Fi(e) {
|
|
|
1104
1104
|
return new w(this.r, this.s, v);
|
|
1105
1105
|
}
|
|
1106
1106
|
recoverPublicKey(v) {
|
|
1107
|
-
const { r: A, s:
|
|
1108
|
-
if (
|
|
1107
|
+
const { r: A, s: k, recovery: B } = this, _ = x(Z("msgHash", v));
|
|
1108
|
+
if (B == null || ![0, 1, 2, 3].includes(B))
|
|
1109
1109
|
throw new Error("recovery id invalid");
|
|
1110
|
-
const O =
|
|
1110
|
+
const O = B === 2 || B === 3 ? A + t.n : A;
|
|
1111
1111
|
if (O >= n.ORDER)
|
|
1112
1112
|
throw new Error("recovery id 2 or 3 invalid");
|
|
1113
|
-
const T =
|
|
1113
|
+
const T = B & 1 ? "03" : "02", X = l.fromHex(T + p(O)), ye = c(O), Ie = a(-_ * ye), ze = a(k * ye), pe = l.BASE.multiplyAndAddUnsafe(X, Ie, ze);
|
|
1114
1114
|
if (!pe)
|
|
1115
1115
|
throw new Error("point at infinify");
|
|
1116
1116
|
return pe.assertValidity(), pe;
|
|
@@ -1127,7 +1127,7 @@ function Fi(e) {
|
|
|
1127
1127
|
return De(this.toDERHex());
|
|
1128
1128
|
}
|
|
1129
1129
|
toDERHex() {
|
|
1130
|
-
return
|
|
1130
|
+
return Be.hexFromSig({ r: this.r, s: this.s });
|
|
1131
1131
|
}
|
|
1132
1132
|
// padded bytes of r, then padded bytes of s
|
|
1133
1133
|
toCompactRawBytes() {
|
|
@@ -1137,7 +1137,7 @@ function Fi(e) {
|
|
|
1137
1137
|
return p(this.r) + p(this.s);
|
|
1138
1138
|
}
|
|
1139
1139
|
}
|
|
1140
|
-
const
|
|
1140
|
+
const E = {
|
|
1141
1141
|
isValidPrivateKey(b) {
|
|
1142
1142
|
try {
|
|
1143
1143
|
return f(b), !0;
|
|
@@ -1170,21 +1170,21 @@ function Fi(e) {
|
|
|
1170
1170
|
return l.fromPrivateKey(b).toRawBytes(v);
|
|
1171
1171
|
}
|
|
1172
1172
|
function I(b) {
|
|
1173
|
-
const v = b instanceof Uint8Array, A = typeof b == "string",
|
|
1174
|
-
return v ?
|
|
1173
|
+
const v = b instanceof Uint8Array, A = typeof b == "string", k = (v || A) && b.length;
|
|
1174
|
+
return v ? k === i || k === s : A ? k === 2 * i || k === 2 * s : b instanceof l;
|
|
1175
1175
|
}
|
|
1176
|
-
function
|
|
1176
|
+
function C(b, v, A = !0) {
|
|
1177
1177
|
if (I(b))
|
|
1178
1178
|
throw new Error("first arg must be private key");
|
|
1179
1179
|
if (!I(v))
|
|
1180
1180
|
throw new Error("second arg must be public key");
|
|
1181
1181
|
return l.fromHex(v).multiply(f(b)).toRawBytes(A);
|
|
1182
1182
|
}
|
|
1183
|
-
const
|
|
1183
|
+
const m = t.bits2int || function(b) {
|
|
1184
1184
|
const v = G(b), A = b.length * 8 - t.nBitLength;
|
|
1185
1185
|
return A > 0 ? v >> BigInt(A) : v;
|
|
1186
1186
|
}, x = t.bits2int_modN || function(b) {
|
|
1187
|
-
return a(
|
|
1187
|
+
return a(m(b));
|
|
1188
1188
|
}, S = Yt(t.nBitLength);
|
|
1189
1189
|
function P(b) {
|
|
1190
1190
|
if (typeof b != "bigint")
|
|
@@ -1196,17 +1196,17 @@ function Fi(e) {
|
|
|
1196
1196
|
function U(b, v, A = N) {
|
|
1197
1197
|
if (["recovered", "canonical"].some((Ke) => Ke in A))
|
|
1198
1198
|
throw new Error("sign() legacy options not supported");
|
|
1199
|
-
const { hash:
|
|
1199
|
+
const { hash: k, randomBytes: B } = t;
|
|
1200
1200
|
let { lowS: _, prehash: O, extraEntropy: T } = A;
|
|
1201
|
-
_ == null && (_ = !0), b = Z("msgHash", b), O && (b = Z("prehashed msgHash",
|
|
1201
|
+
_ == null && (_ = !0), b = Z("msgHash", b), O && (b = Z("prehashed msgHash", k(b)));
|
|
1202
1202
|
const X = x(b), ye = f(v), Ie = [P(ye), P(X)];
|
|
1203
1203
|
if (T != null) {
|
|
1204
|
-
const Ke = T === !0 ?
|
|
1204
|
+
const Ke = T === !0 ? B(n.BYTES) : T;
|
|
1205
1205
|
Ie.push(Z("extraEntropy", Ke));
|
|
1206
1206
|
}
|
|
1207
|
-
const ze =
|
|
1207
|
+
const ze = ke(...Ie), pe = X;
|
|
1208
1208
|
function St(Ke) {
|
|
1209
|
-
const _e =
|
|
1209
|
+
const _e = m(Ke);
|
|
1210
1210
|
if (!d(_e))
|
|
1211
1211
|
return;
|
|
1212
1212
|
const bn = c(_e), Le = l.BASE.multiply(_e).toAffine(), Q = a(Le.x);
|
|
@@ -1215,35 +1215,35 @@ function Fi(e) {
|
|
|
1215
1215
|
const Te = a(bn * a(pe + Q * ye));
|
|
1216
1216
|
if (Te === ce)
|
|
1217
1217
|
return;
|
|
1218
|
-
let vn = (Le.x === Q ? 0 : 2) | Number(Le.y & Y),
|
|
1219
|
-
return _ && g(Te) && (
|
|
1218
|
+
let vn = (Le.x === Q ? 0 : 2) | Number(Le.y & Y), mn = Te;
|
|
1219
|
+
return _ && g(Te) && (mn = h(Te), vn ^= 1), new w(Q, mn, vn);
|
|
1220
1220
|
}
|
|
1221
1221
|
return { seed: ze, k2sig: St };
|
|
1222
1222
|
}
|
|
1223
1223
|
const N = { lowS: t.lowS, prehash: !1 }, $ = { lowS: t.lowS, prehash: !1 };
|
|
1224
1224
|
function R(b, v, A = N) {
|
|
1225
|
-
const { seed:
|
|
1226
|
-
return Vn(_.hash.outputLen, _.nByteLength, _.hmac)(
|
|
1225
|
+
const { seed: k, k2sig: B } = U(b, v, A), _ = t;
|
|
1226
|
+
return Vn(_.hash.outputLen, _.nByteLength, _.hmac)(k, B);
|
|
1227
1227
|
}
|
|
1228
1228
|
l.BASE._setWindowSize(8);
|
|
1229
|
-
function H(b, v, A,
|
|
1229
|
+
function H(b, v, A, k = $) {
|
|
1230
1230
|
var Le;
|
|
1231
|
-
const
|
|
1232
|
-
if (v = Z("msgHash", v), A = Z("publicKey", A), "strict" in
|
|
1231
|
+
const B = b;
|
|
1232
|
+
if (v = Z("msgHash", v), A = Z("publicKey", A), "strict" in k)
|
|
1233
1233
|
throw new Error("options.strict was renamed to lowS");
|
|
1234
|
-
const { lowS: _, prehash: O } =
|
|
1234
|
+
const { lowS: _, prehash: O } = k;
|
|
1235
1235
|
let T, X;
|
|
1236
1236
|
try {
|
|
1237
|
-
if (typeof
|
|
1237
|
+
if (typeof B == "string" || B instanceof Uint8Array)
|
|
1238
1238
|
try {
|
|
1239
|
-
T = w.fromDER(
|
|
1239
|
+
T = w.fromDER(B);
|
|
1240
1240
|
} catch (Q) {
|
|
1241
|
-
if (!(Q instanceof
|
|
1241
|
+
if (!(Q instanceof Be.Err))
|
|
1242
1242
|
throw Q;
|
|
1243
|
-
T = w.fromCompact(
|
|
1243
|
+
T = w.fromCompact(B);
|
|
1244
1244
|
}
|
|
1245
|
-
else if (typeof
|
|
1246
|
-
const { r: Q, s: Te } =
|
|
1245
|
+
else if (typeof B == "object" && typeof B.r == "bigint" && typeof B.s == "bigint") {
|
|
1246
|
+
const { r: Q, s: Te } = B;
|
|
1247
1247
|
T = new w(Q, Te);
|
|
1248
1248
|
} else
|
|
1249
1249
|
throw new Error("PARSE");
|
|
@@ -1262,12 +1262,12 @@ function Fi(e) {
|
|
|
1262
1262
|
return {
|
|
1263
1263
|
CURVE: t,
|
|
1264
1264
|
getPublicKey: K,
|
|
1265
|
-
getSharedSecret:
|
|
1265
|
+
getSharedSecret: C,
|
|
1266
1266
|
sign: R,
|
|
1267
1267
|
verify: H,
|
|
1268
1268
|
ProjectivePoint: l,
|
|
1269
1269
|
Signature: w,
|
|
1270
|
-
utils:
|
|
1270
|
+
utils: E
|
|
1271
1271
|
};
|
|
1272
1272
|
}
|
|
1273
1273
|
let Gn = class extends Hn {
|
|
@@ -1277,14 +1277,14 @@ let Gn = class extends Hn {
|
|
|
1277
1277
|
if (this.iHash = t.create(), typeof this.iHash.update != "function")
|
|
1278
1278
|
throw new Error("Expected instance of class which extends utils.Hash");
|
|
1279
1279
|
this.blockLen = this.iHash.blockLen, this.outputLen = this.iHash.outputLen;
|
|
1280
|
-
const i = this.blockLen,
|
|
1281
|
-
|
|
1282
|
-
for (let
|
|
1283
|
-
o
|
|
1284
|
-
this.iHash.update(
|
|
1285
|
-
for (let
|
|
1286
|
-
o
|
|
1287
|
-
this.oHash.update(
|
|
1280
|
+
const i = this.blockLen, s = new Uint8Array(i);
|
|
1281
|
+
s.set(r.length > i ? t.create().update(r).digest() : r);
|
|
1282
|
+
for (let o = 0; o < s.length; o++)
|
|
1283
|
+
s[o] ^= 54;
|
|
1284
|
+
this.iHash.update(s), this.oHash = t.create();
|
|
1285
|
+
for (let o = 0; o < s.length; o++)
|
|
1286
|
+
s[o] ^= 106;
|
|
1287
|
+
this.oHash.update(s), s.fill(0);
|
|
1288
1288
|
}
|
|
1289
1289
|
update(t) {
|
|
1290
1290
|
return rt(this), this.iHash.update(t), this;
|
|
@@ -1298,8 +1298,8 @@ let Gn = class extends Hn {
|
|
|
1298
1298
|
}
|
|
1299
1299
|
_cloneInto(t) {
|
|
1300
1300
|
t || (t = Object.create(Object.getPrototypeOf(this), {}));
|
|
1301
|
-
const { oHash: n, iHash: r, finished: i, destroyed:
|
|
1302
|
-
return t = t, t.finished = i, t.destroyed =
|
|
1301
|
+
const { oHash: n, iHash: r, finished: i, destroyed: s, blockLen: o, outputLen: a } = this;
|
|
1302
|
+
return t = t, t.finished = i, t.destroyed = s, t.blockLen = o, t.outputLen = a, t.oHash = n._cloneInto(t.oHash), t.iHash = r._cloneInto(t.iHash), t;
|
|
1303
1303
|
}
|
|
1304
1304
|
destroy() {
|
|
1305
1305
|
this.destroyed = !0, this.oHash.destroy(), this.iHash.destroy();
|
|
@@ -1320,12 +1320,12 @@ function Gi(e, t) {
|
|
|
1320
1320
|
return Object.freeze({ ...n(t), create: n });
|
|
1321
1321
|
}
|
|
1322
1322
|
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
1323
|
-
const ft = BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"), it = BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"), Yn = BigInt(1),
|
|
1323
|
+
const ft = BigInt("0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f"), it = BigInt("0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"), Yn = BigInt(1), st = BigInt(2), Nn = (e, t) => (e + t / st) / t;
|
|
1324
1324
|
function Xn(e) {
|
|
1325
|
-
const t = ft, n = BigInt(3), r = BigInt(6), i = BigInt(11),
|
|
1326
|
-
if (!Pt.eql(Pt.sqr(
|
|
1325
|
+
const t = ft, n = BigInt(3), r = BigInt(6), i = BigInt(11), s = BigInt(22), o = BigInt(23), a = BigInt(44), c = BigInt(88), l = e * e * e % t, f = l * l * e % t, u = J(f, n, t) * f % t, d = J(u, n, t) * f % t, p = J(d, st, t) * l % t, g = J(p, i, t) * p % t, h = J(g, s, t) * g % t, y = J(h, a, t) * h % t, w = J(y, c, t) * y % t, E = J(w, a, t) * h % t, K = J(E, n, t) * f % t, I = J(K, o, t) * g % t, C = J(I, r, t) * l % t, m = J(C, st, t);
|
|
1326
|
+
if (!Pt.eql(Pt.sqr(m), e))
|
|
1327
1327
|
throw new Error("Cannot find square root");
|
|
1328
|
-
return
|
|
1328
|
+
return m;
|
|
1329
1329
|
}
|
|
1330
1330
|
const Pt = Pi(ft, void 0, void 0, { sqrt: Xn }), Ue = Gi({
|
|
1331
1331
|
a: BigInt(0),
|
|
@@ -1346,24 +1346,24 @@ const Pt = Pi(ft, void 0, void 0, { sqrt: Xn }), Ue = Gi({
|
|
|
1346
1346
|
endo: {
|
|
1347
1347
|
beta: BigInt("0x7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee"),
|
|
1348
1348
|
splitScalar: (e) => {
|
|
1349
|
-
const t = it, n = BigInt("0x3086d221a7d46bcde86c90e49284eb15"), r = -Yn * BigInt("0xe4437ed6010e88286f547fa90abfe4c3"), i = BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"),
|
|
1350
|
-
let l = z(e - a * n - c * i, t), f = z(-a * r - c *
|
|
1351
|
-
const u = l >
|
|
1352
|
-
if (u && (l = t - l), d && (f = t - f), l >
|
|
1349
|
+
const t = it, n = BigInt("0x3086d221a7d46bcde86c90e49284eb15"), r = -Yn * BigInt("0xe4437ed6010e88286f547fa90abfe4c3"), i = BigInt("0x114ca50f7a8e2f3f657c1108d9d44cfd8"), s = n, o = BigInt("0x100000000000000000000000000000000"), a = Nn(s * e, t), c = Nn(-r * e, t);
|
|
1350
|
+
let l = z(e - a * n - c * i, t), f = z(-a * r - c * s, t);
|
|
1351
|
+
const u = l > o, d = f > o;
|
|
1352
|
+
if (u && (l = t - l), d && (f = t - f), l > o || f > o)
|
|
1353
1353
|
throw new Error("splitScalar: Endomorphism failed, k=" + e);
|
|
1354
1354
|
return { k1neg: u, k1: l, k2neg: d, k2: f };
|
|
1355
1355
|
}
|
|
1356
1356
|
}
|
|
1357
|
-
}, $t), ht = BigInt(0), Qn = (e) => typeof e == "bigint" && ht < e && e < ft, Ji = (e) => typeof e == "bigint" && ht < e && e < it,
|
|
1358
|
-
function
|
|
1359
|
-
let n =
|
|
1357
|
+
}, $t), ht = BigInt(0), Qn = (e) => typeof e == "bigint" && ht < e && e < ft, Ji = (e) => typeof e == "bigint" && ht < e && e < it, Bn = {};
|
|
1358
|
+
function ot(e, ...t) {
|
|
1359
|
+
let n = Bn[e];
|
|
1360
1360
|
if (n === void 0) {
|
|
1361
1361
|
const r = $t(Uint8Array.from(e, (i) => i.charCodeAt(0)));
|
|
1362
|
-
n =
|
|
1362
|
+
n = ke(r, r), Bn[e] = n;
|
|
1363
1363
|
}
|
|
1364
|
-
return $t(
|
|
1364
|
+
return $t(ke(n, ...t));
|
|
1365
1365
|
}
|
|
1366
|
-
const Xt = (e) => e.toRawBytes(!0).slice(1), Mt = (e) => xe(e, 32),
|
|
1366
|
+
const Xt = (e) => e.toRawBytes(!0).slice(1), Mt = (e) => xe(e, 32), Ct = (e) => z(e, ft), Ge = (e) => z(e, it), Qt = Ue.ProjectivePoint, Yi = (e, t, n) => Qt.BASE.multiplyAndAddUnsafe(e, t, n);
|
|
1367
1367
|
function Ht(e) {
|
|
1368
1368
|
let t = Ue.utils.normPrivateKeyToScalar(e), n = Qt.fromPrivateKey(t);
|
|
1369
1369
|
return { scalar: n.hasEvenY() ? t : Ge(-t), bytes: Xt(n) };
|
|
@@ -1371,37 +1371,37 @@ function Ht(e) {
|
|
|
1371
1371
|
function er(e) {
|
|
1372
1372
|
if (!Qn(e))
|
|
1373
1373
|
throw new Error("bad x: need 0 < x < p");
|
|
1374
|
-
const t =
|
|
1374
|
+
const t = Ct(e * e), n = Ct(t * e + BigInt(7));
|
|
1375
1375
|
let r = Xn(n);
|
|
1376
|
-
r %
|
|
1376
|
+
r % st !== ht && (r = Ct(-r));
|
|
1377
1377
|
const i = new Qt(e, r, Yn);
|
|
1378
1378
|
return i.assertValidity(), i;
|
|
1379
1379
|
}
|
|
1380
1380
|
function tr(...e) {
|
|
1381
|
-
return Ge(G(
|
|
1381
|
+
return Ge(G(ot("BIP0340/challenge", ...e)));
|
|
1382
1382
|
}
|
|
1383
1383
|
function Xi(e) {
|
|
1384
1384
|
return Ht(e).bytes;
|
|
1385
1385
|
}
|
|
1386
1386
|
function Qi(e, t, n = qn(32)) {
|
|
1387
|
-
const r = Z("message", e), { bytes: i, scalar:
|
|
1387
|
+
const r = Z("message", e), { bytes: i, scalar: s } = Ht(t), o = Z("auxRand", n, 32), a = Mt(s ^ G(ot("BIP0340/aux", o))), c = ot("BIP0340/nonce", a, i, r), l = Ge(G(c));
|
|
1388
1388
|
if (l === ht)
|
|
1389
1389
|
throw new Error("sign failed: k is zero");
|
|
1390
1390
|
const { bytes: f, scalar: u } = Ht(l), d = tr(f, i, r), p = new Uint8Array(64);
|
|
1391
|
-
if (p.set(f, 0), p.set(Mt(Ge(u + d *
|
|
1391
|
+
if (p.set(f, 0), p.set(Mt(Ge(u + d * s)), 32), !nr(p, r, i))
|
|
1392
1392
|
throw new Error("sign: Invalid signature produced");
|
|
1393
1393
|
return p;
|
|
1394
1394
|
}
|
|
1395
1395
|
function nr(e, t, n) {
|
|
1396
|
-
const r = Z("signature", e, 64), i = Z("message", t),
|
|
1396
|
+
const r = Z("signature", e, 64), i = Z("message", t), s = Z("publicKey", n, 32);
|
|
1397
1397
|
try {
|
|
1398
|
-
const
|
|
1398
|
+
const o = er(G(s)), a = G(r.subarray(0, 32));
|
|
1399
1399
|
if (!Qn(a))
|
|
1400
1400
|
return !1;
|
|
1401
1401
|
const c = G(r.subarray(32, 64));
|
|
1402
1402
|
if (!Ji(c))
|
|
1403
1403
|
return !1;
|
|
1404
|
-
const l = tr(Mt(a), Xt(
|
|
1404
|
+
const l = tr(Mt(a), Xt(o), i), f = Yi(o, c, Ge(-l));
|
|
1405
1405
|
return !(!f || !f.hasEvenY() || f.toAffine().x !== a);
|
|
1406
1406
|
} catch {
|
|
1407
1407
|
return !1;
|
|
@@ -1417,21 +1417,21 @@ const Ze = {
|
|
|
1417
1417
|
pointToBytes: Xt,
|
|
1418
1418
|
numberToBytesBE: xe,
|
|
1419
1419
|
bytesToNumberBE: G,
|
|
1420
|
-
taggedHash:
|
|
1420
|
+
taggedHash: ot,
|
|
1421
1421
|
mod: z
|
|
1422
1422
|
}
|
|
1423
|
-
},
|
|
1423
|
+
}, kt = typeof globalThis == "object" && "crypto" in globalThis ? globalThis.crypto : void 0;
|
|
1424
1424
|
/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
1425
|
-
const en = (e) => e instanceof Uint8Array, Ut = (e) => new DataView(e.buffer, e.byteOffset, e.byteLength), re = (e, t) => e << 32 - t | e >>> t,
|
|
1426
|
-
if (!
|
|
1425
|
+
const en = (e) => e instanceof Uint8Array, Ut = (e) => new DataView(e.buffer, e.byteOffset, e.byteLength), re = (e, t) => e << 32 - t | e >>> t, es = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68;
|
|
1426
|
+
if (!es)
|
|
1427
1427
|
throw new Error("Non little-endian hardware is not supported");
|
|
1428
|
-
const
|
|
1428
|
+
const ts = Array.from({ length: 256 }, (e, t) => t.toString(16).padStart(2, "0"));
|
|
1429
1429
|
function M(e) {
|
|
1430
1430
|
if (!en(e))
|
|
1431
1431
|
throw new Error("Uint8Array expected");
|
|
1432
1432
|
let t = "";
|
|
1433
1433
|
for (let n = 0; n < e.length; n++)
|
|
1434
|
-
t +=
|
|
1434
|
+
t += ts[e[n]];
|
|
1435
1435
|
return t;
|
|
1436
1436
|
}
|
|
1437
1437
|
function W(e) {
|
|
@@ -1442,20 +1442,20 @@ function W(e) {
|
|
|
1442
1442
|
throw new Error("padded hex string expected, got unpadded hex of length " + t);
|
|
1443
1443
|
const n = new Uint8Array(t / 2);
|
|
1444
1444
|
for (let r = 0; r < n.length; r++) {
|
|
1445
|
-
const i = r * 2,
|
|
1446
|
-
if (Number.isNaN(
|
|
1445
|
+
const i = r * 2, s = e.slice(i, i + 2), o = Number.parseInt(s, 16);
|
|
1446
|
+
if (Number.isNaN(o) || o < 0)
|
|
1447
1447
|
throw new Error("Invalid byte sequence");
|
|
1448
|
-
n[r] =
|
|
1448
|
+
n[r] = o;
|
|
1449
1449
|
}
|
|
1450
1450
|
return n;
|
|
1451
1451
|
}
|
|
1452
|
-
function
|
|
1452
|
+
function ns(e) {
|
|
1453
1453
|
if (typeof e != "string")
|
|
1454
1454
|
throw new Error(`utf8ToBytes expected string, got ${typeof e}`);
|
|
1455
1455
|
return new Uint8Array(new TextEncoder().encode(e));
|
|
1456
1456
|
}
|
|
1457
1457
|
function Je(e) {
|
|
1458
|
-
if (typeof e == "string" && (e =
|
|
1458
|
+
if (typeof e == "string" && (e = ns(e)), !en(e))
|
|
1459
1459
|
throw new Error(`expected Uint8Array, got ${typeof e}`);
|
|
1460
1460
|
return e;
|
|
1461
1461
|
}
|
|
@@ -1478,85 +1478,85 @@ function ir(e) {
|
|
|
1478
1478
|
const t = (r) => e().update(Je(r)).digest(), n = e();
|
|
1479
1479
|
return t.outputLen = n.outputLen, t.blockLen = n.blockLen, t.create = () => e(), t;
|
|
1480
1480
|
}
|
|
1481
|
-
function
|
|
1482
|
-
if (
|
|
1483
|
-
return
|
|
1481
|
+
function sr(e = 32) {
|
|
1482
|
+
if (kt && typeof kt.getRandomValues == "function")
|
|
1483
|
+
return kt.getRandomValues(new Uint8Array(e));
|
|
1484
1484
|
throw new Error("crypto.getRandomValues must be defined");
|
|
1485
1485
|
}
|
|
1486
1486
|
function qt(e) {
|
|
1487
1487
|
if (!Number.isSafeInteger(e) || e < 0)
|
|
1488
1488
|
throw new Error(`Wrong positive integer: ${e}`);
|
|
1489
1489
|
}
|
|
1490
|
-
function
|
|
1490
|
+
function rs(e) {
|
|
1491
1491
|
if (typeof e != "boolean")
|
|
1492
1492
|
throw new Error(`Expected boolean, not ${e}`);
|
|
1493
1493
|
}
|
|
1494
|
-
function
|
|
1494
|
+
function or(e, ...t) {
|
|
1495
1495
|
if (!(e instanceof Uint8Array))
|
|
1496
1496
|
throw new Error("Expected Uint8Array");
|
|
1497
1497
|
if (t.length > 0 && !t.includes(e.length))
|
|
1498
1498
|
throw new Error(`Expected Uint8Array of length ${t}, not of length=${e.length}`);
|
|
1499
1499
|
}
|
|
1500
|
-
function
|
|
1500
|
+
function is(e) {
|
|
1501
1501
|
if (typeof e != "function" || typeof e.create != "function")
|
|
1502
1502
|
throw new Error("Hash should be wrapped by utils.wrapConstructor");
|
|
1503
1503
|
qt(e.outputLen), qt(e.blockLen);
|
|
1504
1504
|
}
|
|
1505
|
-
function
|
|
1505
|
+
function ss(e, t = !0) {
|
|
1506
1506
|
if (e.destroyed)
|
|
1507
1507
|
throw new Error("Hash instance has been destroyed");
|
|
1508
1508
|
if (t && e.finished)
|
|
1509
1509
|
throw new Error("Hash#digest() has already been called");
|
|
1510
1510
|
}
|
|
1511
|
-
function
|
|
1512
|
-
|
|
1511
|
+
function os(e, t) {
|
|
1512
|
+
or(e);
|
|
1513
1513
|
const n = t.outputLen;
|
|
1514
1514
|
if (e.length < n)
|
|
1515
1515
|
throw new Error(`digestInto() expects output buffer of length at least ${n}`);
|
|
1516
1516
|
}
|
|
1517
|
-
const
|
|
1517
|
+
const se = {
|
|
1518
1518
|
number: qt,
|
|
1519
|
-
bool:
|
|
1520
|
-
bytes:
|
|
1521
|
-
hash:
|
|
1522
|
-
exists:
|
|
1523
|
-
output:
|
|
1519
|
+
bool: rs,
|
|
1520
|
+
bytes: or,
|
|
1521
|
+
hash: is,
|
|
1522
|
+
exists: ss,
|
|
1523
|
+
output: os
|
|
1524
1524
|
};
|
|
1525
|
-
function
|
|
1525
|
+
function as(e, t, n, r) {
|
|
1526
1526
|
if (typeof e.setBigUint64 == "function")
|
|
1527
1527
|
return e.setBigUint64(t, n, r);
|
|
1528
|
-
const i = BigInt(32),
|
|
1529
|
-
e.setUint32(t + c,
|
|
1528
|
+
const i = BigInt(32), s = BigInt(4294967295), o = Number(n >> i & s), a = Number(n & s), c = r ? 4 : 0, l = r ? 0 : 4;
|
|
1529
|
+
e.setUint32(t + c, o, r), e.setUint32(t + l, a, r);
|
|
1530
1530
|
}
|
|
1531
|
-
class
|
|
1531
|
+
class cs extends rr {
|
|
1532
1532
|
constructor(t, n, r, i) {
|
|
1533
1533
|
super(), this.blockLen = t, this.outputLen = n, this.padOffset = r, this.isLE = i, this.finished = !1, this.length = 0, this.pos = 0, this.destroyed = !1, this.buffer = new Uint8Array(t), this.view = Ut(this.buffer);
|
|
1534
1534
|
}
|
|
1535
1535
|
update(t) {
|
|
1536
|
-
|
|
1536
|
+
se.exists(this);
|
|
1537
1537
|
const { view: n, buffer: r, blockLen: i } = this;
|
|
1538
1538
|
t = Je(t);
|
|
1539
|
-
const
|
|
1540
|
-
for (let
|
|
1541
|
-
const a = Math.min(i - this.pos,
|
|
1539
|
+
const s = t.length;
|
|
1540
|
+
for (let o = 0; o < s; ) {
|
|
1541
|
+
const a = Math.min(i - this.pos, s - o);
|
|
1542
1542
|
if (a === i) {
|
|
1543
1543
|
const c = Ut(t);
|
|
1544
|
-
for (; i <=
|
|
1545
|
-
this.process(c,
|
|
1544
|
+
for (; i <= s - o; o += i)
|
|
1545
|
+
this.process(c, o);
|
|
1546
1546
|
continue;
|
|
1547
1547
|
}
|
|
1548
|
-
r.set(t.subarray(
|
|
1548
|
+
r.set(t.subarray(o, o + a), this.pos), this.pos += a, o += a, this.pos === i && (this.process(n, 0), this.pos = 0);
|
|
1549
1549
|
}
|
|
1550
1550
|
return this.length += t.length, this.roundClean(), this;
|
|
1551
1551
|
}
|
|
1552
1552
|
digestInto(t) {
|
|
1553
|
-
|
|
1554
|
-
const { buffer: n, view: r, blockLen: i, isLE:
|
|
1555
|
-
let { pos:
|
|
1556
|
-
n[
|
|
1557
|
-
for (let u =
|
|
1553
|
+
se.exists(this), se.output(t, this), this.finished = !0;
|
|
1554
|
+
const { buffer: n, view: r, blockLen: i, isLE: s } = this;
|
|
1555
|
+
let { pos: o } = this;
|
|
1556
|
+
n[o++] = 128, this.buffer.subarray(o).fill(0), this.padOffset > i - o && (this.process(r, 0), o = 0);
|
|
1557
|
+
for (let u = o; u < i; u++)
|
|
1558
1558
|
n[u] = 0;
|
|
1559
|
-
|
|
1559
|
+
as(r, i - 8, BigInt(this.length * 8), s), this.process(r, 0);
|
|
1560
1560
|
const a = Ut(t), c = this.outputLen;
|
|
1561
1561
|
if (c % 4)
|
|
1562
1562
|
throw new Error("_sha2: outputLen should be aligned to 32bit");
|
|
@@ -1564,7 +1564,7 @@ class co extends rr {
|
|
|
1564
1564
|
if (l > f.length)
|
|
1565
1565
|
throw new Error("_sha2: outputLen bigger than state");
|
|
1566
1566
|
for (let u = 0; u < l; u++)
|
|
1567
|
-
a.setUint32(4 * u, f[u],
|
|
1567
|
+
a.setUint32(4 * u, f[u], s);
|
|
1568
1568
|
}
|
|
1569
1569
|
digest() {
|
|
1570
1570
|
const { buffer: t, outputLen: n } = this;
|
|
@@ -1574,11 +1574,11 @@ class co extends rr {
|
|
|
1574
1574
|
}
|
|
1575
1575
|
_cloneInto(t) {
|
|
1576
1576
|
t || (t = new this.constructor()), t.set(...this.get());
|
|
1577
|
-
const { blockLen: n, buffer: r, length: i, finished:
|
|
1578
|
-
return t.length = i, t.pos = a, t.finished =
|
|
1577
|
+
const { blockLen: n, buffer: r, length: i, finished: s, destroyed: o, pos: a } = this;
|
|
1578
|
+
return t.length = i, t.pos = a, t.finished = s, t.destroyed = o, i % n && t.buffer.set(r), t;
|
|
1579
1579
|
}
|
|
1580
1580
|
}
|
|
1581
|
-
const
|
|
1581
|
+
const ls = (e, t, n) => e & t ^ ~e & n, us = (e, t, n) => e & t ^ e & n ^ t & n, fs = new Uint32Array([
|
|
1582
1582
|
1116352408,
|
|
1583
1583
|
1899447441,
|
|
1584
1584
|
3049323471,
|
|
@@ -1653,17 +1653,17 @@ const lo = (e, t, n) => e & t ^ ~e & n, uo = (e, t, n) => e & t ^ e & n ^ t & n,
|
|
|
1653
1653
|
528734635,
|
|
1654
1654
|
1541459225
|
|
1655
1655
|
]), ve = new Uint32Array(64);
|
|
1656
|
-
class ar extends
|
|
1656
|
+
class ar extends cs {
|
|
1657
1657
|
constructor() {
|
|
1658
1658
|
super(64, 32, 8, !1), this.A = be[0] | 0, this.B = be[1] | 0, this.C = be[2] | 0, this.D = be[3] | 0, this.E = be[4] | 0, this.F = be[5] | 0, this.G = be[6] | 0, this.H = be[7] | 0;
|
|
1659
1659
|
}
|
|
1660
1660
|
get() {
|
|
1661
|
-
const { A: t, B: n, C: r, D: i, E:
|
|
1662
|
-
return [t, n, r, i,
|
|
1661
|
+
const { A: t, B: n, C: r, D: i, E: s, F: o, G: a, H: c } = this;
|
|
1662
|
+
return [t, n, r, i, s, o, a, c];
|
|
1663
1663
|
}
|
|
1664
1664
|
// prettier-ignore
|
|
1665
|
-
set(t, n, r, i,
|
|
1666
|
-
this.A = t | 0, this.B = n | 0, this.C = r | 0, this.D = i | 0, this.E =
|
|
1665
|
+
set(t, n, r, i, s, o, a, c) {
|
|
1666
|
+
this.A = t | 0, this.B = n | 0, this.C = r | 0, this.D = i | 0, this.E = s | 0, this.F = o | 0, this.G = a | 0, this.H = c | 0;
|
|
1667
1667
|
}
|
|
1668
1668
|
process(t, n) {
|
|
1669
1669
|
for (let u = 0; u < 16; u++, n += 4)
|
|
@@ -1672,12 +1672,12 @@ class ar extends co {
|
|
|
1672
1672
|
const d = ve[u - 15], p = ve[u - 2], g = re(d, 7) ^ re(d, 18) ^ d >>> 3, h = re(p, 17) ^ re(p, 19) ^ p >>> 10;
|
|
1673
1673
|
ve[u] = h + ve[u - 7] + g + ve[u - 16] | 0;
|
|
1674
1674
|
}
|
|
1675
|
-
let { A: r, B: i, C:
|
|
1675
|
+
let { A: r, B: i, C: s, D: o, E: a, F: c, G: l, H: f } = this;
|
|
1676
1676
|
for (let u = 0; u < 64; u++) {
|
|
1677
|
-
const d = re(a, 6) ^ re(a, 11) ^ re(a, 25), p = f + d +
|
|
1678
|
-
f = l, l = c, c = a, a =
|
|
1677
|
+
const d = re(a, 6) ^ re(a, 11) ^ re(a, 25), p = f + d + ls(a, c, l) + fs[u] + ve[u] | 0, h = (re(r, 2) ^ re(r, 13) ^ re(r, 22)) + us(r, i, s) | 0;
|
|
1678
|
+
f = l, l = c, c = a, a = o + p | 0, o = s, s = i, i = r, r = p + h | 0;
|
|
1679
1679
|
}
|
|
1680
|
-
r = r + this.A | 0, i = i + this.B | 0,
|
|
1680
|
+
r = r + this.A | 0, i = i + this.B | 0, s = s + this.C | 0, o = o + this.D | 0, a = a + this.E | 0, c = c + this.F | 0, l = l + this.G | 0, f = f + this.H | 0, this.set(r, i, s, o, a, c, l, f);
|
|
1681
1681
|
}
|
|
1682
1682
|
roundClean() {
|
|
1683
1683
|
ve.fill(0);
|
|
@@ -1686,20 +1686,20 @@ class ar extends co {
|
|
|
1686
1686
|
this.set(0, 0, 0, 0, 0, 0, 0, 0), this.buffer.fill(0);
|
|
1687
1687
|
}
|
|
1688
1688
|
}
|
|
1689
|
-
class
|
|
1689
|
+
class hs extends ar {
|
|
1690
1690
|
constructor() {
|
|
1691
1691
|
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;
|
|
1692
1692
|
}
|
|
1693
1693
|
}
|
|
1694
1694
|
const Se = ir(() => new ar());
|
|
1695
|
-
ir(() => new
|
|
1695
|
+
ir(() => new hs());
|
|
1696
1696
|
/*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
1697
1697
|
function Ve(e) {
|
|
1698
1698
|
if (!Number.isSafeInteger(e))
|
|
1699
1699
|
throw new Error(`Wrong integer: ${e}`);
|
|
1700
1700
|
}
|
|
1701
1701
|
function fe(...e) {
|
|
1702
|
-
const t = (i,
|
|
1702
|
+
const t = (i, s) => (o) => i(s(o)), n = Array.from(e).reverse().reduce((i, s) => i ? t(i, s.encode) : s.encode, void 0), r = e.reduce((i, s) => i ? t(i, s.decode) : s.decode, void 0);
|
|
1703
1703
|
return { encode: n, decode: r };
|
|
1704
1704
|
}
|
|
1705
1705
|
function he(e) {
|
|
@@ -1781,7 +1781,7 @@ function cr(e) {
|
|
|
1781
1781
|
throw new Error("normalize fn should be function");
|
|
1782
1782
|
return { encode: (t) => t, decode: (t) => e(t) };
|
|
1783
1783
|
}
|
|
1784
|
-
function
|
|
1784
|
+
function Cn(e, t, n) {
|
|
1785
1785
|
if (t < 2)
|
|
1786
1786
|
throw new Error(`convertRadix: wrong from=${t}, base cannot be less than 2`);
|
|
1787
1787
|
if (n < 2)
|
|
@@ -1791,26 +1791,26 @@ function kn(e, t, n) {
|
|
|
1791
1791
|
if (!e.length)
|
|
1792
1792
|
return [];
|
|
1793
1793
|
let r = 0;
|
|
1794
|
-
const i = [],
|
|
1795
|
-
for (
|
|
1796
|
-
if (Ve(
|
|
1797
|
-
throw new Error(`Wrong integer: ${
|
|
1794
|
+
const i = [], s = Array.from(e);
|
|
1795
|
+
for (s.forEach((o) => {
|
|
1796
|
+
if (Ve(o), o < 0 || o >= t)
|
|
1797
|
+
throw new Error(`Wrong integer: ${o}`);
|
|
1798
1798
|
}); ; ) {
|
|
1799
|
-
let
|
|
1800
|
-
for (let c = r; c <
|
|
1801
|
-
const l =
|
|
1802
|
-
if (!Number.isSafeInteger(f) || t *
|
|
1799
|
+
let o = 0, a = !0;
|
|
1800
|
+
for (let c = r; c < s.length; c++) {
|
|
1801
|
+
const l = s[c], f = t * o + l;
|
|
1802
|
+
if (!Number.isSafeInteger(f) || t * o / t !== o || f - l !== t * o)
|
|
1803
1803
|
throw new Error("convertRadix: carry overflow");
|
|
1804
|
-
if (
|
|
1804
|
+
if (o = f % n, s[c] = Math.floor(f / n), !Number.isSafeInteger(s[c]) || s[c] * n + o !== f)
|
|
1805
1805
|
throw new Error("convertRadix: carry overflow");
|
|
1806
1806
|
if (a)
|
|
1807
|
-
|
|
1807
|
+
s[c] ? a = !1 : r = c;
|
|
1808
1808
|
else continue;
|
|
1809
1809
|
}
|
|
1810
|
-
if (i.push(
|
|
1810
|
+
if (i.push(o), a)
|
|
1811
1811
|
break;
|
|
1812
1812
|
}
|
|
1813
|
-
for (let
|
|
1813
|
+
for (let o = 0; o < e.length - 1 && e[o] === 0; o++)
|
|
1814
1814
|
i.push(0);
|
|
1815
1815
|
return i.reverse();
|
|
1816
1816
|
}
|
|
@@ -1824,34 +1824,34 @@ function Dt(e, t, n, r) {
|
|
|
1824
1824
|
throw new Error(`convertRadix2: wrong to=${n}`);
|
|
1825
1825
|
if (at(t, n) > 32)
|
|
1826
1826
|
throw new Error(`convertRadix2: carry overflow from=${t} to=${n} carryBits=${at(t, n)}`);
|
|
1827
|
-
let i = 0,
|
|
1828
|
-
const
|
|
1827
|
+
let i = 0, s = 0;
|
|
1828
|
+
const o = 2 ** n - 1, a = [];
|
|
1829
1829
|
for (const c of e) {
|
|
1830
1830
|
if (Ve(c), c >= 2 ** t)
|
|
1831
1831
|
throw new Error(`convertRadix2: invalid data word=${c} from=${t}`);
|
|
1832
|
-
if (i = i << t | c,
|
|
1833
|
-
throw new Error(`convertRadix2: carry overflow pos=${
|
|
1834
|
-
for (
|
|
1835
|
-
a.push((i >>
|
|
1836
|
-
i &= 2 **
|
|
1832
|
+
if (i = i << t | c, s + t > 32)
|
|
1833
|
+
throw new Error(`convertRadix2: carry overflow pos=${s} from=${t}`);
|
|
1834
|
+
for (s += t; s >= n; s -= n)
|
|
1835
|
+
a.push((i >> s - n & o) >>> 0);
|
|
1836
|
+
i &= 2 ** s - 1;
|
|
1837
1837
|
}
|
|
1838
|
-
if (i = i << n -
|
|
1838
|
+
if (i = i << n - s & o, !r && s >= t)
|
|
1839
1839
|
throw new Error("Excess padding");
|
|
1840
1840
|
if (!r && i)
|
|
1841
1841
|
throw new Error(`Non-zero padding: ${i}`);
|
|
1842
|
-
return r &&
|
|
1842
|
+
return r && s > 0 && a.push(i >>> 0), a;
|
|
1843
1843
|
}
|
|
1844
|
-
function
|
|
1844
|
+
function ds(e) {
|
|
1845
1845
|
return Ve(e), {
|
|
1846
1846
|
encode: (t) => {
|
|
1847
1847
|
if (!(t instanceof Uint8Array))
|
|
1848
1848
|
throw new Error("radix.encode input should be Uint8Array");
|
|
1849
|
-
return
|
|
1849
|
+
return Cn(Array.from(t), 2 ** 8, e);
|
|
1850
1850
|
},
|
|
1851
1851
|
decode: (t) => {
|
|
1852
1852
|
if (!Array.isArray(t) || t.length && typeof t[0] != "number")
|
|
1853
1853
|
throw new Error("radix.decode input should be array of strings");
|
|
1854
|
-
return Uint8Array.from(
|
|
1854
|
+
return Uint8Array.from(Cn(t, e, 2 ** 8));
|
|
1855
1855
|
}
|
|
1856
1856
|
};
|
|
1857
1857
|
}
|
|
@@ -1873,7 +1873,7 @@ function Ae(e, t = !1) {
|
|
|
1873
1873
|
}
|
|
1874
1874
|
};
|
|
1875
1875
|
}
|
|
1876
|
-
function
|
|
1876
|
+
function kn(e) {
|
|
1877
1877
|
if (typeof e != "function")
|
|
1878
1878
|
throw new Error("unsafeWrapper fn should be function");
|
|
1879
1879
|
return function(...t) {
|
|
@@ -1883,13 +1883,13 @@ function Bn(e) {
|
|
|
1883
1883
|
}
|
|
1884
1884
|
};
|
|
1885
1885
|
}
|
|
1886
|
-
const
|
|
1886
|
+
const ys = fe(Ae(4), he("0123456789ABCDEF"), de("")), ps = fe(Ae(5), he("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"), yt(5), de(""));
|
|
1887
1887
|
fe(Ae(5), he("0123456789ABCDEFGHIJKLMNOPQRSTUV"), yt(5), de(""));
|
|
1888
1888
|
fe(Ae(5), he("0123456789ABCDEFGHJKMNPQRSTVWXYZ"), de(""), cr((e) => e.toUpperCase().replace(/O/g, "0").replace(/[IL]/g, "1")));
|
|
1889
|
-
const ue = fe(Ae(6), he("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"), yt(6), de("")),
|
|
1889
|
+
const ue = fe(Ae(6), he("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"), yt(6), de("")), gs = fe(Ae(6), he("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"), yt(6), de("")), tn = (e) => fe(ds(58), he(e), de("")), jt = tn("123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz");
|
|
1890
1890
|
tn("123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ");
|
|
1891
1891
|
tn("rpshnaf39wBUDNEGHJKLM4PQRST7VWXYZ2bcdeCg65jkm8oFqi1tuvAxyz");
|
|
1892
|
-
const Un = [0, 2, 3, 5, 6, 7, 9, 10, 11],
|
|
1892
|
+
const Un = [0, 2, 3, 5, 6, 7, 9, 10, 11], ws = {
|
|
1893
1893
|
encode(e) {
|
|
1894
1894
|
let t = "";
|
|
1895
1895
|
for (let n = 0; n < e.length; n += 8) {
|
|
@@ -1901,11 +1901,11 @@ const Un = [0, 2, 3, 5, 6, 7, 9, 10, 11], bo = {
|
|
|
1901
1901
|
decode(e) {
|
|
1902
1902
|
let t = [];
|
|
1903
1903
|
for (let n = 0; n < e.length; n += 11) {
|
|
1904
|
-
const r = e.slice(n, n + 11), i = Un.indexOf(r.length),
|
|
1905
|
-
for (let
|
|
1906
|
-
if (o
|
|
1904
|
+
const r = e.slice(n, n + 11), i = Un.indexOf(r.length), s = jt.decode(r);
|
|
1905
|
+
for (let o = 0; o < s.length - i; o++)
|
|
1906
|
+
if (s[o] !== 0)
|
|
1907
1907
|
throw new Error("base58xmr: wrong padding");
|
|
1908
|
-
t = t.concat(Array.from(
|
|
1908
|
+
t = t.concat(Array.from(s.slice(s.length - i)));
|
|
1909
1909
|
}
|
|
1910
1910
|
return Uint8Array.from(t);
|
|
1911
1911
|
}
|
|
@@ -1920,24 +1920,24 @@ function Fe(e) {
|
|
|
1920
1920
|
function _n(e, t, n = 1) {
|
|
1921
1921
|
const r = e.length;
|
|
1922
1922
|
let i = 1;
|
|
1923
|
-
for (let
|
|
1924
|
-
const
|
|
1925
|
-
if (
|
|
1923
|
+
for (let s = 0; s < r; s++) {
|
|
1924
|
+
const o = e.charCodeAt(s);
|
|
1925
|
+
if (o < 33 || o > 126)
|
|
1926
1926
|
throw new Error(`Invalid prefix (${e})`);
|
|
1927
|
-
i = Fe(i) ^
|
|
1927
|
+
i = Fe(i) ^ o >> 5;
|
|
1928
1928
|
}
|
|
1929
1929
|
i = Fe(i);
|
|
1930
|
-
for (let
|
|
1931
|
-
i = Fe(i) ^ e.charCodeAt(
|
|
1932
|
-
for (let
|
|
1933
|
-
i = Fe(i) ^
|
|
1934
|
-
for (let
|
|
1930
|
+
for (let s = 0; s < r; s++)
|
|
1931
|
+
i = Fe(i) ^ e.charCodeAt(s) & 31;
|
|
1932
|
+
for (let s of t)
|
|
1933
|
+
i = Fe(i) ^ s;
|
|
1934
|
+
for (let s = 0; s < 6; s++)
|
|
1935
1935
|
i = Fe(i);
|
|
1936
1936
|
return i ^= n, Vt.encode(Dt([i % 2 ** 30], 30, 5, !1));
|
|
1937
1937
|
}
|
|
1938
1938
|
function ur(e) {
|
|
1939
|
-
const t = e === "bech32" ? 1 : 734539939, n = Ae(5), r = n.decode, i = n.encode,
|
|
1940
|
-
function
|
|
1939
|
+
const t = e === "bech32" ? 1 : 734539939, n = Ae(5), r = n.decode, i = n.encode, s = kn(r);
|
|
1940
|
+
function o(f, u, d = 90) {
|
|
1941
1941
|
if (typeof f != "string")
|
|
1942
1942
|
throw new Error(`bech32.encode prefix should be string, not ${typeof f}`);
|
|
1943
1943
|
if (!Array.isArray(u) || u.length && typeof u[0] != "number")
|
|
@@ -1967,33 +1967,33 @@ function ur(e) {
|
|
|
1967
1967
|
throw new Error(`Invalid checksum in ${f}: expected "${w}"`);
|
|
1968
1968
|
return { prefix: g, words: y };
|
|
1969
1969
|
}
|
|
1970
|
-
const c =
|
|
1970
|
+
const c = kn(a);
|
|
1971
1971
|
function l(f) {
|
|
1972
1972
|
const { prefix: u, words: d } = a(f, !1);
|
|
1973
1973
|
return { prefix: u, words: d, bytes: r(d) };
|
|
1974
1974
|
}
|
|
1975
|
-
return { encode:
|
|
1975
|
+
return { encode: o, decode: a, decodeToBytes: l, decodeUnsafe: c, fromWords: r, fromWordsUnsafe: s, toWords: i };
|
|
1976
1976
|
}
|
|
1977
1977
|
const je = ur("bech32");
|
|
1978
1978
|
ur("bech32m");
|
|
1979
|
-
const
|
|
1979
|
+
const bs = {
|
|
1980
1980
|
encode: (e) => new TextDecoder().decode(e),
|
|
1981
1981
|
decode: (e) => new TextEncoder().encode(e)
|
|
1982
|
-
},
|
|
1982
|
+
}, vs = fe(Ae(4), he("0123456789abcdef"), de(""), cr((e) => {
|
|
1983
1983
|
if (typeof e != "string" || e.length % 2)
|
|
1984
1984
|
throw new TypeError(`hex.decode: expected string, got ${typeof e} with length ${e.length}`);
|
|
1985
1985
|
return e.toLowerCase();
|
|
1986
|
-
})),
|
|
1987
|
-
utf8:
|
|
1988
|
-
hex:
|
|
1989
|
-
base16:
|
|
1990
|
-
base32:
|
|
1986
|
+
})), ms = {
|
|
1987
|
+
utf8: bs,
|
|
1988
|
+
hex: vs,
|
|
1989
|
+
base16: ys,
|
|
1990
|
+
base32: ps,
|
|
1991
1991
|
base64: ue,
|
|
1992
|
-
base64url:
|
|
1992
|
+
base64url: gs,
|
|
1993
1993
|
base58: jt,
|
|
1994
|
-
base58xmr:
|
|
1994
|
+
base58xmr: ws
|
|
1995
1995
|
};
|
|
1996
|
-
`${Object.keys(
|
|
1996
|
+
`${Object.keys(ms).join(", ")}`;
|
|
1997
1997
|
function It(e) {
|
|
1998
1998
|
if (!Number.isSafeInteger(e) || e < 0)
|
|
1999
1999
|
throw new Error(`positive integer expected, not ${e}`);
|
|
@@ -2002,25 +2002,25 @@ function Ln(e) {
|
|
|
2002
2002
|
if (typeof e != "boolean")
|
|
2003
2003
|
throw new Error(`boolean expected, not ${e}`);
|
|
2004
2004
|
}
|
|
2005
|
-
function
|
|
2005
|
+
function Es(e) {
|
|
2006
2006
|
return e instanceof Uint8Array || e != null && typeof e == "object" && e.constructor.name === "Uint8Array";
|
|
2007
2007
|
}
|
|
2008
2008
|
function le(e, ...t) {
|
|
2009
|
-
if (!
|
|
2009
|
+
if (!Es(e))
|
|
2010
2010
|
throw new Error("Uint8Array expected");
|
|
2011
2011
|
if (t.length > 0 && !t.includes(e.length))
|
|
2012
2012
|
throw new Error(`Uint8Array expected of length ${t}, not of length=${e.length}`);
|
|
2013
2013
|
}
|
|
2014
2014
|
/*! noble-ciphers - MIT License (c) 2023 Paul Miller (paulmillr.com) */
|
|
2015
|
-
const F = (e) => new Uint32Array(e.buffer, e.byteOffset, Math.floor(e.byteLength / 4)),
|
|
2016
|
-
if (!
|
|
2015
|
+
const F = (e) => new Uint32Array(e.buffer, e.byteOffset, Math.floor(e.byteLength / 4)), xs = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68;
|
|
2016
|
+
if (!xs)
|
|
2017
2017
|
throw new Error("Non little-endian hardware is not supported");
|
|
2018
|
-
function
|
|
2018
|
+
function Ss(e, t) {
|
|
2019
2019
|
if (t == null || typeof t != "object")
|
|
2020
2020
|
throw new Error("options must be defined");
|
|
2021
2021
|
return Object.assign(e, t);
|
|
2022
2022
|
}
|
|
2023
|
-
function
|
|
2023
|
+
function As(e, t) {
|
|
2024
2024
|
if (e.length !== t.length)
|
|
2025
2025
|
return !1;
|
|
2026
2026
|
let n = 0;
|
|
@@ -2028,9 +2028,9 @@ function Ko(e, t) {
|
|
|
2028
2028
|
n |= e[r] ^ t[r];
|
|
2029
2029
|
return n === 0;
|
|
2030
2030
|
}
|
|
2031
|
-
const
|
|
2031
|
+
const Ks = /* @__NO_SIDE_EFFECTS__ */ (e, t) => (Object.assign(t, e), t), Ee = 16, Ns = 283;
|
|
2032
2032
|
function nn(e) {
|
|
2033
|
-
return e << 1 ^
|
|
2033
|
+
return e << 1 ^ Ns & -(e >> 7);
|
|
2034
2034
|
}
|
|
2035
2035
|
function Pe(e, t) {
|
|
2036
2036
|
let n = 0;
|
|
@@ -2049,19 +2049,19 @@ const zt = /* @__PURE__ */ (() => {
|
|
|
2049
2049
|
r |= r << 8, t[e[n]] = (r ^ r >> 4 ^ r >> 5 ^ r >> 6 ^ r >> 7 ^ 99) & 255;
|
|
2050
2050
|
}
|
|
2051
2051
|
return t;
|
|
2052
|
-
})(),
|
|
2052
|
+
})(), Bs = /* @__PURE__ */ zt.map((e, t) => zt.indexOf(t)), Cs = (e) => e << 24 | e >>> 8, _t = (e) => e << 8 | e >>> 24;
|
|
2053
2053
|
function fr(e, t) {
|
|
2054
2054
|
if (e.length !== 256)
|
|
2055
2055
|
throw new Error("Wrong sbox length");
|
|
2056
|
-
const n = new Uint32Array(256).map((l, f) => t(e[f])), r = n.map(_t), i = r.map(_t),
|
|
2056
|
+
const n = new Uint32Array(256).map((l, f) => t(e[f])), r = n.map(_t), i = r.map(_t), s = i.map(_t), o = new Uint32Array(256 * 256), a = new Uint32Array(256 * 256), c = new Uint16Array(256 * 256);
|
|
2057
2057
|
for (let l = 0; l < 256; l++)
|
|
2058
2058
|
for (let f = 0; f < 256; f++) {
|
|
2059
2059
|
const u = l * 256 + f;
|
|
2060
|
-
|
|
2060
|
+
o[u] = n[l] ^ r[f], a[u] = i[l] ^ s[f], c[u] = e[l] << 8 | e[f];
|
|
2061
2061
|
}
|
|
2062
|
-
return { sbox: e, sbox2: c, T0: n, T1: r, T2: i, T3:
|
|
2062
|
+
return { sbox: e, sbox2: c, T0: n, T1: r, T2: i, T3: s, T01: o, T23: a };
|
|
2063
2063
|
}
|
|
2064
|
-
const rn = /* @__PURE__ */ fr(zt, (e) => Pe(e, 3) << 24 | e << 16 | e << 8 | Pe(e, 2)), hr = /* @__PURE__ */ fr(
|
|
2064
|
+
const rn = /* @__PURE__ */ fr(zt, (e) => Pe(e, 3) << 24 | e << 16 | e << 8 | Pe(e, 2)), hr = /* @__PURE__ */ fr(Bs, (e) => Pe(e, 11) << 24 | Pe(e, 13) << 16 | Pe(e, 9) << 8 | Pe(e, 14)), ks = /* @__PURE__ */ (() => {
|
|
2065
2065
|
const e = new Uint8Array(16);
|
|
2066
2066
|
for (let t = 0, n = 1; t < 16; t++, n = nn(n))
|
|
2067
2067
|
e[t] = n;
|
|
@@ -2072,54 +2072,54 @@ function dr(e) {
|
|
|
2072
2072
|
const t = e.length;
|
|
2073
2073
|
if (![16, 24, 32].includes(t))
|
|
2074
2074
|
throw new Error(`aes: wrong key size: should be 16, 24 or 32, got: ${t}`);
|
|
2075
|
-
const { sbox2: n } = rn, r = F(e), i = r.length,
|
|
2076
|
-
|
|
2077
|
-
for (let a = i; a <
|
|
2078
|
-
let c =
|
|
2079
|
-
a % i === 0 ? c =
|
|
2075
|
+
const { sbox2: n } = rn, r = F(e), i = r.length, s = (a) => oe(n, a, a, a, a), o = new Uint32Array(t + 28);
|
|
2076
|
+
o.set(r);
|
|
2077
|
+
for (let a = i; a < o.length; a++) {
|
|
2078
|
+
let c = o[a - 1];
|
|
2079
|
+
a % i === 0 ? c = s(Cs(c)) ^ ks[a / i - 1] : i > 6 && a % i === 4 && (c = s(c)), o[a] = o[a - i] ^ c;
|
|
2080
2080
|
}
|
|
2081
|
-
return
|
|
2081
|
+
return o;
|
|
2082
2082
|
}
|
|
2083
|
-
function
|
|
2084
|
-
const t = dr(e), n = t.slice(), r = t.length, { sbox2: i } = rn, { T0:
|
|
2083
|
+
function Us(e) {
|
|
2084
|
+
const t = dr(e), n = t.slice(), r = t.length, { sbox2: i } = rn, { T0: s, T1: o, T2: a, T3: c } = hr;
|
|
2085
2085
|
for (let l = 0; l < r; l += 4)
|
|
2086
2086
|
for (let f = 0; f < 4; f++)
|
|
2087
2087
|
n[l + f] = t[r - l - 4 + f];
|
|
2088
2088
|
t.fill(0);
|
|
2089
2089
|
for (let l = 4; l < r - 4; l++) {
|
|
2090
|
-
const f = n[l], u =
|
|
2091
|
-
n[l] =
|
|
2090
|
+
const f = n[l], u = oe(i, f, f, f, f);
|
|
2091
|
+
n[l] = s[u & 255] ^ o[u >>> 8 & 255] ^ a[u >>> 16 & 255] ^ c[u >>> 24];
|
|
2092
2092
|
}
|
|
2093
2093
|
return n;
|
|
2094
2094
|
}
|
|
2095
|
-
function
|
|
2096
|
-
return e[n << 8 & 65280 | r >>> 8 & 255] ^ t[i >>> 8 & 65280 |
|
|
2095
|
+
function me(e, t, n, r, i, s) {
|
|
2096
|
+
return e[n << 8 & 65280 | r >>> 8 & 255] ^ t[i >>> 8 & 65280 | s >>> 24 & 255];
|
|
2097
2097
|
}
|
|
2098
|
-
function
|
|
2098
|
+
function oe(e, t, n, r, i) {
|
|
2099
2099
|
return e[t & 255 | n & 65280] | e[r >>> 16 & 255 | i >>> 16 & 65280] << 16;
|
|
2100
2100
|
}
|
|
2101
2101
|
function Tn(e, t, n, r, i) {
|
|
2102
|
-
const { sbox2:
|
|
2102
|
+
const { sbox2: s, T01: o, T23: a } = rn;
|
|
2103
2103
|
let c = 0;
|
|
2104
2104
|
t ^= e[c++], n ^= e[c++], r ^= e[c++], i ^= e[c++];
|
|
2105
2105
|
const l = e.length / 4 - 2;
|
|
2106
2106
|
for (let g = 0; g < l; g++) {
|
|
2107
|
-
const h = e[c++] ^
|
|
2108
|
-
t = h, n = y, r = w, i =
|
|
2107
|
+
const h = e[c++] ^ me(o, a, t, n, r, i), y = e[c++] ^ me(o, a, n, r, i, t), w = e[c++] ^ me(o, a, r, i, t, n), E = e[c++] ^ me(o, a, i, t, n, r);
|
|
2108
|
+
t = h, n = y, r = w, i = E;
|
|
2109
2109
|
}
|
|
2110
|
-
const f = e[c++] ^
|
|
2110
|
+
const f = e[c++] ^ oe(s, t, n, r, i), u = e[c++] ^ oe(s, n, r, i, t), d = e[c++] ^ oe(s, r, i, t, n), p = e[c++] ^ oe(s, i, t, n, r);
|
|
2111
2111
|
return { s0: f, s1: u, s2: d, s3: p };
|
|
2112
2112
|
}
|
|
2113
|
-
function
|
|
2114
|
-
const { sbox2:
|
|
2113
|
+
function Is(e, t, n, r, i) {
|
|
2114
|
+
const { sbox2: s, T01: o, T23: a } = hr;
|
|
2115
2115
|
let c = 0;
|
|
2116
2116
|
t ^= e[c++], n ^= e[c++], r ^= e[c++], i ^= e[c++];
|
|
2117
2117
|
const l = e.length / 4 - 2;
|
|
2118
2118
|
for (let g = 0; g < l; g++) {
|
|
2119
|
-
const h = e[c++] ^
|
|
2120
|
-
t = h, n = y, r = w, i =
|
|
2119
|
+
const h = e[c++] ^ me(o, a, t, i, r, n), y = e[c++] ^ me(o, a, n, t, i, r), w = e[c++] ^ me(o, a, r, n, t, i), E = e[c++] ^ me(o, a, i, r, n, t);
|
|
2120
|
+
t = h, n = y, r = w, i = E;
|
|
2121
2121
|
}
|
|
2122
|
-
const f = e[c++] ^
|
|
2122
|
+
const f = e[c++] ^ oe(s, t, i, r, n), u = e[c++] ^ oe(s, n, t, i, r), d = e[c++] ^ oe(s, r, n, t, i), p = e[c++] ^ oe(s, i, r, n, t);
|
|
2123
2123
|
return { s0: f, s1: u, s2: d, s3: p };
|
|
2124
2124
|
}
|
|
2125
2125
|
function yr(e, t) {
|
|
@@ -2129,24 +2129,24 @@ function yr(e, t) {
|
|
|
2129
2129
|
throw new Error(`aes: wrong destination length, expected at least ${e}, got: ${t.length}`);
|
|
2130
2130
|
return t;
|
|
2131
2131
|
}
|
|
2132
|
-
function
|
|
2133
|
-
if (le(e), e.length %
|
|
2134
|
-
throw new Error(`aes/(cbc-ecb).decrypt ciphertext should consist of blocks with size ${
|
|
2132
|
+
function _s(e) {
|
|
2133
|
+
if (le(e), e.length % Ee !== 0)
|
|
2134
|
+
throw new Error(`aes/(cbc-ecb).decrypt ciphertext should consist of blocks with size ${Ee}`);
|
|
2135
2135
|
}
|
|
2136
|
-
function
|
|
2136
|
+
function Ls(e, t, n) {
|
|
2137
2137
|
let r = e.length;
|
|
2138
|
-
const i = r %
|
|
2138
|
+
const i = r % Ee;
|
|
2139
2139
|
if (!t && i !== 0)
|
|
2140
2140
|
throw new Error("aec/(cbc-ecb): unpadded plaintext with disabled padding");
|
|
2141
|
-
const
|
|
2141
|
+
const s = F(e);
|
|
2142
2142
|
if (t) {
|
|
2143
|
-
let c =
|
|
2144
|
-
c || (c =
|
|
2143
|
+
let c = Ee - i;
|
|
2144
|
+
c || (c = Ee), r = r + c;
|
|
2145
2145
|
}
|
|
2146
|
-
const
|
|
2147
|
-
return { b:
|
|
2146
|
+
const o = yr(r, n), a = F(o);
|
|
2147
|
+
return { b: s, o: a, out: o };
|
|
2148
2148
|
}
|
|
2149
|
-
function
|
|
2149
|
+
function Ts(e, t) {
|
|
2150
2150
|
if (!t)
|
|
2151
2151
|
return e;
|
|
2152
2152
|
const n = e.length;
|
|
@@ -2156,48 +2156,48 @@ function $o(e, t) {
|
|
|
2156
2156
|
if (r <= 0 || r > 16)
|
|
2157
2157
|
throw new Error(`aes/pcks5: wrong padding byte: ${r}`);
|
|
2158
2158
|
const i = e.subarray(0, -r);
|
|
2159
|
-
for (let
|
|
2160
|
-
if (e[n -
|
|
2159
|
+
for (let s = 0; s < r; s++)
|
|
2160
|
+
if (e[n - s - 1] !== r)
|
|
2161
2161
|
throw new Error("aes/pcks5: wrong padding");
|
|
2162
2162
|
return i;
|
|
2163
2163
|
}
|
|
2164
|
-
function
|
|
2164
|
+
function $s(e) {
|
|
2165
2165
|
const t = new Uint8Array(16), n = F(t);
|
|
2166
2166
|
t.set(e);
|
|
2167
|
-
const r =
|
|
2168
|
-
for (let i =
|
|
2167
|
+
const r = Ee - e.length;
|
|
2168
|
+
for (let i = Ee - r; i < Ee; i++)
|
|
2169
2169
|
t[i] = r;
|
|
2170
2170
|
return n;
|
|
2171
2171
|
}
|
|
2172
|
-
const pr = /* @__PURE__ */
|
|
2172
|
+
const pr = /* @__PURE__ */ Ks({ blockSize: 16, nonceLength: 16 }, function(t, n, r = {}) {
|
|
2173
2173
|
le(t), le(n, 16);
|
|
2174
2174
|
const i = !r.disablePadding;
|
|
2175
2175
|
return {
|
|
2176
|
-
encrypt: (
|
|
2177
|
-
const a = dr(t), { b: c, o: l, out: f } =
|
|
2176
|
+
encrypt: (s, o) => {
|
|
2177
|
+
const a = dr(t), { b: c, o: l, out: f } = Ls(s, i, o), u = F(n);
|
|
2178
2178
|
let d = u[0], p = u[1], g = u[2], h = u[3], y = 0;
|
|
2179
2179
|
for (; y + 4 <= c.length; )
|
|
2180
2180
|
d ^= c[y + 0], p ^= c[y + 1], g ^= c[y + 2], h ^= c[y + 3], { s0: d, s1: p, s2: g, s3: h } = Tn(a, d, p, g, h), l[y++] = d, l[y++] = p, l[y++] = g, l[y++] = h;
|
|
2181
2181
|
if (i) {
|
|
2182
|
-
const w =
|
|
2182
|
+
const w = $s(s.subarray(y * 4));
|
|
2183
2183
|
d ^= w[0], p ^= w[1], g ^= w[2], h ^= w[3], { s0: d, s1: p, s2: g, s3: h } = Tn(a, d, p, g, h), l[y++] = d, l[y++] = p, l[y++] = g, l[y++] = h;
|
|
2184
2184
|
}
|
|
2185
2185
|
return a.fill(0), f;
|
|
2186
2186
|
},
|
|
2187
|
-
decrypt: (
|
|
2188
|
-
|
|
2189
|
-
const a =
|
|
2187
|
+
decrypt: (s, o) => {
|
|
2188
|
+
_s(s);
|
|
2189
|
+
const a = Us(t), c = F(n), l = yr(s.length, o), f = F(s), u = F(l);
|
|
2190
2190
|
let d = c[0], p = c[1], g = c[2], h = c[3];
|
|
2191
2191
|
for (let y = 0; y + 4 <= f.length; ) {
|
|
2192
|
-
const w = d,
|
|
2192
|
+
const w = d, E = p, K = g, I = h;
|
|
2193
2193
|
d = f[y + 0], p = f[y + 1], g = f[y + 2], h = f[y + 3];
|
|
2194
|
-
const { s0:
|
|
2195
|
-
u[y++] =
|
|
2194
|
+
const { s0: C, s1: m, s2: x, s3: S } = Is(a, d, p, g, h);
|
|
2195
|
+
u[y++] = C ^ w, u[y++] = m ^ E, u[y++] = x ^ K, u[y++] = S ^ I;
|
|
2196
2196
|
}
|
|
2197
|
-
return a.fill(0),
|
|
2197
|
+
return a.fill(0), Ts(l, i);
|
|
2198
2198
|
}
|
|
2199
2199
|
};
|
|
2200
|
-
}), gr = (e) => Uint8Array.from(e.split("").map((t) => t.charCodeAt(0))),
|
|
2200
|
+
}), gr = (e) => Uint8Array.from(e.split("").map((t) => t.charCodeAt(0))), Rs = gr("expand 16-byte k"), Os = gr("expand 32-byte k"), Ps = F(Rs), wr = F(Os);
|
|
2201
2201
|
wr.slice();
|
|
2202
2202
|
function L(e, t) {
|
|
2203
2203
|
return e << t | e >>> 32 - t;
|
|
@@ -2205,32 +2205,32 @@ function L(e, t) {
|
|
|
2205
2205
|
function Zt(e) {
|
|
2206
2206
|
return e.byteOffset % 4 === 0;
|
|
2207
2207
|
}
|
|
2208
|
-
const Qe = 64,
|
|
2209
|
-
function
|
|
2210
|
-
const c = i.length, l = new Uint8Array(Qe), f = F(l), u = Zt(i) && Zt(
|
|
2211
|
-
for (let g = 0; g < c;
|
|
2212
|
-
if (e(t, n, r, f,
|
|
2208
|
+
const Qe = 64, Ms = 16, br = 2 ** 32 - 1, $n = new Uint32Array();
|
|
2209
|
+
function Hs(e, t, n, r, i, s, o, a) {
|
|
2210
|
+
const c = i.length, l = new Uint8Array(Qe), f = F(l), u = Zt(i) && Zt(s), d = u ? F(i) : $n, p = u ? F(s) : $n;
|
|
2211
|
+
for (let g = 0; g < c; o++) {
|
|
2212
|
+
if (e(t, n, r, f, o, a), o >= br)
|
|
2213
2213
|
throw new Error("arx: counter overflow");
|
|
2214
2214
|
const h = Math.min(Qe, c - g);
|
|
2215
2215
|
if (u && h === Qe) {
|
|
2216
2216
|
const y = g / 4;
|
|
2217
2217
|
if (g % 4 !== 0)
|
|
2218
2218
|
throw new Error("arx: invalid block position");
|
|
2219
|
-
for (let w = 0,
|
|
2220
|
-
|
|
2219
|
+
for (let w = 0, E; w < Ms; w++)
|
|
2220
|
+
E = y + w, p[E] = d[E] ^ f[w];
|
|
2221
2221
|
g += Qe;
|
|
2222
2222
|
continue;
|
|
2223
2223
|
}
|
|
2224
2224
|
for (let y = 0, w; y < h; y++)
|
|
2225
|
-
w = g + y,
|
|
2225
|
+
w = g + y, s[w] = i[w] ^ l[y];
|
|
2226
2226
|
g += h;
|
|
2227
2227
|
}
|
|
2228
2228
|
}
|
|
2229
|
-
function
|
|
2230
|
-
const { allowShortKeys: n, extendNonceFn: r, counterLength: i, counterRight:
|
|
2229
|
+
function qs(e, t) {
|
|
2230
|
+
const { allowShortKeys: n, extendNonceFn: r, counterLength: i, counterRight: s, rounds: o } = Ss({ allowShortKeys: !1, counterLength: 8, counterRight: !1, rounds: 20 }, t);
|
|
2231
2231
|
if (typeof e != "function")
|
|
2232
2232
|
throw new Error("core must be a function");
|
|
2233
|
-
return It(i), It(
|
|
2233
|
+
return It(i), It(o), Ln(s), Ln(n), (a, c, l, f, u = 0) => {
|
|
2234
2234
|
le(a), le(c), le(l);
|
|
2235
2235
|
const d = l.length;
|
|
2236
2236
|
if (f || (f = new Uint8Array(d)), le(f), It(u), u < 0 || u >= br)
|
|
@@ -2242,7 +2242,7 @@ function Do(e, t) {
|
|
|
2242
2242
|
if (g === 32)
|
|
2243
2243
|
h = a.slice(), p.push(h), y = wr;
|
|
2244
2244
|
else if (g === 16 && n)
|
|
2245
|
-
h = new Uint8Array(32), h.set(a), h.set(a, 16), y =
|
|
2245
|
+
h = new Uint8Array(32), h.set(a), h.set(a, 16), y = Ps, p.push(h);
|
|
2246
2246
|
else
|
|
2247
2247
|
throw new Error(`arx: invalid 32-byte key, got length=${g}`);
|
|
2248
2248
|
Zt(c) || (c = c.slice(), p.push(c));
|
|
@@ -2252,52 +2252,52 @@ function Do(e, t) {
|
|
|
2252
2252
|
throw new Error("arx: extended nonce must be 24 bytes");
|
|
2253
2253
|
r(y, w, F(c.subarray(0, 16)), w), c = c.subarray(16);
|
|
2254
2254
|
}
|
|
2255
|
-
const
|
|
2256
|
-
if (
|
|
2257
|
-
throw new Error(`arx: nonce must be ${
|
|
2258
|
-
if (
|
|
2255
|
+
const E = 16 - i;
|
|
2256
|
+
if (E !== c.length)
|
|
2257
|
+
throw new Error(`arx: nonce must be ${E} or 16 bytes`);
|
|
2258
|
+
if (E !== 12) {
|
|
2259
2259
|
const I = new Uint8Array(12);
|
|
2260
|
-
I.set(c,
|
|
2260
|
+
I.set(c, s ? 0 : 12 - c.length), c = I, p.push(c);
|
|
2261
2261
|
}
|
|
2262
2262
|
const K = F(c);
|
|
2263
|
-
for (
|
|
2263
|
+
for (Hs(e, y, w, K, l, f, u, o); p.length > 0; )
|
|
2264
2264
|
p.pop().fill(0);
|
|
2265
2265
|
return f;
|
|
2266
2266
|
};
|
|
2267
2267
|
}
|
|
2268
|
-
function
|
|
2269
|
-
let
|
|
2270
|
-
for (let X = 0; X <
|
|
2271
|
-
|
|
2268
|
+
function Ds(e, t, n, r, i, s = 20) {
|
|
2269
|
+
let o = e[0], a = e[1], c = e[2], l = e[3], f = t[0], u = t[1], d = t[2], p = t[3], g = t[4], h = t[5], y = t[6], w = t[7], E = i, K = n[0], I = n[1], C = n[2], m = o, x = a, S = c, P = l, U = f, N = u, $ = d, R = p, H = g, b = h, v = y, A = w, k = E, B = K, _ = I, O = C;
|
|
2270
|
+
for (let X = 0; X < s; X += 2)
|
|
2271
|
+
m = m + U | 0, k = L(k ^ m, 16), H = H + k | 0, U = L(U ^ H, 12), m = m + U | 0, k = L(k ^ m, 8), H = H + k | 0, U = L(U ^ H, 7), x = x + N | 0, B = L(B ^ x, 16), b = b + B | 0, N = L(N ^ b, 12), x = x + N | 0, B = L(B ^ x, 8), b = b + B | 0, N = L(N ^ b, 7), S = S + $ | 0, _ = L(_ ^ S, 16), v = v + _ | 0, $ = L($ ^ v, 12), S = S + $ | 0, _ = L(_ ^ S, 8), v = v + _ | 0, $ = L($ ^ v, 7), P = P + R | 0, O = L(O ^ P, 16), A = A + O | 0, R = L(R ^ A, 12), P = P + R | 0, O = L(O ^ P, 8), A = A + O | 0, R = L(R ^ A, 7), m = m + N | 0, O = L(O ^ m, 16), v = v + O | 0, N = L(N ^ v, 12), m = m + N | 0, O = L(O ^ m, 8), v = v + O | 0, N = L(N ^ v, 7), x = x + $ | 0, k = L(k ^ x, 16), A = A + k | 0, $ = L($ ^ A, 12), x = x + $ | 0, k = L(k ^ x, 8), A = A + k | 0, $ = L($ ^ A, 7), S = S + R | 0, B = L(B ^ S, 16), H = H + B | 0, R = L(R ^ H, 12), S = S + R | 0, B = L(B ^ S, 8), H = H + B | 0, R = L(R ^ H, 7), P = P + U | 0, _ = L(_ ^ P, 16), b = b + _ | 0, U = L(U ^ b, 12), P = P + U | 0, _ = L(_ ^ P, 8), b = b + _ | 0, U = L(U ^ b, 7);
|
|
2272
2272
|
let T = 0;
|
|
2273
|
-
r[T++] =
|
|
2273
|
+
r[T++] = o + m | 0, r[T++] = a + x | 0, r[T++] = c + S | 0, r[T++] = l + P | 0, r[T++] = f + U | 0, r[T++] = u + N | 0, r[T++] = d + $ | 0, r[T++] = p + R | 0, r[T++] = g + H | 0, r[T++] = h + b | 0, r[T++] = y + v | 0, r[T++] = w + A | 0, r[T++] = E + k | 0, r[T++] = K + B | 0, r[T++] = I + _ | 0, r[T++] = C + O | 0;
|
|
2274
2274
|
}
|
|
2275
|
-
const vr = /* @__PURE__ */
|
|
2275
|
+
const vr = /* @__PURE__ */ qs(Ds, {
|
|
2276
2276
|
counterRight: !1,
|
|
2277
2277
|
counterLength: 4,
|
|
2278
2278
|
allowShortKeys: !1
|
|
2279
2279
|
});
|
|
2280
|
-
class
|
|
2280
|
+
class mr extends rr {
|
|
2281
2281
|
constructor(t, n) {
|
|
2282
|
-
super(), this.finished = !1, this.destroyed = !1,
|
|
2282
|
+
super(), this.finished = !1, this.destroyed = !1, se.hash(t);
|
|
2283
2283
|
const r = Je(n);
|
|
2284
2284
|
if (this.iHash = t.create(), typeof this.iHash.update != "function")
|
|
2285
2285
|
throw new Error("Expected instance of class which extends utils.Hash");
|
|
2286
2286
|
this.blockLen = this.iHash.blockLen, this.outputLen = this.iHash.outputLen;
|
|
2287
|
-
const i = this.blockLen,
|
|
2288
|
-
|
|
2289
|
-
for (let
|
|
2290
|
-
o
|
|
2291
|
-
this.iHash.update(
|
|
2292
|
-
for (let
|
|
2293
|
-
o
|
|
2294
|
-
this.oHash.update(
|
|
2287
|
+
const i = this.blockLen, s = new Uint8Array(i);
|
|
2288
|
+
s.set(r.length > i ? t.create().update(r).digest() : r);
|
|
2289
|
+
for (let o = 0; o < s.length; o++)
|
|
2290
|
+
s[o] ^= 54;
|
|
2291
|
+
this.iHash.update(s), this.oHash = t.create();
|
|
2292
|
+
for (let o = 0; o < s.length; o++)
|
|
2293
|
+
s[o] ^= 106;
|
|
2294
|
+
this.oHash.update(s), s.fill(0);
|
|
2295
2295
|
}
|
|
2296
2296
|
update(t) {
|
|
2297
|
-
return
|
|
2297
|
+
return se.exists(this), this.iHash.update(t), this;
|
|
2298
2298
|
}
|
|
2299
2299
|
digestInto(t) {
|
|
2300
|
-
|
|
2300
|
+
se.exists(this), se.bytes(t, this.outputLen), this.finished = !0, this.iHash.digestInto(t), this.oHash.update(t), this.oHash.digestInto(t), this.destroy();
|
|
2301
2301
|
}
|
|
2302
2302
|
digest() {
|
|
2303
2303
|
const t = new Uint8Array(this.oHash.outputLen);
|
|
@@ -2305,35 +2305,35 @@ class Er extends rr {
|
|
|
2305
2305
|
}
|
|
2306
2306
|
_cloneInto(t) {
|
|
2307
2307
|
t || (t = Object.create(Object.getPrototypeOf(this), {}));
|
|
2308
|
-
const { oHash: n, iHash: r, finished: i, destroyed:
|
|
2309
|
-
return t = t, t.finished = i, t.destroyed =
|
|
2308
|
+
const { oHash: n, iHash: r, finished: i, destroyed: s, blockLen: o, outputLen: a } = this;
|
|
2309
|
+
return t = t, t.finished = i, t.destroyed = s, t.blockLen = o, t.outputLen = a, t.oHash = n._cloneInto(t.oHash), t.iHash = r._cloneInto(t.iHash), t;
|
|
2310
2310
|
}
|
|
2311
2311
|
destroy() {
|
|
2312
2312
|
this.destroyed = !0, this.oHash.destroy(), this.iHash.destroy();
|
|
2313
2313
|
}
|
|
2314
2314
|
}
|
|
2315
|
-
const pt = (e, t, n) => new
|
|
2316
|
-
pt.create = (e, t) => new
|
|
2317
|
-
function
|
|
2318
|
-
return
|
|
2315
|
+
const pt = (e, t, n) => new mr(e, t).update(n).digest();
|
|
2316
|
+
pt.create = (e, t) => new mr(e, t);
|
|
2317
|
+
function sn(e, t, n) {
|
|
2318
|
+
return se.hash(e), n === void 0 && (n = new Uint8Array(e.outputLen)), pt(e, Je(n), Je(t));
|
|
2319
2319
|
}
|
|
2320
2320
|
const Lt = new Uint8Array([0]), Rn = new Uint8Array();
|
|
2321
|
-
function
|
|
2322
|
-
if (
|
|
2321
|
+
function Er(e, t, n, r = 32) {
|
|
2322
|
+
if (se.hash(e), se.number(r), r > 255 * e.outputLen)
|
|
2323
2323
|
throw new Error("Length should be <= 255*HashLen");
|
|
2324
2324
|
const i = Math.ceil(r / e.outputLen);
|
|
2325
2325
|
n === void 0 && (n = Rn);
|
|
2326
|
-
const
|
|
2326
|
+
const s = new Uint8Array(i * e.outputLen), o = pt.create(e, t), a = o._cloneInto(), c = new Uint8Array(o.outputLen);
|
|
2327
2327
|
for (let l = 0; l < i; l++)
|
|
2328
|
-
Lt[0] = l + 1, a.update(l === 0 ? Rn : c).update(n).update(Lt).digestInto(c),
|
|
2329
|
-
return
|
|
2328
|
+
Lt[0] = l + 1, a.update(l === 0 ? Rn : c).update(n).update(Lt).digestInto(c), s.set(c, e.outputLen * l), o._cloneInto(a);
|
|
2329
|
+
return o.destroy(), a.destroy(), c.fill(0), Lt.fill(0), s.slice(0, r);
|
|
2330
2330
|
}
|
|
2331
|
-
var
|
|
2331
|
+
var js = Object.defineProperty, D = (e, t) => {
|
|
2332
2332
|
for (var n in t)
|
|
2333
|
-
|
|
2334
|
-
}, $e = Symbol("verified"),
|
|
2333
|
+
js(e, n, { get: t[n], enumerable: !0 });
|
|
2334
|
+
}, $e = Symbol("verified"), Vs = (e) => e instanceof Object;
|
|
2335
2335
|
function xr(e) {
|
|
2336
|
-
if (!
|
|
2336
|
+
if (!Vs(e) || typeof e.kind != "number" || typeof e.content != "string" || typeof e.created_at != "number" || typeof e.pubkey != "string" || !e.pubkey.match(/^[a-f0-9]{64}$/) || !Array.isArray(e.tags))
|
|
2337
2337
|
return !1;
|
|
2338
2338
|
for (let t = 0; t < e.tags.length; t++) {
|
|
2339
2339
|
let n = e.tags[t];
|
|
@@ -2345,38 +2345,38 @@ function xr(e) {
|
|
|
2345
2345
|
}
|
|
2346
2346
|
return !0;
|
|
2347
2347
|
}
|
|
2348
|
-
var
|
|
2349
|
-
D(
|
|
2350
|
-
Queue: () =>
|
|
2348
|
+
var zs = {};
|
|
2349
|
+
D(zs, {
|
|
2350
|
+
Queue: () => Gs,
|
|
2351
2351
|
QueueNode: () => Sr,
|
|
2352
|
-
binarySearch: () =>
|
|
2353
|
-
insertEventIntoAscendingList: () =>
|
|
2354
|
-
insertEventIntoDescendingList: () =>
|
|
2355
|
-
normalizeURL: () =>
|
|
2352
|
+
binarySearch: () => on,
|
|
2353
|
+
insertEventIntoAscendingList: () => Ws,
|
|
2354
|
+
insertEventIntoDescendingList: () => Fs,
|
|
2355
|
+
normalizeURL: () => Zs,
|
|
2356
2356
|
utf8Decoder: () => ie,
|
|
2357
2357
|
utf8Encoder: () => te
|
|
2358
2358
|
});
|
|
2359
2359
|
var ie = new TextDecoder("utf-8"), te = new TextEncoder();
|
|
2360
|
-
function
|
|
2360
|
+
function Zs(e) {
|
|
2361
2361
|
e.indexOf("://") === -1 && (e = "wss://" + e);
|
|
2362
2362
|
let t = new URL(e);
|
|
2363
2363
|
return t.pathname = t.pathname.replace(/\/+/g, "/"), t.pathname.endsWith("/") && (t.pathname = t.pathname.slice(0, -1)), (t.port === "80" && t.protocol === "ws:" || t.port === "443" && t.protocol === "wss:") && (t.port = ""), t.searchParams.sort(), t.hash = "", t.toString();
|
|
2364
2364
|
}
|
|
2365
|
-
function
|
|
2366
|
-
const [n, r] =
|
|
2365
|
+
function Fs(e, t) {
|
|
2366
|
+
const [n, r] = on(e, (i) => t.id === i.id ? 0 : t.created_at === i.created_at ? -1 : i.created_at - t.created_at);
|
|
2367
2367
|
return r || e.splice(n, 0, t), e;
|
|
2368
2368
|
}
|
|
2369
|
-
function
|
|
2370
|
-
const [n, r] =
|
|
2369
|
+
function Ws(e, t) {
|
|
2370
|
+
const [n, r] = on(e, (i) => t.id === i.id ? 0 : t.created_at === i.created_at ? -1 : t.created_at - i.created_at);
|
|
2371
2371
|
return r || e.splice(n, 0, t), e;
|
|
2372
2372
|
}
|
|
2373
|
-
function
|
|
2373
|
+
function on(e, t) {
|
|
2374
2374
|
let n = 0, r = e.length - 1;
|
|
2375
2375
|
for (; n <= r; ) {
|
|
2376
|
-
const i = Math.floor((n + r) / 2),
|
|
2377
|
-
if (
|
|
2376
|
+
const i = Math.floor((n + r) / 2), s = t(e[i]);
|
|
2377
|
+
if (s === 0)
|
|
2378
2378
|
return [i, !0];
|
|
2379
|
-
|
|
2379
|
+
s < 0 ? r = i - 1 : n = i + 1;
|
|
2380
2380
|
}
|
|
2381
2381
|
return [n, !1];
|
|
2382
2382
|
}
|
|
@@ -2387,7 +2387,7 @@ var Sr = class {
|
|
|
2387
2387
|
ee(this, "prev", null);
|
|
2388
2388
|
this.value = e;
|
|
2389
2389
|
}
|
|
2390
|
-
},
|
|
2390
|
+
}, Gs = class {
|
|
2391
2391
|
constructor() {
|
|
2392
2392
|
ee(this, "first");
|
|
2393
2393
|
ee(this, "last");
|
|
@@ -2407,7 +2407,7 @@ var Sr = class {
|
|
|
2407
2407
|
const e = this.first;
|
|
2408
2408
|
return this.first = e.next, e.value;
|
|
2409
2409
|
}
|
|
2410
|
-
},
|
|
2410
|
+
}, Js = class {
|
|
2411
2411
|
generateSecretKey() {
|
|
2412
2412
|
return Ze.utils.randomPrivateKey();
|
|
2413
2413
|
}
|
|
@@ -2432,94 +2432,94 @@ var Sr = class {
|
|
|
2432
2432
|
}
|
|
2433
2433
|
}
|
|
2434
2434
|
};
|
|
2435
|
-
function
|
|
2435
|
+
function Ys(e) {
|
|
2436
2436
|
if (!xr(e))
|
|
2437
2437
|
throw new Error("can't serialize event with wrong or missing properties");
|
|
2438
2438
|
return JSON.stringify([0, e.pubkey, e.created_at, e.kind, e.tags, e.content]);
|
|
2439
2439
|
}
|
|
2440
2440
|
function nt(e) {
|
|
2441
|
-
let t = Se(te.encode(
|
|
2441
|
+
let t = Se(te.encode(Ys(e)));
|
|
2442
2442
|
return M(t);
|
|
2443
2443
|
}
|
|
2444
|
-
var gt = new
|
|
2445
|
-
D(
|
|
2446
|
-
Application: () =>
|
|
2447
|
-
BadgeAward: () =>
|
|
2448
|
-
BadgeDefinition: () =>
|
|
2449
|
-
BlockedRelaysList: () =>
|
|
2450
|
-
BookmarkList: () =>
|
|
2451
|
-
Bookmarksets: () =>
|
|
2452
|
-
Calendar: () =>
|
|
2444
|
+
var gt = new Js(), Me = gt.generateSecretKey, Ce = gt.getPublicKey, ae = gt.finalizeEvent, wt = gt.verifyEvent, Xs = {};
|
|
2445
|
+
D(Xs, {
|
|
2446
|
+
Application: () => Qo,
|
|
2447
|
+
BadgeAward: () => ao,
|
|
2448
|
+
BadgeDefinition: () => Zo,
|
|
2449
|
+
BlockedRelaysList: () => Io,
|
|
2450
|
+
BookmarkList: () => Co,
|
|
2451
|
+
Bookmarksets: () => jo,
|
|
2452
|
+
Calendar: () => oa,
|
|
2453
2453
|
CalendarEventRSVP: () => aa,
|
|
2454
|
-
ChannelCreation: () =>
|
|
2454
|
+
ChannelCreation: () => Cr,
|
|
2455
2455
|
ChannelHideMessage: () => Ir,
|
|
2456
2456
|
ChannelMessage: () => Ur,
|
|
2457
|
-
ChannelMetadata: () =>
|
|
2457
|
+
ChannelMetadata: () => kr,
|
|
2458
2458
|
ChannelMuteUser: () => _r,
|
|
2459
2459
|
ClassifiedListing: () => na,
|
|
2460
2460
|
ClientAuth: () => Lr,
|
|
2461
|
-
CommunitiesList: () =>
|
|
2461
|
+
CommunitiesList: () => ko,
|
|
2462
2462
|
CommunityDefinition: () => ua,
|
|
2463
|
-
CommunityPostApproval: () =>
|
|
2464
|
-
Contacts: () =>
|
|
2465
|
-
CreateOrUpdateProduct: () =>
|
|
2466
|
-
CreateOrUpdateStall: () =>
|
|
2467
|
-
Curationsets: () =>
|
|
2463
|
+
CommunityPostApproval: () => wo,
|
|
2464
|
+
Contacts: () => ro,
|
|
2465
|
+
CreateOrUpdateProduct: () => Go,
|
|
2466
|
+
CreateOrUpdateStall: () => Wo,
|
|
2467
|
+
Curationsets: () => Vo,
|
|
2468
2468
|
Date: () => ia,
|
|
2469
2469
|
DraftClassifiedListing: () => ra,
|
|
2470
|
-
DraftLong: () =>
|
|
2471
|
-
Emojisets: () =>
|
|
2472
|
-
EncryptedDirectMessage: () =>
|
|
2473
|
-
EncryptedDirectMessages: () =>
|
|
2474
|
-
EventDeletion: () =>
|
|
2475
|
-
FileMetadata: () =>
|
|
2476
|
-
FileServerPreference: () => $
|
|
2477
|
-
Followsets: () =>
|
|
2478
|
-
GenericRepost: () =>
|
|
2479
|
-
Genericlists: () =>
|
|
2470
|
+
DraftLong: () => Yo,
|
|
2471
|
+
Emojisets: () => Xo,
|
|
2472
|
+
EncryptedDirectMessage: () => io,
|
|
2473
|
+
EncryptedDirectMessages: () => so,
|
|
2474
|
+
EventDeletion: () => oo,
|
|
2475
|
+
FileMetadata: () => uo,
|
|
2476
|
+
FileServerPreference: () => $o,
|
|
2477
|
+
Followsets: () => Ho,
|
|
2478
|
+
GenericRepost: () => co,
|
|
2479
|
+
Genericlists: () => qo,
|
|
2480
2480
|
HTTPAuth: () => ln,
|
|
2481
2481
|
Handlerinformation: () => la,
|
|
2482
2482
|
Handlerrecommendation: () => ca,
|
|
2483
|
-
Highlights: () =>
|
|
2484
|
-
InterestsList: () =>
|
|
2485
|
-
Interestsets: () =>
|
|
2486
|
-
JobFeedback: () =>
|
|
2487
|
-
JobRequest: () =>
|
|
2488
|
-
JobResult: () =>
|
|
2489
|
-
Label: () =>
|
|
2490
|
-
LightningPubRPC: () =>
|
|
2491
|
-
LiveChatMessage: () =>
|
|
2483
|
+
Highlights: () => Ao,
|
|
2484
|
+
InterestsList: () => Lo,
|
|
2485
|
+
Interestsets: () => Fo,
|
|
2486
|
+
JobFeedback: () => mo,
|
|
2487
|
+
JobRequest: () => bo,
|
|
2488
|
+
JobResult: () => vo,
|
|
2489
|
+
Label: () => go,
|
|
2490
|
+
LightningPubRPC: () => Oo,
|
|
2491
|
+
LiveChatMessage: () => fo,
|
|
2492
2492
|
LiveEvent: () => ea,
|
|
2493
|
-
LongFormArticle: () =>
|
|
2494
|
-
Metadata: () =>
|
|
2495
|
-
Mutelist: () =>
|
|
2496
|
-
NWCWalletInfo: () =>
|
|
2493
|
+
LongFormArticle: () => Jo,
|
|
2494
|
+
Metadata: () => eo,
|
|
2495
|
+
Mutelist: () => Ko,
|
|
2496
|
+
NWCWalletInfo: () => Ro,
|
|
2497
2497
|
NWCWalletRequest: () => Tr,
|
|
2498
|
-
NWCWalletResponse: () =>
|
|
2499
|
-
NostrConnect: () =>
|
|
2500
|
-
OpenTimestamps: () =>
|
|
2501
|
-
Pinlist: () =>
|
|
2502
|
-
ProblemTracker: () =>
|
|
2503
|
-
ProfileBadges: () =>
|
|
2504
|
-
PublicChatsList: () =>
|
|
2498
|
+
NWCWalletResponse: () => Po,
|
|
2499
|
+
NostrConnect: () => Mo,
|
|
2500
|
+
OpenTimestamps: () => lo,
|
|
2501
|
+
Pinlist: () => No,
|
|
2502
|
+
ProblemTracker: () => ho,
|
|
2503
|
+
ProfileBadges: () => zo,
|
|
2504
|
+
PublicChatsList: () => Uo,
|
|
2505
2505
|
Reaction: () => cn,
|
|
2506
|
-
RecommendRelay: () =>
|
|
2507
|
-
RelayList: () =>
|
|
2508
|
-
Relaysets: () =>
|
|
2509
|
-
Report: () =>
|
|
2510
|
-
Reporting: () =>
|
|
2506
|
+
RecommendRelay: () => no,
|
|
2507
|
+
RelayList: () => Bo,
|
|
2508
|
+
Relaysets: () => Do,
|
|
2509
|
+
Report: () => yo,
|
|
2510
|
+
Reporting: () => po,
|
|
2511
2511
|
Repost: () => an,
|
|
2512
|
-
SearchRelaysList: () =>
|
|
2513
|
-
ShortTextNote: () =>
|
|
2514
|
-
Time: () =>
|
|
2515
|
-
UserEmojiList: () =>
|
|
2512
|
+
SearchRelaysList: () => _o,
|
|
2513
|
+
ShortTextNote: () => to,
|
|
2514
|
+
Time: () => sa,
|
|
2515
|
+
UserEmojiList: () => To,
|
|
2516
2516
|
UserStatuses: () => ta,
|
|
2517
|
-
Zap: () =>
|
|
2518
|
-
ZapGoal: () =>
|
|
2519
|
-
ZapRequest: () =>
|
|
2520
|
-
classifyKind: () =>
|
|
2517
|
+
Zap: () => So,
|
|
2518
|
+
ZapGoal: () => Eo,
|
|
2519
|
+
ZapRequest: () => xo,
|
|
2520
|
+
classifyKind: () => Qs,
|
|
2521
2521
|
isEphemeralKind: () => Nr,
|
|
2522
|
-
isParameterizedReplaceableKind: () =>
|
|
2522
|
+
isParameterizedReplaceableKind: () => Br,
|
|
2523
2523
|
isRegularKind: () => Ar,
|
|
2524
2524
|
isReplaceableKind: () => Kr
|
|
2525
2525
|
});
|
|
@@ -2532,13 +2532,13 @@ function Kr(e) {
|
|
|
2532
2532
|
function Nr(e) {
|
|
2533
2533
|
return 2e4 <= e && e < 3e4;
|
|
2534
2534
|
}
|
|
2535
|
-
function
|
|
2535
|
+
function Br(e) {
|
|
2536
2536
|
return 3e4 <= e && e < 4e4;
|
|
2537
2537
|
}
|
|
2538
|
-
function
|
|
2539
|
-
return Ar(e) ? "regular" : Kr(e) ? "replaceable" : Nr(e) ? "ephemeral" :
|
|
2538
|
+
function Qs(e) {
|
|
2539
|
+
return Ar(e) ? "regular" : Kr(e) ? "replaceable" : Nr(e) ? "ephemeral" : Br(e) ? "parameterized" : "unknown";
|
|
2540
2540
|
}
|
|
2541
|
-
var
|
|
2541
|
+
var eo = 0, to = 1, no = 2, ro = 3, io = 4, so = 4, oo = 5, an = 6, cn = 7, ao = 8, co = 16, Cr = 40, kr = 41, Ur = 42, Ir = 43, _r = 44, lo = 1040, uo = 1063, fo = 1311, ho = 1971, yo = 1984, po = 1984, go = 1985, wo = 4550, bo = 5999, vo = 6999, mo = 7e3, Eo = 9041, xo = 9734, So = 9735, Ao = 9802, Ko = 1e4, No = 10001, Bo = 10002, Co = 10003, ko = 10004, Uo = 10005, Io = 10006, _o = 10007, Lo = 10015, To = 10030, $o = 10096, Ro = 13194, Oo = 21e3, Lr = 22242, Tr = 23194, Po = 23195, Mo = 24133, ln = 27235, Ho = 3e4, qo = 30001, Do = 30002, jo = 30003, Vo = 30004, zo = 30008, Zo = 30009, Fo = 30015, Wo = 30017, Go = 30018, Jo = 30023, Yo = 30024, Xo = 30030, Qo = 30078, ea = 30311, ta = 30315, na = 30402, ra = 30403, ia = 31922, sa = 31923, oa = 31924, aa = 31925, ca = 31989, la = 31990, ua = 34550, fa = {};
|
|
2542
2542
|
D(fa, {
|
|
2543
2543
|
getHex64: () => un,
|
|
2544
2544
|
getInt: () => $r,
|
|
@@ -2552,8 +2552,8 @@ function un(e, t) {
|
|
|
2552
2552
|
return e.slice(i, i + 64);
|
|
2553
2553
|
}
|
|
2554
2554
|
function $r(e, t) {
|
|
2555
|
-
let n = t.length, r = e.indexOf(`"${t}":`) + n + 3, i = e.slice(r),
|
|
2556
|
-
return parseInt(i.slice(0,
|
|
2555
|
+
let n = t.length, r = e.indexOf(`"${t}":`) + n + 3, i = e.slice(r), s = Math.min(i.indexOf(","), i.indexOf("}"));
|
|
2556
|
+
return parseInt(i.slice(0, s), 10);
|
|
2557
2557
|
}
|
|
2558
2558
|
function ha(e) {
|
|
2559
2559
|
let t = e.slice(0, 22).indexOf('"EVENT"');
|
|
@@ -2565,8 +2565,8 @@ function ha(e) {
|
|
|
2565
2565
|
let r = t + 7 + 1 + n, i = e.slice(r + 1, 80).indexOf('"');
|
|
2566
2566
|
if (i === -1)
|
|
2567
2567
|
return null;
|
|
2568
|
-
let
|
|
2569
|
-
return e.slice(r + 1,
|
|
2568
|
+
let s = r + 1 + i;
|
|
2569
|
+
return e.slice(r + 1, s);
|
|
2570
2570
|
}
|
|
2571
2571
|
function da(e, t) {
|
|
2572
2572
|
return t === un(e, "id");
|
|
@@ -2613,16 +2613,16 @@ D(We, {
|
|
|
2613
2613
|
noteEncode: () => Sa,
|
|
2614
2614
|
nprofileEncode: () => Aa,
|
|
2615
2615
|
npubEncode: () => xa,
|
|
2616
|
-
nrelayEncode: () =>
|
|
2617
|
-
nsecEncode: () =>
|
|
2616
|
+
nrelayEncode: () => Ba,
|
|
2617
|
+
nsecEncode: () => Ea
|
|
2618
2618
|
});
|
|
2619
2619
|
var fn = 5e3, Rr = /[\x21-\x7E]{1,83}1[023456789acdefghjklmnpqrstuvwxyz]{6,}/;
|
|
2620
|
-
function
|
|
2620
|
+
function ma(e) {
|
|
2621
2621
|
const t = new Uint8Array(4);
|
|
2622
2622
|
return t[0] = e >> 24 & 255, t[1] = e >> 16 & 255, t[2] = e >> 8 & 255, t[3] = e & 255, t;
|
|
2623
2623
|
}
|
|
2624
2624
|
function bt(e) {
|
|
2625
|
-
var i,
|
|
2625
|
+
var i, s, o, a, c, l, f, u;
|
|
2626
2626
|
let { prefix: t, words: n } = je.decode(e, fn), r = new Uint8Array(je.fromWords(n));
|
|
2627
2627
|
switch (t) {
|
|
2628
2628
|
case "nprofile": {
|
|
@@ -2641,7 +2641,7 @@ function bt(e) {
|
|
|
2641
2641
|
}
|
|
2642
2642
|
case "nevent": {
|
|
2643
2643
|
let d = et(r);
|
|
2644
|
-
if (!((
|
|
2644
|
+
if (!((s = d[0]) != null && s[0]))
|
|
2645
2645
|
throw new Error("missing TLV 0 for nevent");
|
|
2646
2646
|
if (d[0][0].length !== 32)
|
|
2647
2647
|
throw new Error("TLV 0 should be 32 bytes");
|
|
@@ -2654,7 +2654,7 @@ function bt(e) {
|
|
|
2654
2654
|
data: {
|
|
2655
2655
|
id: M(d[0][0]),
|
|
2656
2656
|
relays: d[1] ? d[1].map((p) => ie.decode(p)) : [],
|
|
2657
|
-
author: (
|
|
2657
|
+
author: (o = d[2]) != null && o[0] ? M(d[2][0]) : void 0,
|
|
2658
2658
|
kind: (a = d[3]) != null && a[0] ? parseInt(M(d[3][0]), 16) : void 0
|
|
2659
2659
|
}
|
|
2660
2660
|
};
|
|
@@ -2702,14 +2702,14 @@ function bt(e) {
|
|
|
2702
2702
|
function et(e) {
|
|
2703
2703
|
let t = {}, n = e;
|
|
2704
2704
|
for (; n.length > 0; ) {
|
|
2705
|
-
let r = n[0], i = n[1],
|
|
2706
|
-
if (n = n.slice(2 + i),
|
|
2705
|
+
let r = n[0], i = n[1], s = n.slice(2, 2 + i);
|
|
2706
|
+
if (n = n.slice(2 + i), s.length < i)
|
|
2707
2707
|
throw new Error(`not enough data to read on TLV ${r}`);
|
|
2708
|
-
t[r] = t[r] || [], t[r].push(
|
|
2708
|
+
t[r] = t[r] || [], t[r].push(s);
|
|
2709
2709
|
}
|
|
2710
2710
|
return t;
|
|
2711
2711
|
}
|
|
2712
|
-
function
|
|
2712
|
+
function Ea(e) {
|
|
2713
2713
|
return vt("nsec", e);
|
|
2714
2714
|
}
|
|
2715
2715
|
function xa(e) {
|
|
@@ -2726,7 +2726,7 @@ function vt(e, t) {
|
|
|
2726
2726
|
return Xe(e, t);
|
|
2727
2727
|
}
|
|
2728
2728
|
function Aa(e) {
|
|
2729
|
-
let t =
|
|
2729
|
+
let t = mt({
|
|
2730
2730
|
0: [W(e.pubkey)],
|
|
2731
2731
|
1: (e.relays || []).map((n) => te.encode(n))
|
|
2732
2732
|
});
|
|
@@ -2734,8 +2734,8 @@ function Aa(e) {
|
|
|
2734
2734
|
}
|
|
2735
2735
|
function Ka(e) {
|
|
2736
2736
|
let t;
|
|
2737
|
-
e.kind !== void 0 && (t =
|
|
2738
|
-
let n =
|
|
2737
|
+
e.kind !== void 0 && (t = ma(e.kind));
|
|
2738
|
+
let n = mt({
|
|
2739
2739
|
0: [W(e.id)],
|
|
2740
2740
|
1: (e.relays || []).map((r) => te.encode(r)),
|
|
2741
2741
|
2: e.author ? [W(e.author)] : [],
|
|
@@ -2746,7 +2746,7 @@ function Ka(e) {
|
|
|
2746
2746
|
function Na(e) {
|
|
2747
2747
|
let t = new ArrayBuffer(4);
|
|
2748
2748
|
new DataView(t).setUint32(0, e.kind, !1);
|
|
2749
|
-
let n =
|
|
2749
|
+
let n = mt({
|
|
2750
2750
|
0: [te.encode(e.identifier)],
|
|
2751
2751
|
1: (e.relays || []).map((r) => te.encode(r)),
|
|
2752
2752
|
2: [W(e.pubkey)],
|
|
@@ -2754,34 +2754,34 @@ function Na(e) {
|
|
|
2754
2754
|
});
|
|
2755
2755
|
return Xe("naddr", n);
|
|
2756
2756
|
}
|
|
2757
|
-
function
|
|
2758
|
-
let t =
|
|
2757
|
+
function Ba(e) {
|
|
2758
|
+
let t = mt({
|
|
2759
2759
|
0: [te.encode(e)]
|
|
2760
2760
|
});
|
|
2761
2761
|
return Xe("nrelay", t);
|
|
2762
2762
|
}
|
|
2763
|
-
function
|
|
2763
|
+
function mt(e) {
|
|
2764
2764
|
let t = [];
|
|
2765
2765
|
return Object.entries(e).reverse().forEach(([n, r]) => {
|
|
2766
2766
|
r.forEach((i) => {
|
|
2767
|
-
let
|
|
2768
|
-
|
|
2767
|
+
let s = new Uint8Array(i.length + 2);
|
|
2768
|
+
s.set([parseInt(n)], 0), s.set([i.length], 1), s.set(i, 2), t.push(s);
|
|
2769
2769
|
});
|
|
2770
2770
|
}), dt(...t);
|
|
2771
2771
|
}
|
|
2772
|
-
var
|
|
2773
|
-
D(
|
|
2774
|
-
decrypt: () =>
|
|
2772
|
+
var Ca = {};
|
|
2773
|
+
D(Ca, {
|
|
2774
|
+
decrypt: () => ka,
|
|
2775
2775
|
encrypt: () => Or
|
|
2776
2776
|
});
|
|
2777
2777
|
async function Or(e, t, n) {
|
|
2778
|
-
const r = e instanceof Uint8Array ? M(e) : e, i = Ue.getSharedSecret(r, "02" + t),
|
|
2779
|
-
let
|
|
2778
|
+
const r = e instanceof Uint8Array ? M(e) : e, i = Ue.getSharedSecret(r, "02" + t), s = Pr(i);
|
|
2779
|
+
let o = Uint8Array.from(sr(16)), a = te.encode(n), c = pr(s, o).encrypt(a), l = ue.encode(new Uint8Array(c)), f = ue.encode(new Uint8Array(o.buffer));
|
|
2780
2780
|
return `${l}?iv=${f}`;
|
|
2781
2781
|
}
|
|
2782
|
-
async function
|
|
2782
|
+
async function ka(e, t, n) {
|
|
2783
2783
|
const r = e instanceof Uint8Array ? M(e) : e;
|
|
2784
|
-
let [i,
|
|
2784
|
+
let [i, s] = n.split("?iv="), o = Ue.getSharedSecret(r, "02" + t), a = Pr(o), c = ue.decode(s), l = ue.decode(i), f = pr(a, c).decrypt(l);
|
|
2785
2785
|
return ie.decode(f);
|
|
2786
2786
|
}
|
|
2787
2787
|
function Pr(e) {
|
|
@@ -2795,32 +2795,32 @@ D(Ua, {
|
|
|
2795
2795
|
searchDomain: () => _a,
|
|
2796
2796
|
useFetchImplementation: () => Ia
|
|
2797
2797
|
});
|
|
2798
|
-
var Mr = /^(?:([\w.+-]+)@)?([\w_-]+(\.[\w_-]+)+)$/,
|
|
2798
|
+
var Mr = /^(?:([\w.+-]+)@)?([\w_-]+(\.[\w_-]+)+)$/, Et;
|
|
2799
2799
|
try {
|
|
2800
|
-
|
|
2800
|
+
Et = fetch;
|
|
2801
2801
|
} catch {
|
|
2802
2802
|
}
|
|
2803
2803
|
function Ia(e) {
|
|
2804
|
-
|
|
2804
|
+
Et = e;
|
|
2805
2805
|
}
|
|
2806
2806
|
async function _a(e, t = "") {
|
|
2807
2807
|
try {
|
|
2808
2808
|
const n = `https://${e}/.well-known/nostr.json?name=${t}`;
|
|
2809
|
-
return (await (await
|
|
2809
|
+
return (await (await Et(n, { redirect: "error" })).json()).names;
|
|
2810
2810
|
} catch {
|
|
2811
2811
|
return {};
|
|
2812
2812
|
}
|
|
2813
2813
|
}
|
|
2814
2814
|
async function Hr(e) {
|
|
2815
|
-
var
|
|
2815
|
+
var s;
|
|
2816
2816
|
const t = e.match(Mr);
|
|
2817
2817
|
if (!t)
|
|
2818
2818
|
return null;
|
|
2819
2819
|
const [n, r = "_", i] = t;
|
|
2820
2820
|
try {
|
|
2821
|
-
const
|
|
2821
|
+
const o = `https://${i}/.well-known/nostr.json?name=${r}`, a = await (await Et(o, { redirect: "error" })).json();
|
|
2822
2822
|
let c = a.names[r];
|
|
2823
|
-
return c ? { pubkey: c, relays: (
|
|
2823
|
+
return c ? { pubkey: c, relays: (s = a.relays) == null ? void 0 : s[c] } : null;
|
|
2824
2824
|
} catch {
|
|
2825
2825
|
return null;
|
|
2826
2826
|
}
|
|
@@ -2846,8 +2846,8 @@ function $a(e) {
|
|
|
2846
2846
|
relays: r[2] ? [r[2]] : []
|
|
2847
2847
|
});
|
|
2848
2848
|
for (let r = 0; r < n.length; r++) {
|
|
2849
|
-
const i = n[r], [
|
|
2850
|
-
id:
|
|
2849
|
+
const i = n[r], [s, o, a, c] = i, l = {
|
|
2850
|
+
id: o,
|
|
2851
2851
|
relays: a ? [a] : []
|
|
2852
2852
|
}, f = r === 0, u = r === n.length - 1;
|
|
2853
2853
|
if (c === "root") {
|
|
@@ -2914,8 +2914,8 @@ function Ha(e, t) {
|
|
|
2914
2914
|
let n = 0;
|
|
2915
2915
|
const r = e, i = ["nonce", n.toString(), t.toString()];
|
|
2916
2916
|
for (r.tags.push(i); ; ) {
|
|
2917
|
-
const
|
|
2918
|
-
if (
|
|
2917
|
+
const s = Math.floor((/* @__PURE__ */ new Date()).getTime() / 1e3);
|
|
2918
|
+
if (s !== r.created_at && (n = 0, r.created_at = s), i[1] = (++n).toString(), r.id = nt(r), Dr(r.id) >= t)
|
|
2919
2919
|
break;
|
|
2920
2920
|
}
|
|
2921
2921
|
return r;
|
|
@@ -3064,7 +3064,7 @@ var ec = (e, t) => {
|
|
|
3064
3064
|
return;
|
|
3065
3065
|
return ae(
|
|
3066
3066
|
{
|
|
3067
|
-
kind:
|
|
3067
|
+
kind: Cr,
|
|
3068
3068
|
tags: [...e.tags ?? []],
|
|
3069
3069
|
content: n,
|
|
3070
3070
|
created_at: e.created_at
|
|
@@ -3081,7 +3081,7 @@ var ec = (e, t) => {
|
|
|
3081
3081
|
return;
|
|
3082
3082
|
return ae(
|
|
3083
3083
|
{
|
|
3084
|
-
kind:
|
|
3084
|
+
kind: kr,
|
|
3085
3085
|
tags: [["e", e.channel_create_event_id], ...e.tags ?? []],
|
|
3086
3086
|
content: n,
|
|
3087
3087
|
created_at: e.created_at
|
|
@@ -3133,15 +3133,15 @@ var ec = (e, t) => {
|
|
|
3133
3133
|
},
|
|
3134
3134
|
t
|
|
3135
3135
|
);
|
|
3136
|
-
},
|
|
3137
|
-
D(
|
|
3136
|
+
}, sc = {};
|
|
3137
|
+
D(sc, {
|
|
3138
3138
|
EMOJI_SHORTCODE_REGEX: () => Vr,
|
|
3139
|
-
matchAll: () =>
|
|
3139
|
+
matchAll: () => oc,
|
|
3140
3140
|
regex: () => dn,
|
|
3141
3141
|
replaceAll: () => ac
|
|
3142
3142
|
});
|
|
3143
3143
|
var Vr = /:(\w+):/, dn = () => new RegExp(`\\B${Vr.source}\\B`, "g");
|
|
3144
|
-
function*
|
|
3144
|
+
function* oc(e) {
|
|
3145
3145
|
const t = e.matchAll(dn());
|
|
3146
3146
|
for (const n of t)
|
|
3147
3147
|
try {
|
|
@@ -3191,10 +3191,10 @@ D(j, {
|
|
|
3191
3191
|
var zr = 1, Zr = 65535;
|
|
3192
3192
|
function Fr(e, t) {
|
|
3193
3193
|
const n = Ue.getSharedSecret(e, "02" + t).subarray(1, 33);
|
|
3194
|
-
return
|
|
3194
|
+
return sn(Se, n, "nip44-v2");
|
|
3195
3195
|
}
|
|
3196
3196
|
function Wr(e, t) {
|
|
3197
|
-
const n =
|
|
3197
|
+
const n = Er(Se, e, t, 76);
|
|
3198
3198
|
return {
|
|
3199
3199
|
chacha_key: n.subarray(0, 32),
|
|
3200
3200
|
chacha_nonce: n.subarray(32, 44),
|
|
@@ -3242,8 +3242,8 @@ function yc(e) {
|
|
|
3242
3242
|
let n;
|
|
3243
3243
|
try {
|
|
3244
3244
|
n = ue.decode(e);
|
|
3245
|
-
} catch (
|
|
3246
|
-
throw new Error("invalid base64: " +
|
|
3245
|
+
} catch (s) {
|
|
3246
|
+
throw new Error("invalid base64: " + s.message);
|
|
3247
3247
|
}
|
|
3248
3248
|
const r = n.length;
|
|
3249
3249
|
if (r < 99 || r > 65603)
|
|
@@ -3257,15 +3257,15 @@ function yc(e) {
|
|
|
3257
3257
|
mac: n.subarray(-32)
|
|
3258
3258
|
};
|
|
3259
3259
|
}
|
|
3260
|
-
function Jr(e, t, n =
|
|
3261
|
-
const { chacha_key: r, chacha_nonce: i, hmac_key:
|
|
3260
|
+
function Jr(e, t, n = sr(32)) {
|
|
3261
|
+
const { chacha_key: r, chacha_nonce: i, hmac_key: s } = Wr(t, n), o = hc(e), a = vr(r, i, o), c = Gr(s, a, n);
|
|
3262
3262
|
return ue.encode(dt(new Uint8Array([2]), n, a, c));
|
|
3263
3263
|
}
|
|
3264
3264
|
function Yr(e, t) {
|
|
3265
|
-
const { nonce: n, ciphertext: r, mac: i } = yc(e), { chacha_key:
|
|
3266
|
-
if (!
|
|
3265
|
+
const { nonce: n, ciphertext: r, mac: i } = yc(e), { chacha_key: s, chacha_nonce: o, hmac_key: a } = Wr(t, n), c = Gr(a, r, n);
|
|
3266
|
+
if (!As(c, i))
|
|
3267
3267
|
throw new Error("invalid MAC");
|
|
3268
|
-
const l = vr(
|
|
3268
|
+
const l = vr(s, o, r);
|
|
3269
3269
|
return dc(l);
|
|
3270
3270
|
}
|
|
3271
3271
|
var pc = {
|
|
@@ -3281,10 +3281,10 @@ D(gc, {
|
|
|
3281
3281
|
parseConnectionString: () => wc
|
|
3282
3282
|
});
|
|
3283
3283
|
function wc(e) {
|
|
3284
|
-
const { pathname: t, searchParams: n } = new URL(e), r = t, i = n.get("relay"),
|
|
3285
|
-
if (!r || !i || !
|
|
3284
|
+
const { pathname: t, searchParams: n } = new URL(e), r = t, i = n.get("relay"), s = n.get("secret");
|
|
3285
|
+
if (!r || !i || !s)
|
|
3286
3286
|
throw new Error("invalid connection string");
|
|
3287
|
-
return { pubkey: r, relay: i, secret:
|
|
3287
|
+
return { pubkey: r, relay: i, secret: s };
|
|
3288
3288
|
}
|
|
3289
3289
|
async function bc(e, t, n) {
|
|
3290
3290
|
const i = await Or(t, e, JSON.stringify({
|
|
@@ -3292,20 +3292,20 @@ async function bc(e, t, n) {
|
|
|
3292
3292
|
params: {
|
|
3293
3293
|
invoice: n
|
|
3294
3294
|
}
|
|
3295
|
-
})),
|
|
3295
|
+
})), s = {
|
|
3296
3296
|
kind: Tr,
|
|
3297
3297
|
created_at: Math.round(Date.now() / 1e3),
|
|
3298
3298
|
content: i,
|
|
3299
3299
|
tags: [["p", e]]
|
|
3300
3300
|
};
|
|
3301
|
-
return ae(
|
|
3301
|
+
return ae(s, t);
|
|
3302
3302
|
}
|
|
3303
3303
|
var vc = {};
|
|
3304
3304
|
D(vc, {
|
|
3305
|
-
getZapEndpoint: () =>
|
|
3305
|
+
getZapEndpoint: () => Ec,
|
|
3306
3306
|
makeZapReceipt: () => Ac,
|
|
3307
3307
|
makeZapRequest: () => xc,
|
|
3308
|
-
useFetchImplementation: () =>
|
|
3308
|
+
useFetchImplementation: () => mc,
|
|
3309
3309
|
validateZapRequest: () => Sc
|
|
3310
3310
|
});
|
|
3311
3311
|
var gn;
|
|
@@ -3313,23 +3313,23 @@ try {
|
|
|
3313
3313
|
gn = fetch;
|
|
3314
3314
|
} catch {
|
|
3315
3315
|
}
|
|
3316
|
-
function
|
|
3316
|
+
function mc(e) {
|
|
3317
3317
|
gn = e;
|
|
3318
3318
|
}
|
|
3319
|
-
async function
|
|
3319
|
+
async function Ec(e) {
|
|
3320
3320
|
try {
|
|
3321
3321
|
let t = "", { lud06: n, lud16: r } = JSON.parse(e.content);
|
|
3322
3322
|
if (n) {
|
|
3323
|
-
let { words:
|
|
3323
|
+
let { words: o } = je.decode(n, 1e3), a = je.fromWords(o);
|
|
3324
3324
|
t = ie.decode(a);
|
|
3325
3325
|
} else if (r) {
|
|
3326
|
-
let [
|
|
3327
|
-
t = new URL(`/.well-known/lnurlp/${
|
|
3326
|
+
let [o, a] = r.split("@");
|
|
3327
|
+
t = new URL(`/.well-known/lnurlp/${o}`, `https://${a}`).toString();
|
|
3328
3328
|
} else
|
|
3329
3329
|
return null;
|
|
3330
|
-
let
|
|
3331
|
-
if (
|
|
3332
|
-
return
|
|
3330
|
+
let s = await (await gn(t)).json();
|
|
3331
|
+
if (s.allowsNostr && s.nostrPubkey)
|
|
3332
|
+
return s.callback;
|
|
3333
3333
|
} catch {
|
|
3334
3334
|
}
|
|
3335
3335
|
return null;
|
|
@@ -3345,7 +3345,7 @@ function xc({
|
|
|
3345
3345
|
throw new Error("amount not given");
|
|
3346
3346
|
if (!e)
|
|
3347
3347
|
throw new Error("profile not given");
|
|
3348
|
-
let
|
|
3348
|
+
let s = {
|
|
3349
3349
|
kind: 9734,
|
|
3350
3350
|
created_at: Math.round(Date.now() / 1e3),
|
|
3351
3351
|
content: i,
|
|
@@ -3355,7 +3355,7 @@ function xc({
|
|
|
3355
3355
|
["relays", ...r]
|
|
3356
3356
|
]
|
|
3357
3357
|
};
|
|
3358
|
-
return t &&
|
|
3358
|
+
return t && s.tags.push(["e", t]), s;
|
|
3359
3359
|
}
|
|
3360
3360
|
function Sc(e) {
|
|
3361
3361
|
let t;
|
|
@@ -3368,13 +3368,13 @@ function Sc(e) {
|
|
|
3368
3368
|
return "Zap request is not a valid Nostr event.";
|
|
3369
3369
|
if (!wt(t))
|
|
3370
3370
|
return "Invalid signature on zap request.";
|
|
3371
|
-
let n = t.tags.find(([
|
|
3371
|
+
let n = t.tags.find(([s, o]) => s === "p" && o);
|
|
3372
3372
|
if (!n)
|
|
3373
3373
|
return "Zap request doesn't have a 'p' tag.";
|
|
3374
3374
|
if (!n[1].match(/^[a-f0-9]{64}$/))
|
|
3375
3375
|
return "Zap request 'p' tag is not valid hex.";
|
|
3376
|
-
let r = t.tags.find(([
|
|
3377
|
-
return r && !r[1].match(/^[a-f0-9]{64}$/) ? "Zap request 'e' tag is not valid hex." : t.tags.find(([
|
|
3376
|
+
let r = t.tags.find(([s, o]) => s === "e" && o);
|
|
3377
|
+
return r && !r[1].match(/^[a-f0-9]{64}$/) ? "Zap request 'e' tag is not valid hex." : t.tags.find(([s, o]) => s === "relays" && o) ? null : "Zap request doesn't have a 'relays' tag.";
|
|
3378
3378
|
}
|
|
3379
3379
|
function Ac({
|
|
3380
3380
|
zapRequest: e,
|
|
@@ -3382,30 +3382,30 @@ function Ac({
|
|
|
3382
3382
|
bolt11: n,
|
|
3383
3383
|
paidAt: r
|
|
3384
3384
|
}) {
|
|
3385
|
-
let i = JSON.parse(e),
|
|
3385
|
+
let i = JSON.parse(e), s = i.tags.filter(([a]) => a === "e" || a === "p" || a === "a"), o = {
|
|
3386
3386
|
kind: 9735,
|
|
3387
3387
|
created_at: Math.round(r.getTime() / 1e3),
|
|
3388
3388
|
content: "",
|
|
3389
|
-
tags: [...
|
|
3389
|
+
tags: [...s, ["P", i.pubkey], ["bolt11", n], ["description", e]]
|
|
3390
3390
|
};
|
|
3391
|
-
return t &&
|
|
3391
|
+
return t && o.tags.push(["preimage", t]), o;
|
|
3392
3392
|
}
|
|
3393
3393
|
var Kc = {};
|
|
3394
3394
|
D(Kc, {
|
|
3395
3395
|
getToken: () => Nc,
|
|
3396
3396
|
hashPayload: () => wn,
|
|
3397
3397
|
unpackEventFromToken: () => Qr,
|
|
3398
|
-
validateEvent: () =>
|
|
3398
|
+
validateEvent: () => si,
|
|
3399
3399
|
validateEventKind: () => ti,
|
|
3400
3400
|
validateEventMethodTag: () => ri,
|
|
3401
3401
|
validateEventPayloadTag: () => ii,
|
|
3402
3402
|
validateEventTimestamp: () => ei,
|
|
3403
3403
|
validateEventUrlTag: () => ni,
|
|
3404
|
-
validateToken: () =>
|
|
3404
|
+
validateToken: () => Bc
|
|
3405
3405
|
});
|
|
3406
3406
|
var Xr = "Nostr ";
|
|
3407
3407
|
async function Nc(e, t, n, r = !1, i) {
|
|
3408
|
-
const
|
|
3408
|
+
const s = {
|
|
3409
3409
|
kind: ln,
|
|
3410
3410
|
tags: [
|
|
3411
3411
|
["u", e],
|
|
@@ -3414,16 +3414,16 @@ async function Nc(e, t, n, r = !1, i) {
|
|
|
3414
3414
|
created_at: Math.round((/* @__PURE__ */ new Date()).getTime() / 1e3),
|
|
3415
3415
|
content: ""
|
|
3416
3416
|
};
|
|
3417
|
-
i &&
|
|
3418
|
-
const
|
|
3419
|
-
return (r ? Xr : "") + ue.encode(te.encode(JSON.stringify(
|
|
3417
|
+
i && s.tags.push(["payload", wn(i)]);
|
|
3418
|
+
const o = await n(s);
|
|
3419
|
+
return (r ? Xr : "") + ue.encode(te.encode(JSON.stringify(o)));
|
|
3420
3420
|
}
|
|
3421
|
-
async function
|
|
3422
|
-
const r = await Qr(e).catch((
|
|
3423
|
-
throw
|
|
3421
|
+
async function Bc(e, t, n) {
|
|
3422
|
+
const r = await Qr(e).catch((s) => {
|
|
3423
|
+
throw s;
|
|
3424
3424
|
});
|
|
3425
|
-
return await
|
|
3426
|
-
throw
|
|
3425
|
+
return await si(r, t, n).catch((s) => {
|
|
3426
|
+
throw s;
|
|
3427
3427
|
});
|
|
3428
3428
|
}
|
|
3429
3429
|
async function Qr(e) {
|
|
@@ -3460,7 +3460,7 @@ function ii(e, t) {
|
|
|
3460
3460
|
const r = wn(t);
|
|
3461
3461
|
return n.length > 0 && n[1] === r;
|
|
3462
3462
|
}
|
|
3463
|
-
async function
|
|
3463
|
+
async function si(e, t, n, r) {
|
|
3464
3464
|
if (!wt(e))
|
|
3465
3465
|
throw new Error("Invalid nostr event, signature invalid");
|
|
3466
3466
|
if (!ti(e))
|
|
@@ -3476,7 +3476,7 @@ async function oi(e, t, n, r) {
|
|
|
3476
3476
|
return !0;
|
|
3477
3477
|
}
|
|
3478
3478
|
const He = 4, On = 30078, Rc = 100;
|
|
3479
|
-
var
|
|
3479
|
+
var Cc = /* @__PURE__ */ ((e) => (e[e.Us = 0] = "Us", e[e.Them = 1] = "Them", e))(Cc || {});
|
|
3480
3480
|
function Oc(e) {
|
|
3481
3481
|
return JSON.stringify({
|
|
3482
3482
|
rootKey: M(e.rootKey),
|
|
@@ -3556,15 +3556,15 @@ async function* Mc(e) {
|
|
|
3556
3556
|
}
|
|
3557
3557
|
}
|
|
3558
3558
|
function Re(e, t = new Uint8Array(32), n = 1) {
|
|
3559
|
-
const r =
|
|
3560
|
-
for (let
|
|
3561
|
-
i.push(
|
|
3559
|
+
const r = sn(Se, e, t), i = [];
|
|
3560
|
+
for (let s = 1; s <= n; s++)
|
|
3561
|
+
i.push(Er(Se, r, new Uint8Array([s]), 32));
|
|
3562
3562
|
return i;
|
|
3563
3563
|
}
|
|
3564
3564
|
function Tt(e, t) {
|
|
3565
3565
|
return `${e}:${t}`;
|
|
3566
3566
|
}
|
|
3567
|
-
const
|
|
3567
|
+
const kc = 1e3;
|
|
3568
3568
|
class ct {
|
|
3569
3569
|
// 1. CHANNEL PUBLIC INTERFACE
|
|
3570
3570
|
constructor(t, n) {
|
|
@@ -3585,12 +3585,12 @@ class ct {
|
|
|
3585
3585
|
* @param name Optional name for the channel (for debugging)
|
|
3586
3586
|
* @returns A new Channel instance
|
|
3587
3587
|
*/
|
|
3588
|
-
static init(t, n, r, i,
|
|
3589
|
-
const a = Me(), [c, l] = Re(
|
|
3588
|
+
static init(t, n, r, i, s, o) {
|
|
3589
|
+
const a = Me(), [c, l] = Re(s, j.getConversationKey(a, n), 2);
|
|
3590
3590
|
let f, u;
|
|
3591
|
-
i ? (f = { publicKey:
|
|
3591
|
+
i ? (f = { publicKey: Ce(r), privateKey: r }, u = { publicKey: Ce(a), privateKey: a }) : u = { publicKey: Ce(r), privateKey: r };
|
|
3592
3592
|
const d = {
|
|
3593
|
-
rootKey: i ? c :
|
|
3593
|
+
rootKey: i ? c : s,
|
|
3594
3594
|
theirNostrPublicKey: n,
|
|
3595
3595
|
ourCurrentNostrKey: f,
|
|
3596
3596
|
ourNextNostrKey: u,
|
|
@@ -3602,7 +3602,7 @@ class ct {
|
|
|
3602
3602
|
skippedMessageKeys: {},
|
|
3603
3603
|
skippedHeaderKeys: {}
|
|
3604
3604
|
}, p = new ct(t, d);
|
|
3605
|
-
return
|
|
3605
|
+
return o && (p.name = o), p;
|
|
3606
3606
|
}
|
|
3607
3607
|
/**
|
|
3608
3608
|
* Sends an encrypted message through the channel
|
|
@@ -3613,11 +3613,11 @@ class ct {
|
|
|
3613
3613
|
send(t) {
|
|
3614
3614
|
if (!this.state.theirNostrPublicKey || !this.state.ourCurrentNostrKey)
|
|
3615
3615
|
throw new Error("we are not the initiator, so we can't send the first message");
|
|
3616
|
-
const [n, r] = this.ratchetEncrypt(t), i = j.getConversationKey(this.state.ourCurrentNostrKey.privateKey, this.state.theirNostrPublicKey),
|
|
3616
|
+
const [n, r] = this.ratchetEncrypt(t), i = j.getConversationKey(this.state.ourCurrentNostrKey.privateKey, this.state.theirNostrPublicKey), s = j.encrypt(JSON.stringify(n), i);
|
|
3617
3617
|
return ae({
|
|
3618
3618
|
content: r,
|
|
3619
3619
|
kind: He,
|
|
3620
|
-
tags: [["header",
|
|
3620
|
+
tags: [["header", s]],
|
|
3621
3621
|
created_at: Math.floor(Date.now() / 1e3)
|
|
3622
3622
|
}, this.state.ourCurrentNostrKey.privateKey);
|
|
3623
3623
|
}
|
|
@@ -3651,13 +3651,13 @@ class ct {
|
|
|
3651
3651
|
const i = this.trySkippedMessageKeys(t, n, r);
|
|
3652
3652
|
if (i) return i;
|
|
3653
3653
|
this.skipMessageKeys(t.number, r);
|
|
3654
|
-
const [
|
|
3655
|
-
this.state.receivingChainKey =
|
|
3654
|
+
const [s, o] = Re(this.state.receivingChainKey, new Uint8Array([1]), 2);
|
|
3655
|
+
this.state.receivingChainKey = s, this.state.receivingChainMessageNumber++;
|
|
3656
3656
|
try {
|
|
3657
|
-
return j.decrypt(n,
|
|
3657
|
+
return j.decrypt(n, o);
|
|
3658
3658
|
} catch (a) {
|
|
3659
3659
|
throw console.error(this.name, "Decryption failed:", a, {
|
|
3660
|
-
messageKey: M(
|
|
3660
|
+
messageKey: M(o).slice(0, 4),
|
|
3661
3661
|
receivingChainKey: M(this.state.receivingChainKey).slice(0, 4),
|
|
3662
3662
|
sendingChainKey: this.state.sendingChainKey && M(this.state.sendingChainKey).slice(0, 4),
|
|
3663
3663
|
rootKey: M(this.state.rootKey).slice(0, 4)
|
|
@@ -3668,40 +3668,40 @@ class ct {
|
|
|
3668
3668
|
this.state.previousSendingChainMessageCount = this.state.sendingChainMessageNumber, this.state.sendingChainMessageNumber = 0, this.state.receivingChainMessageNumber = 0, this.state.theirNostrPublicKey = t;
|
|
3669
3669
|
const n = j.getConversationKey(this.state.ourNextNostrKey.privateKey, this.state.theirNostrPublicKey), [r, i] = Re(this.state.rootKey, n, 2);
|
|
3670
3670
|
this.state.receivingChainKey = i, this.state.ourCurrentNostrKey = this.state.ourNextNostrKey;
|
|
3671
|
-
const
|
|
3671
|
+
const s = Me();
|
|
3672
3672
|
this.state.ourNextNostrKey = {
|
|
3673
|
-
publicKey:
|
|
3674
|
-
privateKey:
|
|
3673
|
+
publicKey: Ce(s),
|
|
3674
|
+
privateKey: s
|
|
3675
3675
|
};
|
|
3676
|
-
const
|
|
3676
|
+
const o = j.getConversationKey(this.state.ourNextNostrKey.privateKey, this.state.theirNostrPublicKey), [a, c] = Re(r, o, 2);
|
|
3677
3677
|
this.state.rootKey = a, this.state.sendingChainKey = c;
|
|
3678
3678
|
}
|
|
3679
3679
|
// 3. MESSAGE KEY FUNCTIONS
|
|
3680
3680
|
skipMessageKeys(t, n) {
|
|
3681
|
-
if (this.state.receivingChainMessageNumber +
|
|
3681
|
+
if (this.state.receivingChainMessageNumber + kc < t)
|
|
3682
3682
|
throw new Error("Too many skipped messages");
|
|
3683
3683
|
for (; this.state.receivingChainMessageNumber < t; ) {
|
|
3684
3684
|
const [r, i] = Re(this.state.receivingChainKey, new Uint8Array([1]), 2);
|
|
3685
3685
|
this.state.receivingChainKey = r;
|
|
3686
|
-
const
|
|
3687
|
-
if (this.state.skippedMessageKeys[
|
|
3688
|
-
const
|
|
3686
|
+
const s = Tt(n, this.state.receivingChainMessageNumber);
|
|
3687
|
+
if (this.state.skippedMessageKeys[s] = i, !this.state.skippedHeaderKeys[n]) {
|
|
3688
|
+
const o = [];
|
|
3689
3689
|
if (this.state.ourCurrentNostrKey) {
|
|
3690
3690
|
const c = j.getConversationKey(this.state.ourCurrentNostrKey.privateKey, n);
|
|
3691
|
-
|
|
3691
|
+
o.push(c);
|
|
3692
3692
|
}
|
|
3693
3693
|
const a = j.getConversationKey(this.state.ourNextNostrKey.privateKey, n);
|
|
3694
|
-
|
|
3694
|
+
o.push(a), this.state.skippedHeaderKeys[n] = o;
|
|
3695
3695
|
}
|
|
3696
3696
|
this.state.receivingChainMessageNumber++;
|
|
3697
3697
|
}
|
|
3698
3698
|
}
|
|
3699
3699
|
trySkippedMessageKeys(t, n, r) {
|
|
3700
|
-
var
|
|
3700
|
+
var s;
|
|
3701
3701
|
const i = Tt(r, t.number);
|
|
3702
3702
|
if (i in this.state.skippedMessageKeys) {
|
|
3703
|
-
const
|
|
3704
|
-
return delete this.state.skippedMessageKeys[i], Object.keys(this.state.skippedMessageKeys).some((c) => c.startsWith(`${r}:`)) || (delete this.state.skippedHeaderKeys[r], (
|
|
3703
|
+
const o = this.state.skippedMessageKeys[i];
|
|
3704
|
+
return delete this.state.skippedMessageKeys[i], Object.keys(this.state.skippedMessageKeys).some((c) => c.startsWith(`${r}:`)) || (delete this.state.skippedHeaderKeys[r], (s = this.nostrUnsubscribe) == null || s.call(this), this.nostrUnsubscribe = void 0), j.decrypt(n, o);
|
|
3705
3705
|
}
|
|
3706
3706
|
return null;
|
|
3707
3707
|
}
|
|
@@ -3709,9 +3709,9 @@ class ct {
|
|
|
3709
3709
|
decryptHeader(t) {
|
|
3710
3710
|
const n = t.tags[0][1];
|
|
3711
3711
|
if (this.state.ourCurrentNostrKey) {
|
|
3712
|
-
const
|
|
3712
|
+
const s = j.getConversationKey(this.state.ourCurrentNostrKey.privateKey, t.pubkey);
|
|
3713
3713
|
try {
|
|
3714
|
-
return [JSON.parse(j.decrypt(n,
|
|
3714
|
+
return [JSON.parse(j.decrypt(n, s)), !1, !1];
|
|
3715
3715
|
} catch {
|
|
3716
3716
|
}
|
|
3717
3717
|
}
|
|
@@ -3722,25 +3722,25 @@ class ct {
|
|
|
3722
3722
|
}
|
|
3723
3723
|
const i = this.state.skippedHeaderKeys[t.pubkey];
|
|
3724
3724
|
if (i)
|
|
3725
|
-
for (const
|
|
3725
|
+
for (const s of i)
|
|
3726
3726
|
try {
|
|
3727
|
-
return [JSON.parse(j.decrypt(n,
|
|
3727
|
+
return [JSON.parse(j.decrypt(n, s)), !1, !0];
|
|
3728
3728
|
} catch {
|
|
3729
3729
|
}
|
|
3730
3730
|
throw new Error("Failed to decrypt header with current and skipped header keys");
|
|
3731
3731
|
}
|
|
3732
3732
|
handleNostrEvent(t) {
|
|
3733
|
-
var
|
|
3733
|
+
var o;
|
|
3734
3734
|
const [n, r, i] = this.decryptHeader(t);
|
|
3735
3735
|
if (!i)
|
|
3736
|
-
this.state.theirNostrPublicKey !== n.nextPublicKey && (this.state.theirNostrPublicKey = n.nextPublicKey, (
|
|
3736
|
+
this.state.theirNostrPublicKey !== n.nextPublicKey && (this.state.theirNostrPublicKey = n.nextPublicKey, (o = this.nostrUnsubscribe) == null || o.call(this), this.nostrUnsubscribe = this.nostrNextUnsubscribe, this.nostrNextUnsubscribe = this.nostrSubscribe(
|
|
3737
3737
|
{ authors: [this.state.theirNostrPublicKey], kinds: [He] },
|
|
3738
3738
|
(a) => this.handleNostrEvent(a)
|
|
3739
3739
|
)), r && (this.skipMessageKeys(n.previousChainLength, t.pubkey), this.ratchetStep(n.nextPublicKey));
|
|
3740
3740
|
else if (!(Tt(t.pubkey, n.number) in this.state.skippedMessageKeys))
|
|
3741
3741
|
return;
|
|
3742
|
-
const
|
|
3743
|
-
this.internalSubscriptions.forEach((a) => a({ id: t.id, data:
|
|
3742
|
+
const s = this.ratchetDecrypt(n, t.content, t.pubkey);
|
|
3743
|
+
this.internalSubscriptions.forEach((a) => a({ id: t.id, data: s, pubkey: n.nextPublicKey, time: n.time }));
|
|
3744
3744
|
}
|
|
3745
3745
|
subscribeToNostrEvents() {
|
|
3746
3746
|
if (this.nostrNextUnsubscribe) return;
|
|
@@ -3759,17 +3759,17 @@ new TextDecoder("utf-8");
|
|
|
3759
3759
|
new TextEncoder();
|
|
3760
3760
|
function tt(e, t) {
|
|
3761
3761
|
const n = Ue.getSharedSecret(e, "02" + t).subarray(1, 33);
|
|
3762
|
-
return
|
|
3762
|
+
return sn(Se, n, "nip44-v2");
|
|
3763
3763
|
}
|
|
3764
3764
|
class Oe {
|
|
3765
|
-
constructor(t, n, r, i,
|
|
3766
|
-
this.inviterSessionPublicKey = t, this.linkSecret = n, this.inviter = r, this.inviterSessionPrivateKey = i, this.label =
|
|
3765
|
+
constructor(t, n, r, i, s, o, a = []) {
|
|
3766
|
+
this.inviterSessionPublicKey = t, this.linkSecret = n, this.inviter = r, this.inviterSessionPrivateKey = i, this.label = s, this.maxUses = o, this.usedBy = a;
|
|
3767
3767
|
}
|
|
3768
3768
|
static createNew(t, n, r) {
|
|
3769
|
-
const i = Me(),
|
|
3769
|
+
const i = Me(), s = Ce(i), o = M(Me());
|
|
3770
3770
|
return new Oe(
|
|
3771
|
-
o,
|
|
3772
3771
|
s,
|
|
3772
|
+
o,
|
|
3773
3773
|
t,
|
|
3774
3774
|
i,
|
|
3775
3775
|
n,
|
|
@@ -3781,16 +3781,16 @@ class Oe {
|
|
|
3781
3781
|
if (!r)
|
|
3782
3782
|
throw new Error("No invite data found in the URL hash.");
|
|
3783
3783
|
const i = decodeURIComponent(r);
|
|
3784
|
-
let
|
|
3784
|
+
let s;
|
|
3785
3785
|
try {
|
|
3786
|
-
|
|
3786
|
+
s = JSON.parse(i);
|
|
3787
3787
|
} catch (u) {
|
|
3788
3788
|
throw new Error("Invite data in URL hash is not valid JSON: " + u);
|
|
3789
3789
|
}
|
|
3790
|
-
const { inviter:
|
|
3791
|
-
if (!
|
|
3790
|
+
const { inviter: o, sessionKey: a, linkSecret: c } = s;
|
|
3791
|
+
if (!o || !a || !c)
|
|
3792
3792
|
throw new Error("Missing required fields (inviter, sessionKey, linkSecret) in invite data.");
|
|
3793
|
-
const l = We.decode(
|
|
3793
|
+
const l = We.decode(o), f = We.decode(a);
|
|
3794
3794
|
if (typeof l.data != "string")
|
|
3795
3795
|
throw new Error("Decoded inviter is not a string");
|
|
3796
3796
|
if (typeof f.data != "string")
|
|
@@ -3814,41 +3814,44 @@ class Oe {
|
|
|
3814
3814
|
);
|
|
3815
3815
|
}
|
|
3816
3816
|
static fromEvent(t) {
|
|
3817
|
-
var
|
|
3817
|
+
var o, a;
|
|
3818
3818
|
if (!t.sig)
|
|
3819
3819
|
throw new Error("Event is not signed");
|
|
3820
3820
|
if (!wt(t))
|
|
3821
3821
|
throw new Error("Event signature is invalid");
|
|
3822
|
-
const { tags: n } = t, r = (
|
|
3822
|
+
const { tags: n } = t, r = (o = n.find(([c]) => c === "sessionKey")) == null ? void 0 : o[1], i = (a = n.find(([c]) => c === "linkSecret")) == null ? void 0 : a[1], s = t.pubkey;
|
|
3823
3823
|
if (!r || !i)
|
|
3824
3824
|
throw new Error("Invalid invite event: missing session key or link secret");
|
|
3825
3825
|
return new Oe(
|
|
3826
3826
|
r,
|
|
3827
3827
|
i,
|
|
3828
|
-
|
|
3828
|
+
s
|
|
3829
3829
|
);
|
|
3830
3830
|
}
|
|
3831
3831
|
static fromUser(t, n) {
|
|
3832
3832
|
const r = {
|
|
3833
3833
|
kinds: [On],
|
|
3834
|
-
|
|
3834
|
+
authors: [t],
|
|
3835
3835
|
limit: 1,
|
|
3836
3836
|
"#d": ["nostr-double-ratchet/invite"]
|
|
3837
3837
|
};
|
|
3838
3838
|
return new Promise((i) => {
|
|
3839
|
-
const
|
|
3839
|
+
const s = n(r, (o) => {
|
|
3840
3840
|
try {
|
|
3841
|
-
const a = Oe.fromEvent(
|
|
3842
|
-
|
|
3841
|
+
const a = Oe.fromEvent(o);
|
|
3842
|
+
s(), i(a);
|
|
3843
3843
|
} catch {
|
|
3844
|
-
|
|
3844
|
+
s(), i(void 0);
|
|
3845
3845
|
}
|
|
3846
3846
|
});
|
|
3847
3847
|
setTimeout(() => {
|
|
3848
|
-
|
|
3848
|
+
s(), i(void 0);
|
|
3849
3849
|
}, 1e4);
|
|
3850
3850
|
});
|
|
3851
3851
|
}
|
|
3852
|
+
/**
|
|
3853
|
+
* Save Invite as JSON. Includes the inviter's session private key, so don't share this.
|
|
3854
|
+
*/
|
|
3852
3855
|
serialize() {
|
|
3853
3856
|
return JSON.stringify({
|
|
3854
3857
|
inviterSessionPublicKey: this.inviterSessionPublicKey,
|
|
@@ -3860,6 +3863,9 @@ class Oe {
|
|
|
3860
3863
|
usedBy: this.usedBy
|
|
3861
3864
|
});
|
|
3862
3865
|
}
|
|
3866
|
+
/**
|
|
3867
|
+
* Invite parameters are in the URL's hash so they are not sent to the server.
|
|
3868
|
+
*/
|
|
3863
3869
|
getUrl(t = "https://iris.to") {
|
|
3864
3870
|
const n = {
|
|
3865
3871
|
inviter: We.npubEncode(this.inviter),
|
|
@@ -3878,7 +3884,7 @@ class Oe {
|
|
|
3878
3884
|
};
|
|
3879
3885
|
}
|
|
3880
3886
|
/**
|
|
3881
|
-
* Accepts the invite and creates a new channel with the inviter.
|
|
3887
|
+
* Called by the invitee. Accepts the invite and creates a new channel with the inviter.
|
|
3882
3888
|
*
|
|
3883
3889
|
* @param inviteeSecretKey - The invitee's secret key or a signing function
|
|
3884
3890
|
* @param nostrSubscribe - A function to subscribe to Nostr events
|
|
@@ -3893,10 +3899,10 @@ class Oe {
|
|
|
3893
3899
|
* so the inviter can create the channel on their side.
|
|
3894
3900
|
*/
|
|
3895
3901
|
async accept(t, n, r) {
|
|
3896
|
-
const i = Me(),
|
|
3902
|
+
const i = Me(), s = Ce(i), o = this.inviter || this.inviterSessionPublicKey, a = W(this.linkSecret), c = ct.init(t, this.inviterSessionPublicKey, i, !0, a, void 0), l = Me(), f = Ce(l), u = typeof r == "function" ? r : (g, h) => Promise.resolve(j.encrypt(g, tt(r, h))), d = {
|
|
3897
3903
|
pubkey: n,
|
|
3898
3904
|
tags: [["secret", this.linkSecret]],
|
|
3899
|
-
content: await u(
|
|
3905
|
+
content: await u(s, o),
|
|
3900
3906
|
created_at: Math.floor(Date.now() / 1e3)
|
|
3901
3907
|
}, p = {
|
|
3902
3908
|
kind: He,
|
|
@@ -3914,17 +3920,23 @@ class Oe {
|
|
|
3914
3920
|
kinds: [He],
|
|
3915
3921
|
"#p": [this.inviterSessionPublicKey]
|
|
3916
3922
|
};
|
|
3917
|
-
return n(i, async (
|
|
3923
|
+
return n(i, async (s) => {
|
|
3918
3924
|
try {
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3925
|
+
if (this.maxUses && this.usedBy.length >= this.maxUses) {
|
|
3926
|
+
console.error("Invite has reached maximum number of uses");
|
|
3927
|
+
return;
|
|
3928
|
+
}
|
|
3929
|
+
const o = await j.decrypt(s.content, tt(this.inviterSessionPrivateKey, s.pubkey)), a = JSON.parse(o);
|
|
3930
|
+
if (!a.tags || !a.tags.some(([g, h]) => g === "secret" && h === this.linkSecret)) {
|
|
3931
|
+
console.error("Invalid secret from event", s);
|
|
3922
3932
|
return;
|
|
3923
3933
|
}
|
|
3924
|
-
const
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3934
|
+
const c = typeof t == "function" ? t : (g, h) => Promise.resolve(j.decrypt(g, tt(t, h))), l = a.pubkey;
|
|
3935
|
+
this.usedBy.push(l);
|
|
3936
|
+
const f = await c(a.content, l), u = W(this.linkSecret), d = s.id, p = ct.init(n, f, this.inviterSessionPrivateKey, !1, u, d);
|
|
3937
|
+
r(p, l);
|
|
3938
|
+
} catch (o) {
|
|
3939
|
+
console.error("Error processing invite message:", o);
|
|
3928
3940
|
}
|
|
3929
3941
|
});
|
|
3930
3942
|
}
|
|
@@ -3935,7 +3947,7 @@ export {
|
|
|
3935
3947
|
Oe as Invite,
|
|
3936
3948
|
Rc as MAX_SKIP,
|
|
3937
3949
|
He as MESSAGE_EVENT_KIND,
|
|
3938
|
-
|
|
3950
|
+
Cc as Sender,
|
|
3939
3951
|
Mc as createMessageStream,
|
|
3940
3952
|
Pc as deserializeChannelState,
|
|
3941
3953
|
Re as kdf,
|