@gardenfi/utils 3.1.1-beta.2 → 3.1.1-beta.3
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/index142.cjs +1 -1
- package/dist/index142.js +1 -1
- package/dist/index145.cjs +1 -1
- package/dist/index145.js +1 -1
- package/dist/index191.cjs +1 -1
- package/dist/index191.js +2 -2
- package/dist/index192.cjs +1 -1
- package/dist/index192.js +1 -1
- package/dist/index193.cjs +1 -1
- package/dist/index193.js +2 -2
- package/dist/index202.cjs +1 -1
- package/dist/index202.js +3 -3
- package/dist/index217.cjs +1 -1
- package/dist/index217.js +24 -11
- package/dist/index218.cjs +1 -1
- package/dist/index218.js +45 -18
- package/dist/index219.cjs +1 -1
- package/dist/index219.js +9 -24
- package/dist/index220.cjs +2 -1
- package/dist/index220.js +34 -39
- package/dist/index221.cjs +1 -1
- package/dist/index221.js +2 -10
- package/dist/index222.cjs +1 -2
- package/dist/index222.js +5 -41
- package/dist/index223.cjs +1 -1
- package/dist/index223.js +11 -2
- package/dist/index224.cjs +1 -1
- package/dist/index224.js +19 -5
- package/dist/index225.cjs +1 -1
- package/dist/index225.js +8 -10
- package/dist/index226.cjs +1 -1
- package/dist/index226.js +66 -19
- package/dist/index227.cjs +1 -1
- package/dist/index227.js +65 -8
- package/dist/index228.cjs +1 -1
- package/dist/index228.js +178 -56
- package/dist/index229.cjs +1 -1
- package/dist/index229.js +25 -62
- package/dist/index230.cjs +1 -1
- package/dist/index230.js +69 -181
- package/dist/index231.cjs +1 -1
- package/dist/index231.js +27 -15
- package/dist/index232.cjs +1 -1
- package/dist/index232.js +9 -69
- package/dist/index233.cjs +1 -1
- package/dist/index233.js +7 -34
- package/dist/index234.cjs +1 -1
- package/dist/index234.js +11 -16
- package/dist/index235.cjs +1 -1
- package/dist/index235.js +12 -13
- package/dist/index236.cjs +1 -1
- package/dist/index236.js +19 -11
- package/dist/index237.cjs +1 -1
- package/dist/index237.js +109 -13
- package/dist/index238.cjs +1 -1
- package/dist/index238.js +6 -19
- package/dist/index239.cjs +1 -1
- package/dist/index239.js +7 -109
- package/dist/index240.cjs +1 -1
- package/dist/index240.js +103 -6
- package/dist/index241.cjs +1 -1
- package/dist/index241.js +27 -7
- package/dist/index242.cjs +1 -1
- package/dist/index242.js +16 -26
- package/dist/index243.cjs +1 -1
- package/dist/index243.js +212 -101
- package/dist/index244.cjs +1 -1
- package/dist/index244.js +11 -16
- package/dist/index245.cjs +1 -1
- package/dist/index245.js +19 -214
- package/dist/index247.cjs +1 -1
- package/dist/index247.js +1 -1
- package/dist/index248.cjs +1 -1
- package/dist/index248.js +1 -1
- package/dist/index25.cjs +1 -1
- package/dist/index25.js +2 -2
- package/dist/index251.cjs +1 -1
- package/dist/index251.js +1 -1
- package/dist/index253.cjs +1 -1
- package/dist/index253.js +1 -1
- package/dist/index254.cjs +1 -1
- package/dist/index254.js +1 -1
- package/dist/index31.cjs +1 -1
- package/dist/index31.js +2 -2
- package/dist/index43.cjs +1 -1
- package/dist/index43.js +1 -1
- package/dist/index49.cjs +1 -1
- package/dist/index49.js +3 -3
- package/dist/index63.cjs +1 -1
- package/dist/index63.js +1 -1
- package/dist/index67.cjs +1 -1
- package/dist/index67.js +1 -1
- package/package.json +1 -1
package/dist/index237.js
CHANGED
|
@@ -1,15 +1,111 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
import { crypto as o } from "./index249.js";
|
|
2
|
+
/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
3
|
+
function s(e) {
|
|
4
|
+
return e instanceof Uint8Array || ArrayBuffer.isView(e) && e.constructor.name === "Uint8Array";
|
|
5
|
+
}
|
|
6
|
+
function c(e) {
|
|
7
|
+
if (!Number.isSafeInteger(e) || e < 0)
|
|
8
|
+
throw new Error("positive integer expected, got " + e);
|
|
9
|
+
}
|
|
10
|
+
function i(e, ...t) {
|
|
11
|
+
if (!s(e))
|
|
12
|
+
throw new Error("Uint8Array expected");
|
|
13
|
+
if (t.length > 0 && !t.includes(e.length))
|
|
14
|
+
throw new Error("Uint8Array expected of length " + t + ", got length=" + e.length);
|
|
15
|
+
}
|
|
16
|
+
function g(e) {
|
|
17
|
+
if (typeof e != "function" || typeof e.create != "function")
|
|
18
|
+
throw new Error("Hash should be wrapped by utils.createHasher");
|
|
19
|
+
c(e.outputLen), c(e.blockLen);
|
|
20
|
+
}
|
|
21
|
+
function d(e, t = !0) {
|
|
22
|
+
if (e.destroyed)
|
|
23
|
+
throw new Error("Hash instance has been destroyed");
|
|
24
|
+
if (t && e.finished)
|
|
25
|
+
throw new Error("Hash#digest() has already been called");
|
|
26
|
+
}
|
|
27
|
+
function b(e, t) {
|
|
28
|
+
i(e);
|
|
29
|
+
const r = t.outputLen;
|
|
30
|
+
if (e.length < r)
|
|
31
|
+
throw new Error("digestInto() expects output buffer of length at least " + r);
|
|
32
|
+
}
|
|
33
|
+
function m(e) {
|
|
34
|
+
return new Uint32Array(e.buffer, e.byteOffset, Math.floor(e.byteLength / 4));
|
|
35
|
+
}
|
|
36
|
+
function x(...e) {
|
|
37
|
+
for (let t = 0; t < e.length; t++)
|
|
38
|
+
e[t].fill(0);
|
|
39
|
+
}
|
|
40
|
+
function A(e) {
|
|
41
|
+
return new DataView(e.buffer, e.byteOffset, e.byteLength);
|
|
42
|
+
}
|
|
43
|
+
function E(e, t) {
|
|
44
|
+
return e << 32 - t | e >>> t;
|
|
45
|
+
}
|
|
46
|
+
const a = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68;
|
|
47
|
+
function l(e) {
|
|
48
|
+
return e << 24 & 4278190080 | e << 8 & 16711680 | e >>> 8 & 65280 | e >>> 24 & 255;
|
|
49
|
+
}
|
|
50
|
+
function y(e) {
|
|
51
|
+
for (let t = 0; t < e.length; t++)
|
|
52
|
+
e[t] = l(e[t]);
|
|
53
|
+
return e;
|
|
54
|
+
}
|
|
55
|
+
const U = a ? (e) => e : y;
|
|
56
|
+
function p(e) {
|
|
57
|
+
if (typeof e != "string")
|
|
58
|
+
throw new Error("string expected");
|
|
59
|
+
return new Uint8Array(new TextEncoder().encode(e));
|
|
60
|
+
}
|
|
61
|
+
function w(e) {
|
|
62
|
+
return typeof e == "string" && (e = p(e)), i(e), e;
|
|
63
|
+
}
|
|
64
|
+
function B(...e) {
|
|
65
|
+
let t = 0;
|
|
66
|
+
for (let n = 0; n < e.length; n++) {
|
|
67
|
+
const f = e[n];
|
|
68
|
+
i(f), t += f.length;
|
|
69
|
+
}
|
|
70
|
+
const r = new Uint8Array(t);
|
|
71
|
+
for (let n = 0, f = 0; n < e.length; n++) {
|
|
72
|
+
const u = e[n];
|
|
73
|
+
r.set(u, f), f += u.length;
|
|
74
|
+
}
|
|
75
|
+
return r;
|
|
76
|
+
}
|
|
77
|
+
class L {
|
|
78
|
+
}
|
|
79
|
+
function H(e) {
|
|
80
|
+
const t = (n) => e().update(w(n)).digest(), r = e();
|
|
81
|
+
return t.outputLen = r.outputLen, t.blockLen = r.blockLen, t.create = () => e(), t;
|
|
82
|
+
}
|
|
83
|
+
function V(e = 32) {
|
|
84
|
+
if (o && typeof o.getRandomValues == "function")
|
|
85
|
+
return o.getRandomValues(new Uint8Array(e));
|
|
86
|
+
if (o && typeof o.randomBytes == "function")
|
|
87
|
+
return Uint8Array.from(o.randomBytes(e));
|
|
88
|
+
throw new Error("crypto.getRandomValues must be defined");
|
|
89
|
+
}
|
|
13
90
|
export {
|
|
14
|
-
|
|
91
|
+
L as Hash,
|
|
92
|
+
i as abytes,
|
|
93
|
+
d as aexists,
|
|
94
|
+
g as ahash,
|
|
95
|
+
c as anumber,
|
|
96
|
+
b as aoutput,
|
|
97
|
+
l as byteSwap,
|
|
98
|
+
y as byteSwap32,
|
|
99
|
+
x as clean,
|
|
100
|
+
B as concatBytes,
|
|
101
|
+
H as createHasher,
|
|
102
|
+
A as createView,
|
|
103
|
+
s as isBytes,
|
|
104
|
+
a as isLE,
|
|
105
|
+
V as randomBytes,
|
|
106
|
+
E as rotr,
|
|
107
|
+
U as swap32IfBE,
|
|
108
|
+
w as toBytes,
|
|
109
|
+
m as u32,
|
|
110
|
+
p as utf8ToBytes
|
|
15
111
|
};
|
package/dist/index238.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index168.cjs"),r=require("./index178.cjs"),c=e=>r.keccak256(t.toBytes(e));function n(e){return c(e)}exports.hashSignature=n;
|
package/dist/index238.js
CHANGED
|
@@ -1,22 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { toBytes as o } from "./index168.js";
|
|
2
|
+
import { keccak256 as r } from "./index178.js";
|
|
3
|
+
const e = (t) => r(o(t));
|
|
4
|
+
function c(t) {
|
|
5
|
+
return e(t);
|
|
4
6
|
}
|
|
5
|
-
function h(t, r = !1) {
|
|
6
|
-
const n = t.length;
|
|
7
|
-
let l = new Uint32Array(n), c = new Uint32Array(n);
|
|
8
|
-
for (let e = 0; e < n; e++) {
|
|
9
|
-
const { h: u, l: f } = s(t[e], r);
|
|
10
|
-
[l[e], c[e]] = [u, f];
|
|
11
|
-
}
|
|
12
|
-
return [l, c];
|
|
13
|
-
}
|
|
14
|
-
const m = (t, r, n) => t << n | r >>> 32 - n, A = (t, r, n) => r << n | t >>> 32 - n, B = (t, r, n) => r << n - 32 | t >>> 64 - n, a = (t, r, n) => t << n - 32 | r >>> 64 - n;
|
|
15
7
|
export {
|
|
16
|
-
|
|
17
|
-
B as rotlBH,
|
|
18
|
-
a as rotlBL,
|
|
19
|
-
m as rotlSH,
|
|
20
|
-
A as rotlSL,
|
|
21
|
-
h as split
|
|
8
|
+
c as hashSignature
|
|
22
9
|
};
|
package/dist/index239.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index241.cjs"),n=require("./index222.cjs"),i=t=>{const r=typeof t=="string"?t:n.formatAbiItem(t);return e.normalizeSignature(r)};exports.toSignature=i;
|
package/dist/index239.js
CHANGED
|
@@ -1,111 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
if (!Number.isSafeInteger(e) || e < 0)
|
|
8
|
-
throw new Error("positive integer expected, got " + e);
|
|
9
|
-
}
|
|
10
|
-
function i(e, ...t) {
|
|
11
|
-
if (!s(e))
|
|
12
|
-
throw new Error("Uint8Array expected");
|
|
13
|
-
if (t.length > 0 && !t.includes(e.length))
|
|
14
|
-
throw new Error("Uint8Array expected of length " + t + ", got length=" + e.length);
|
|
15
|
-
}
|
|
16
|
-
function g(e) {
|
|
17
|
-
if (typeof e != "function" || typeof e.create != "function")
|
|
18
|
-
throw new Error("Hash should be wrapped by utils.createHasher");
|
|
19
|
-
c(e.outputLen), c(e.blockLen);
|
|
20
|
-
}
|
|
21
|
-
function d(e, t = !0) {
|
|
22
|
-
if (e.destroyed)
|
|
23
|
-
throw new Error("Hash instance has been destroyed");
|
|
24
|
-
if (t && e.finished)
|
|
25
|
-
throw new Error("Hash#digest() has already been called");
|
|
26
|
-
}
|
|
27
|
-
function b(e, t) {
|
|
28
|
-
i(e);
|
|
29
|
-
const r = t.outputLen;
|
|
30
|
-
if (e.length < r)
|
|
31
|
-
throw new Error("digestInto() expects output buffer of length at least " + r);
|
|
32
|
-
}
|
|
33
|
-
function m(e) {
|
|
34
|
-
return new Uint32Array(e.buffer, e.byteOffset, Math.floor(e.byteLength / 4));
|
|
35
|
-
}
|
|
36
|
-
function x(...e) {
|
|
37
|
-
for (let t = 0; t < e.length; t++)
|
|
38
|
-
e[t].fill(0);
|
|
39
|
-
}
|
|
40
|
-
function A(e) {
|
|
41
|
-
return new DataView(e.buffer, e.byteOffset, e.byteLength);
|
|
42
|
-
}
|
|
43
|
-
function E(e, t) {
|
|
44
|
-
return e << 32 - t | e >>> t;
|
|
45
|
-
}
|
|
46
|
-
const a = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68;
|
|
47
|
-
function l(e) {
|
|
48
|
-
return e << 24 & 4278190080 | e << 8 & 16711680 | e >>> 8 & 65280 | e >>> 24 & 255;
|
|
49
|
-
}
|
|
50
|
-
function y(e) {
|
|
51
|
-
for (let t = 0; t < e.length; t++)
|
|
52
|
-
e[t] = l(e[t]);
|
|
53
|
-
return e;
|
|
54
|
-
}
|
|
55
|
-
const U = a ? (e) => e : y;
|
|
56
|
-
function p(e) {
|
|
57
|
-
if (typeof e != "string")
|
|
58
|
-
throw new Error("string expected");
|
|
59
|
-
return new Uint8Array(new TextEncoder().encode(e));
|
|
60
|
-
}
|
|
61
|
-
function w(e) {
|
|
62
|
-
return typeof e == "string" && (e = p(e)), i(e), e;
|
|
63
|
-
}
|
|
64
|
-
function B(...e) {
|
|
65
|
-
let t = 0;
|
|
66
|
-
for (let n = 0; n < e.length; n++) {
|
|
67
|
-
const f = e[n];
|
|
68
|
-
i(f), t += f.length;
|
|
69
|
-
}
|
|
70
|
-
const r = new Uint8Array(t);
|
|
71
|
-
for (let n = 0, f = 0; n < e.length; n++) {
|
|
72
|
-
const u = e[n];
|
|
73
|
-
r.set(u, f), f += u.length;
|
|
74
|
-
}
|
|
75
|
-
return r;
|
|
76
|
-
}
|
|
77
|
-
class L {
|
|
78
|
-
}
|
|
79
|
-
function H(e) {
|
|
80
|
-
const t = (n) => e().update(w(n)).digest(), r = e();
|
|
81
|
-
return t.outputLen = r.outputLen, t.blockLen = r.blockLen, t.create = () => e(), t;
|
|
82
|
-
}
|
|
83
|
-
function V(e = 32) {
|
|
84
|
-
if (o && typeof o.getRandomValues == "function")
|
|
85
|
-
return o.getRandomValues(new Uint8Array(e));
|
|
86
|
-
if (o && typeof o.randomBytes == "function")
|
|
87
|
-
return Uint8Array.from(o.randomBytes(e));
|
|
88
|
-
throw new Error("crypto.getRandomValues must be defined");
|
|
89
|
-
}
|
|
1
|
+
import { normalizeSignature as o } from "./index241.js";
|
|
2
|
+
import { formatAbiItem as n } from "./index222.js";
|
|
3
|
+
const m = (r) => {
|
|
4
|
+
const t = typeof r == "string" ? r : n(r);
|
|
5
|
+
return o(t);
|
|
6
|
+
};
|
|
90
7
|
export {
|
|
91
|
-
|
|
92
|
-
i as abytes,
|
|
93
|
-
d as aexists,
|
|
94
|
-
g as ahash,
|
|
95
|
-
c as anumber,
|
|
96
|
-
b as aoutput,
|
|
97
|
-
l as byteSwap,
|
|
98
|
-
y as byteSwap32,
|
|
99
|
-
x as clean,
|
|
100
|
-
B as concatBytes,
|
|
101
|
-
H as createHasher,
|
|
102
|
-
A as createView,
|
|
103
|
-
s as isBytes,
|
|
104
|
-
a as isLE,
|
|
105
|
-
V as randomBytes,
|
|
106
|
-
E as rotr,
|
|
107
|
-
U as swap32IfBE,
|
|
108
|
-
w as toBytes,
|
|
109
|
-
m as u32,
|
|
110
|
-
p as utf8ToBytes
|
|
8
|
+
m as toSignature
|
|
111
9
|
};
|
package/dist/index240.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index248.cjs"),x=require("./index237.cjs"),_=Uint32Array.from([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),f=new Uint32Array(64);class u extends e.HashMD{constructor(o=32){super(64,o,8,!1),this.A=e.SHA256_IV[0]|0,this.B=e.SHA256_IV[1]|0,this.C=e.SHA256_IV[2]|0,this.D=e.SHA256_IV[3]|0,this.E=e.SHA256_IV[4]|0,this.F=e.SHA256_IV[5]|0,this.G=e.SHA256_IV[6]|0,this.H=e.SHA256_IV[7]|0}get(){const{A:o,B:h,C:s,D:a,E:r,F:b,G:c,H:i}=this;return[o,h,s,a,r,b,c,i]}set(o,h,s,a,r,b,c,i){this.A=o|0,this.B=h|0,this.C=s|0,this.D=a|0,this.E=r|0,this.F=b|0,this.G=c|0,this.H=i|0}process(o,h){for(let t=0;t<16;t++,h+=4)f[t]=o.getUint32(h,!1);for(let t=16;t<64;t++){const H=f[t-15],d=f[t-2],S=x.rotr(H,7)^x.rotr(H,18)^H>>>3,l=x.rotr(d,17)^x.rotr(d,19)^d>>>10;f[t]=l+f[t-7]+S+f[t-16]|0}let{A:s,B:a,C:r,D:b,E:c,F:i,G:n,H:A}=this;for(let t=0;t<64;t++){const H=x.rotr(c,6)^x.rotr(c,11)^x.rotr(c,25),d=A+H+e.Chi(c,i,n)+_[t]+f[t]|0,l=(x.rotr(s,2)^x.rotr(s,13)^x.rotr(s,22))+e.Maj(s,a,r)|0;A=n,n=i,i=c,c=b+d|0,b=r,r=a,a=s,s=d+l|0}s=s+this.A|0,a=a+this.B|0,r=r+this.C|0,b=b+this.D|0,c=c+this.E|0,i=i+this.F|0,n=n+this.G|0,A=A+this.H|0,this.set(s,a,r,b,c,i,n,A)}roundClean(){x.clean(f)}destroy(){this.set(0,0,0,0,0,0,0,0),x.clean(this.buffer)}}const I=x.createHasher(()=>new u);exports.SHA256=u;exports.sha256=I;
|
package/dist/index240.js
CHANGED
|
@@ -1,9 +1,106 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { HashMD as D, SHA256_IV as b, Chi as g, Maj as p } from "./index248.js";
|
|
2
|
+
import { createHasher as u, clean as C, rotr as i } from "./index237.js";
|
|
3
|
+
const B = /* @__PURE__ */ Uint32Array.from([
|
|
4
|
+
1116352408,
|
|
5
|
+
1899447441,
|
|
6
|
+
3049323471,
|
|
7
|
+
3921009573,
|
|
8
|
+
961987163,
|
|
9
|
+
1508970993,
|
|
10
|
+
2453635748,
|
|
11
|
+
2870763221,
|
|
12
|
+
3624381080,
|
|
13
|
+
310598401,
|
|
14
|
+
607225278,
|
|
15
|
+
1426881987,
|
|
16
|
+
1925078388,
|
|
17
|
+
2162078206,
|
|
18
|
+
2614888103,
|
|
19
|
+
3248222580,
|
|
20
|
+
3835390401,
|
|
21
|
+
4022224774,
|
|
22
|
+
264347078,
|
|
23
|
+
604807628,
|
|
24
|
+
770255983,
|
|
25
|
+
1249150122,
|
|
26
|
+
1555081692,
|
|
27
|
+
1996064986,
|
|
28
|
+
2554220882,
|
|
29
|
+
2821834349,
|
|
30
|
+
2952996808,
|
|
31
|
+
3210313671,
|
|
32
|
+
3336571891,
|
|
33
|
+
3584528711,
|
|
34
|
+
113926993,
|
|
35
|
+
338241895,
|
|
36
|
+
666307205,
|
|
37
|
+
773529912,
|
|
38
|
+
1294757372,
|
|
39
|
+
1396182291,
|
|
40
|
+
1695183700,
|
|
41
|
+
1986661051,
|
|
42
|
+
2177026350,
|
|
43
|
+
2456956037,
|
|
44
|
+
2730485921,
|
|
45
|
+
2820302411,
|
|
46
|
+
3259730800,
|
|
47
|
+
3345764771,
|
|
48
|
+
3516065817,
|
|
49
|
+
3600352804,
|
|
50
|
+
4094571909,
|
|
51
|
+
275423344,
|
|
52
|
+
430227734,
|
|
53
|
+
506948616,
|
|
54
|
+
659060556,
|
|
55
|
+
883997877,
|
|
56
|
+
958139571,
|
|
57
|
+
1322822218,
|
|
58
|
+
1537002063,
|
|
59
|
+
1747873779,
|
|
60
|
+
1955562222,
|
|
61
|
+
2024104815,
|
|
62
|
+
2227730452,
|
|
63
|
+
2361852424,
|
|
64
|
+
2428436474,
|
|
65
|
+
2756734187,
|
|
66
|
+
3204031479,
|
|
67
|
+
3329325298
|
|
68
|
+
]), h = /* @__PURE__ */ new Uint32Array(64);
|
|
69
|
+
class E extends D {
|
|
70
|
+
constructor(o = 32) {
|
|
71
|
+
super(64, o, 8, !1), this.A = b[0] | 0, this.B = b[1] | 0, this.C = b[2] | 0, this.D = b[3] | 0, this.E = b[4] | 0, this.F = b[5] | 0, this.G = b[6] | 0, this.H = b[7] | 0;
|
|
72
|
+
}
|
|
73
|
+
get() {
|
|
74
|
+
const { A: o, B: r, C: t, D: s, E: a, F: f, G: c, H: e } = this;
|
|
75
|
+
return [o, r, t, s, a, f, c, e];
|
|
76
|
+
}
|
|
77
|
+
// prettier-ignore
|
|
78
|
+
set(o, r, t, s, a, f, c, e) {
|
|
79
|
+
this.A = o | 0, this.B = r | 0, this.C = t | 0, this.D = s | 0, this.E = a | 0, this.F = f | 0, this.G = c | 0, this.H = e | 0;
|
|
80
|
+
}
|
|
81
|
+
process(o, r) {
|
|
82
|
+
for (let x = 0; x < 16; x++, r += 4)
|
|
83
|
+
h[x] = o.getUint32(r, !1);
|
|
84
|
+
for (let x = 16; x < 64; x++) {
|
|
85
|
+
const H = h[x - 15], d = h[x - 2], m = i(H, 7) ^ i(H, 18) ^ H >>> 3, l = i(d, 17) ^ i(d, 19) ^ d >>> 10;
|
|
86
|
+
h[x] = l + h[x - 7] + m + h[x - 16] | 0;
|
|
87
|
+
}
|
|
88
|
+
let { A: t, B: s, C: a, D: f, E: c, F: e, G: n, H: A } = this;
|
|
89
|
+
for (let x = 0; x < 64; x++) {
|
|
90
|
+
const H = i(c, 6) ^ i(c, 11) ^ i(c, 25), d = A + H + g(c, e, n) + B[x] + h[x] | 0, l = (i(t, 2) ^ i(t, 13) ^ i(t, 22)) + p(t, s, a) | 0;
|
|
91
|
+
A = n, n = e, e = c, c = f + d | 0, f = a, a = s, s = t, t = d + l | 0;
|
|
92
|
+
}
|
|
93
|
+
t = t + this.A | 0, s = s + this.B | 0, a = a + this.C | 0, f = f + this.D | 0, c = c + this.E | 0, e = e + this.F | 0, n = n + this.G | 0, A = A + this.H | 0, this.set(t, s, a, f, c, e, n, A);
|
|
94
|
+
}
|
|
95
|
+
roundClean() {
|
|
96
|
+
C(h);
|
|
97
|
+
}
|
|
98
|
+
destroy() {
|
|
99
|
+
this.set(0, 0, 0, 0, 0, 0, 0, 0), C(this.buffer);
|
|
100
|
+
}
|
|
6
101
|
}
|
|
102
|
+
const y = /* @__PURE__ */ u(() => new E());
|
|
7
103
|
export {
|
|
8
|
-
|
|
104
|
+
E as SHA256,
|
|
105
|
+
y as sha256
|
|
9
106
|
};
|
package/dist/index241.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const f=require("./index35.cjs");function a(r){let l=!0,i="",o=0,t="",u=!1;for(let n=0;n<r.length;n++){const e=r[n];if(["(",")",","].includes(e)&&(l=!0),e==="("&&o++,e===")"&&o--,!!l){if(o===0){if(e===" "&&["event","function",""].includes(t))t="";else if(t+=e,e===")"){u=!0;break}continue}if(e===" "){r[n-1]!==","&&i!==","&&i!==",("&&(i="",l=!1);continue}t+=e,i+=e}}if(!u)throw new f.BaseError("Unable to normalize signature.");return t}exports.normalizeSignature=a;
|
package/dist/index241.js
CHANGED
|
@@ -1,9 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { BaseError as u } from "./index35.js";
|
|
2
|
+
function a(r) {
|
|
3
|
+
let l = !0, i = "", f = 0, t = "", o = !1;
|
|
4
|
+
for (let n = 0; n < r.length; n++) {
|
|
5
|
+
const e = r[n];
|
|
6
|
+
if (["(", ")", ","].includes(e) && (l = !0), e === "(" && f++, e === ")" && f--, !!l) {
|
|
7
|
+
if (f === 0) {
|
|
8
|
+
if (e === " " && ["event", "function", ""].includes(t))
|
|
9
|
+
t = "";
|
|
10
|
+
else if (t += e, e === ")") {
|
|
11
|
+
o = !0;
|
|
12
|
+
break;
|
|
13
|
+
}
|
|
14
|
+
continue;
|
|
15
|
+
}
|
|
16
|
+
if (e === " ") {
|
|
17
|
+
r[n - 1] !== "," && i !== "," && i !== ",(" && (i = "", l = !1);
|
|
18
|
+
continue;
|
|
19
|
+
}
|
|
20
|
+
t += e, i += e;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
if (!o)
|
|
24
|
+
throw new u("Unable to normalize signature.");
|
|
25
|
+
return t;
|
|
26
|
+
}
|
|
7
27
|
export {
|
|
8
|
-
|
|
28
|
+
a as normalizeSignature
|
|
9
29
|
};
|
package/dist/index242.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./index247.cjs"),s=require("./index237.cjs"),o=require("./index253.cjs");/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */function c(e){return{hash:e,hmac:(r,...t)=>a.hmac(e,r,s.concatBytes(...t)),randomBytes:s.randomBytes}}function u(e,r){const t=n=>o.weierstrass({...e,...c(n)});return{...t(r),create:t}}exports.createCurve=u;exports.getHash=c;
|
package/dist/index242.js
CHANGED
|
@@ -1,29 +1,19 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
if (e === " ") {
|
|
17
|
-
r[n - 1] !== "," && i !== "," && i !== ",(" && (i = "", l = !1);
|
|
18
|
-
continue;
|
|
19
|
-
}
|
|
20
|
-
t += e, i += e;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
if (!o)
|
|
24
|
-
throw new u("Unable to normalize signature.");
|
|
25
|
-
return t;
|
|
1
|
+
import { hmac as c } from "./index247.js";
|
|
2
|
+
import { randomBytes as m, concatBytes as n } from "./index237.js";
|
|
3
|
+
import { weierstrass as a } from "./index253.js";
|
|
4
|
+
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
5
|
+
function i(r) {
|
|
6
|
+
return {
|
|
7
|
+
hash: r,
|
|
8
|
+
hmac: (e, ...t) => c(r, e, n(...t)),
|
|
9
|
+
randomBytes: m
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
function p(r, e) {
|
|
13
|
+
const t = (o) => a({ ...r, ...i(o) });
|
|
14
|
+
return { ...t(e), create: t };
|
|
26
15
|
}
|
|
27
16
|
export {
|
|
28
|
-
|
|
17
|
+
p as createCurve,
|
|
18
|
+
i as getHash
|
|
29
19
|
};
|
package/dist/index243.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const H=require("./index237.cjs"),a=require("./index246.cjs");/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */const d=BigInt(0),f=BigInt(1),h=BigInt(2),K=BigInt(3),I=BigInt(4),L=BigInt(5),T=BigInt(8);function g(t,n){const o=t%n;return o>=d?o:n+o}function Q(t,n,o){let r=t;for(;n-- >d;)r*=r,r%=o;return r}function B(t,n){if(t===d)throw new Error("invert: expected non-zero number");if(n<=d)throw new Error("invert: expected positive modulus, got "+n);let o=g(t,n),r=n,s=d,l=f;for(;o!==d;){const c=r/o,e=r%o,i=s-l*c;r=o,o=e,s=l,l=i}if(r!==f)throw new Error("invert: does not exist");return g(s,n)}function x(t,n){const o=(t.ORDER+f)/I,r=t.pow(n,o);if(!t.eql(t.sqr(r),n))throw new Error("Cannot find square root");return r}function V(t,n){const o=(t.ORDER-L)/T,r=t.mul(n,h),s=t.pow(r,o),l=t.mul(n,s),u=t.mul(t.mul(l,h),s),c=t.mul(l,t.sub(u,t.ONE));if(!t.eql(t.sqr(c),n))throw new Error("Cannot find square root");return c}function _(t){if(t<BigInt(3))throw new Error("sqrt is not defined for small field");let n=t-f,o=0;for(;n%h===d;)n/=h,o++;let r=h;const s=Z(t);for(;y(s,r)===1;)if(r++>1e3)throw new Error("Cannot find square root: probably non-prime P");if(o===1)return x;let l=s.pow(r,n);const u=(n+f)/h;return function(e,i){if(e.is0(i))return i;if(y(e,i)!==1)throw new Error("Cannot find square root");let w=o,v=e.mul(e.ONE,l),b=e.pow(i,n),E=e.pow(i,u);for(;!e.eql(b,e.ONE);){if(e.is0(b))return e.ZERO;let q=1,m=e.sqr(b);for(;!e.eql(m,e.ONE);)if(q++,m=e.sqr(m),q===w)throw new Error("Cannot find square root");const z=f<<BigInt(w-q-1),S=e.pow(v,z);w=q,v=e.sqr(S),b=e.mul(b,v),E=e.mul(E,S)}return E}}function M(t){return t%I===K?x:t%T===L?V:_(t)}const Y=["create","isValid","is0","neg","inv","sqrt","sqr","eql","add","sub","mul","pow","div","addN","subN","mulN","sqrN"];function k(t){const n={ORDER:"bigint",MASK:"bigint",BYTES:"isSafeInteger",BITS:"isSafeInteger"},o=Y.reduce((r,s)=>(r[s]="function",r),n);return a.validateObject(t,o)}function O(t,n,o){if(o<d)throw new Error("invalid exponent, negatives unsupported");if(o===d)return t.ONE;if(o===f)return n;let r=t.ONE,s=n;for(;o>d;)o&f&&(r=t.mul(r,s)),s=t.sqr(s),o>>=f;return r}function A(t,n,o=!1){const r=new Array(n.length).fill(o?t.ZERO:void 0),s=n.reduce((u,c,e)=>t.is0(c)?u:(r[e]=u,t.mul(u,c)),t.ONE),l=t.inv(s);return n.reduceRight((u,c,e)=>t.is0(c)?u:(r[e]=t.mul(u,r[e]),t.mul(u,c)),l),r}function y(t,n){const o=(t.ORDER-f)/h,r=t.pow(n,o),s=t.eql(r,t.ONE),l=t.eql(r,t.ZERO),u=t.eql(r,t.neg(t.ONE));if(!s&&!l&&!u)throw new Error("invalid Legendre symbol result");return s?1:l?0:-1}function C(t,n){n!==void 0&&H.anumber(n);const o=n!==void 0?n:t.toString(2).length,r=Math.ceil(o/8);return{nBitLength:o,nByteLength:r}}function Z(t,n,o=!1,r={}){if(t<=d)throw new Error("invalid field: expected ORDER > 0, got "+t);const{nBitLength:s,nByteLength:l}=C(t,n);if(l>2048)throw new Error("invalid field: expected ORDER of <= 2048 bytes");let u;const c=Object.freeze({ORDER:t,isLE:o,BITS:s,BYTES:l,MASK:a.bitMask(s),ZERO:d,ONE:f,create:e=>g(e,t),isValid:e=>{if(typeof e!="bigint")throw new Error("invalid field element: expected bigint, got "+typeof e);return d<=e&&e<t},is0:e=>e===d,isOdd:e=>(e&f)===f,neg:e=>g(-e,t),eql:(e,i)=>e===i,sqr:e=>g(e*e,t),add:(e,i)=>g(e+i,t),sub:(e,i)=>g(e-i,t),mul:(e,i)=>g(e*i,t),pow:(e,i)=>O(c,e,i),div:(e,i)=>g(e*B(i,t),t),sqrN:e=>e*e,addN:(e,i)=>e+i,subN:(e,i)=>e-i,mulN:(e,i)=>e*i,inv:e=>B(e,t),sqrt:r.sqrt||(e=>(u||(u=M(t)),u(c,e))),toBytes:e=>o?a.numberToBytesLE(e,l):a.numberToBytesBE(e,l),fromBytes:e=>{if(e.length!==l)throw new Error("Field.fromBytes: expected "+l+" bytes, got "+e.length);return o?a.bytesToNumberLE(e):a.bytesToNumberBE(e)},invertBatch:e=>A(c,e),cmov:(e,i,w)=>w?i:e});return Object.freeze(c)}function N(t){if(typeof t!="bigint")throw new Error("field order must be bigint");const n=t.toString(2).length;return Math.ceil(n/8)}function j(t){const n=N(t);return n+Math.ceil(n/2)}function P(t,n,o=!1){const r=t.length,s=N(n),l=j(n);if(r<16||r<l||r>1024)throw new Error("expected "+l+"-1024 bytes of input, got "+r);const u=o?a.bytesToNumberLE(t):a.bytesToNumberBE(t),c=g(u,n-f)+f;return o?a.numberToBytesLE(c,s):a.numberToBytesBE(c,s)}exports.Field=Z;exports.FpInvertBatch=A;exports.FpLegendre=y;exports.FpPow=O;exports.FpSqrt=M;exports.getFieldBytesLength=N;exports.getMinHashLength=j;exports.invert=B;exports.mapHashToField=P;exports.mod=g;exports.nLength=C;exports.pow2=Q;exports.tonelliShanks=_;exports.validateField=k;
|