mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 12:21:01 +00:00
1 line
26 KiB
Plaintext
1 line
26 KiB
Plaintext
{"dependencies":[{"name":"./utils.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":58},"end":{"line":5,"column":88,"index":146}}],"key":"NIaSEHO1E48gsZc7jH9Ex1xTHgE=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n exports.setBigUint64 = setBigUint64;\n exports.Chi = Chi;\n exports.Maj = Maj;\n Object.defineProperty(exports, \"HashMD\", {\n enumerable: true,\n get: function () {\n return HashMD;\n }\n });\n Object.defineProperty(exports, \"SHA256_IV\", {\n enumerable: true,\n get: function () {\n return SHA256_IV;\n }\n });\n Object.defineProperty(exports, \"SHA224_IV\", {\n enumerable: true,\n get: function () {\n return SHA224_IV;\n }\n });\n Object.defineProperty(exports, \"SHA384_IV\", {\n enumerable: true,\n get: function () {\n return SHA384_IV;\n }\n });\n Object.defineProperty(exports, \"SHA512_IV\", {\n enumerable: true,\n get: function () {\n return SHA512_IV;\n }\n });\n var _utilsJs = require(_dependencyMap[0], \"./utils.js\");\n /**\n * Internal Merkle-Damgard hash utils.\n * @module\n */\n\n /** Polyfill for Safari 14. https://caniuse.com/mdn-javascript_builtins_dataview_setbiguint64 */\n function setBigUint64(view, byteOffset, value, isLE) {\n if (typeof view.setBigUint64 === 'function') return view.setBigUint64(byteOffset, value, isLE);\n const _32n = BigInt(32);\n const _u32_max = BigInt(0xffffffff);\n const wh = Number(value >> _32n & _u32_max);\n const wl = Number(value & _u32_max);\n const h = isLE ? 4 : 0;\n const l = isLE ? 0 : 4;\n view.setUint32(byteOffset + h, wh, isLE);\n view.setUint32(byteOffset + l, wl, isLE);\n }\n /** Choice: a ? b : c */\n function Chi(a, b, c) {\n return a & b ^ ~a & c;\n }\n /** Majority function, true if any two inputs is true. */\n function Maj(a, b, c) {\n return a & b ^ a & c ^ b & c;\n }\n /**\n * Merkle-Damgard hash construction base class.\n * Could be used to create MD5, RIPEMD, SHA1, SHA2.\n */\n class HashMD extends _utilsJs.Hash {\n constructor(blockLen, outputLen, padOffset, isLE) {\n super();\n this.finished = false;\n this.length = 0;\n this.pos = 0;\n this.destroyed = false;\n this.blockLen = blockLen;\n this.outputLen = outputLen;\n this.padOffset = padOffset;\n this.isLE = isLE;\n this.buffer = new Uint8Array(blockLen);\n this.view = (0, _utilsJs.createView)(this.buffer);\n }\n update(data) {\n (0, _utilsJs.aexists)(this);\n data = (0, _utilsJs.toBytes)(data);\n (0, _utilsJs.abytes)(data);\n const {\n view,\n buffer,\n blockLen\n } = this;\n const len = data.length;\n for (let pos = 0; pos < len;) {\n const take = Math.min(blockLen - this.pos, len - pos);\n // Fast path: we have at least one block in input, cast it to view and process\n if (take === blockLen) {\n const dataView = (0, _utilsJs.createView)(data);\n for (; blockLen <= len - pos; pos += blockLen) this.process(dataView, pos);\n continue;\n }\n buffer.set(data.subarray(pos, pos + take), this.pos);\n this.pos += take;\n pos += take;\n if (this.pos === blockLen) {\n this.process(view, 0);\n this.pos = 0;\n }\n }\n this.length += data.length;\n this.roundClean();\n return this;\n }\n digestInto(out) {\n (0, _utilsJs.aexists)(this);\n (0, _utilsJs.aoutput)(out, this);\n this.finished = true;\n // Padding\n // We can avoid allocation of buffer for padding completely if it\n // was previously not allocated here. But it won't change performance.\n const {\n buffer,\n view,\n blockLen,\n isLE\n } = this;\n let {\n pos\n } = this;\n // append the bit '1' to the message\n buffer[pos++] = 0b10000000;\n (0, _utilsJs.clean)(this.buffer.subarray(pos));\n // we have less than padOffset left in buffer, so we cannot put length in\n // current block, need process it and pad again\n if (this.padOffset > blockLen - pos) {\n this.process(view, 0);\n pos = 0;\n }\n // Pad until full block byte with zeros\n for (let i = pos; i < blockLen; i++) buffer[i] = 0;\n // Note: sha512 requires length to be 128bit integer, but length in JS will overflow before that\n // You need to write around 2 exabytes (u64_max / 8 / (1024**6)) for this to happen.\n // So we just write lowest 64 bits of that value.\n setBigUint64(view, blockLen - 8, BigInt(this.length * 8), isLE);\n this.process(view, 0);\n const oview = (0, _utilsJs.createView)(out);\n const len = this.outputLen;\n // NOTE: we do division by 4 later, which should be fused in single op with modulo by JIT\n if (len % 4) throw new Error('_sha2: outputLen should be aligned to 32bit');\n const outLen = len / 4;\n const state = this.get();\n if (outLen > state.length) throw new Error('_sha2: outputLen bigger than state');\n for (let i = 0; i < outLen; i++) oview.setUint32(4 * i, state[i], isLE);\n }\n digest() {\n const {\n buffer,\n outputLen\n } = this;\n this.digestInto(buffer);\n const res = buffer.slice(0, outputLen);\n this.destroy();\n return res;\n }\n _cloneInto(to) {\n to || (to = new this.constructor());\n to.set(...this.get());\n const {\n blockLen,\n buffer,\n length,\n finished,\n destroyed,\n pos\n } = this;\n to.destroyed = destroyed;\n to.finished = finished;\n to.length = length;\n to.pos = pos;\n if (length % blockLen) to.buffer.set(buffer);\n return to;\n }\n clone() {\n return this._cloneInto();\n }\n }\n /**\n * Initial SHA-2 state: fractional parts of square roots of first 16 primes 2..53.\n * Check out `test/misc/sha2-gen-iv.js` for recomputation guide.\n */\n /** Initial SHA256 state. Bits 0..32 of frac part of sqrt of primes 2..19 */\n const SHA256_IV = /* @__PURE__ */Uint32Array.from([0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19]);\n /** Initial SHA224 state. Bits 32..64 of frac part of sqrt of primes 23..53 */\n const SHA224_IV = /* @__PURE__ */Uint32Array.from([0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4]);\n /** Initial SHA384 state. Bits 0..64 of frac part of sqrt of primes 23..53 */\n const SHA384_IV = /* @__PURE__ */Uint32Array.from([0xcbbb9d5d, 0xc1059ed8, 0x629a292a, 0x367cd507, 0x9159015a, 0x3070dd17, 0x152fecd8, 0xf70e5939, 0x67332667, 0xffc00b31, 0x8eb44a87, 0x68581511, 0xdb0c2e0d, 0x64f98fa7, 0x47b5481d, 0xbefa4fa4]);\n /** Initial SHA512 state. Bits 0..64 of frac part of sqrt of primes 2..19 */\n const SHA512_IV = /* @__PURE__ */Uint32Array.from([0x6a09e667, 0xf3bcc908, 0xbb67ae85, 0x84caa73b, 0x3c6ef372, 0xfe94f82b, 0xa54ff53a, 0x5f1d36f1, 0x510e527f, 0xade682d1, 0x9b05688c, 0x2b3e6c1f, 0x1f83d9ab, 0xfb41bd6b, 0x5be0cd19, 0x137e2179]);\n});","lineCount":199,"map":[[7,2,7,0,"exports"],[7,9,7,0],[7,10,7,0,"setBigUint64"],[7,22,7,0],[7,25,7,0,"setBigUint64"],[7,37,7,0],[8,2,20,0,"exports"],[8,9,20,0],[8,10,20,0,"Chi"],[8,13,20,0],[8,16,20,0,"Chi"],[8,19,20,0],[9,2,24,0,"exports"],[9,9,24,0],[9,10,24,0,"Maj"],[9,13,24,0],[9,16,24,0,"Maj"],[9,19,24,0],[10,2,31,0,"Object"],[10,8,31,0],[10,9,31,0,"defineProperty"],[10,23,31,0],[10,24,31,0,"exports"],[10,31,31,0],[11,4,31,0,"enumerable"],[11,14,31,0],[12,4,31,0,"get"],[12,7,31,0],[12,18,31,0,"get"],[12,19,31,0],[13,6,31,0],[13,13,31,0,"HashMD"],[13,19,31,0],[14,4,31,0],[15,2,31,0],[16,2,138,0,"Object"],[16,8,138,0],[16,9,138,0,"defineProperty"],[16,23,138,0],[16,24,138,0,"exports"],[16,31,138,0],[17,4,138,0,"enumerable"],[17,14,138,0],[18,4,138,0,"get"],[18,7,138,0],[18,18,138,0,"get"],[18,19,138,0],[19,6,138,0],[19,13,138,0,"SHA256_IV"],[19,22,138,0],[20,4,138,0],[21,2,138,0],[22,2,142,0,"Object"],[22,8,142,0],[22,9,142,0,"defineProperty"],[22,23,142,0],[22,24,142,0,"exports"],[22,31,142,0],[23,4,142,0,"enumerable"],[23,14,142,0],[24,4,142,0,"get"],[24,7,142,0],[24,18,142,0,"get"],[24,19,142,0],[25,6,142,0],[25,13,142,0,"SHA224_IV"],[25,22,142,0],[26,4,142,0],[27,2,142,0],[28,2,146,0,"Object"],[28,8,146,0],[28,9,146,0,"defineProperty"],[28,23,146,0],[28,24,146,0,"exports"],[28,31,146,0],[29,4,146,0,"enumerable"],[29,14,146,0],[30,4,146,0,"get"],[30,7,146,0],[30,18,146,0,"get"],[30,19,146,0],[31,6,146,0],[31,13,146,0,"SHA384_IV"],[31,22,146,0],[32,4,146,0],[33,2,146,0],[34,2,151,0,"Object"],[34,8,151,0],[34,9,151,0,"defineProperty"],[34,23,151,0],[34,24,151,0,"exports"],[34,31,151,0],[35,4,151,0,"enumerable"],[35,14,151,0],[36,4,151,0,"get"],[36,7,151,0],[36,18,151,0,"get"],[36,19,151,0],[37,6,151,0],[37,13,151,0,"SHA512_IV"],[37,22,151,0],[38,4,151,0],[39,2,151,0],[40,2,5,0],[40,6,5,0,"_utilsJs"],[40,14,5,0],[40,17,5,0,"require"],[40,24,5,0],[40,25,5,0,"_dependencyMap"],[40,39,5,0],[41,2,1,0],[42,0,2,0],[43,0,3,0],[44,0,4,0],[46,2,6,0],[47,2,7,7],[47,11,7,16,"setBigUint64"],[47,23,7,28,"setBigUint64"],[47,24,7,29,"view"],[47,28,7,33],[47,30,7,35,"byteOffset"],[47,40,7,45],[47,42,7,47,"value"],[47,47,7,52],[47,49,7,54,"isLE"],[47,53,7,58],[47,55,7,60],[48,4,8,4],[48,8,8,8],[48,15,8,15,"view"],[48,19,8,19],[48,20,8,20,"setBigUint64"],[48,32,8,32],[48,37,8,37],[48,47,8,47],[48,49,9,8],[48,56,9,15,"view"],[48,60,9,19],[48,61,9,20,"setBigUint64"],[48,73,9,32],[48,74,9,33,"byteOffset"],[48,84,9,43],[48,86,9,45,"value"],[48,91,9,50],[48,93,9,52,"isLE"],[48,97,9,56],[48,98,9,57],[49,4,10,4],[49,10,10,10,"_32n"],[49,14,10,14],[49,17,10,17,"BigInt"],[49,23,10,23],[49,24,10,24],[49,26,10,26],[49,27,10,27],[50,4,11,4],[50,10,11,10,"_u32_max"],[50,18,11,18],[50,21,11,21,"BigInt"],[50,27,11,27],[50,28,11,28],[50,38,11,38],[50,39,11,39],[51,4,12,4],[51,10,12,10,"wh"],[51,12,12,12],[51,15,12,15,"Number"],[51,21,12,21],[51,22,12,23,"value"],[51,27,12,28],[51,31,12,32,"_32n"],[51,35,12,36],[51,38,12,40,"_u32_max"],[51,46,12,48],[51,47,12,49],[52,4,13,4],[52,10,13,10,"wl"],[52,12,13,12],[52,15,13,15,"Number"],[52,21,13,21],[52,22,13,22,"value"],[52,27,13,27],[52,30,13,30,"_u32_max"],[52,38,13,38],[52,39,13,39],[53,4,14,4],[53,10,14,10,"h"],[53,11,14,11],[53,14,14,14,"isLE"],[53,18,14,18],[53,21,14,21],[53,22,14,22],[53,25,14,25],[53,26,14,26],[54,4,15,4],[54,10,15,10,"l"],[54,11,15,11],[54,14,15,14,"isLE"],[54,18,15,18],[54,21,15,21],[54,22,15,22],[54,25,15,25],[54,26,15,26],[55,4,16,4,"view"],[55,8,16,8],[55,9,16,9,"setUint32"],[55,18,16,18],[55,19,16,19,"byteOffset"],[55,29,16,29],[55,32,16,32,"h"],[55,33,16,33],[55,35,16,35,"wh"],[55,37,16,37],[55,39,16,39,"isLE"],[55,43,16,43],[55,44,16,44],[56,4,17,4,"view"],[56,8,17,8],[56,9,17,9,"setUint32"],[56,18,17,18],[56,19,17,19,"byteOffset"],[56,29,17,29],[56,32,17,32,"l"],[56,33,17,33],[56,35,17,35,"wl"],[56,37,17,37],[56,39,17,39,"isLE"],[56,43,17,43],[56,44,17,44],[57,2,18,0],[58,2,19,0],[59,2,20,7],[59,11,20,16,"Chi"],[59,14,20,19,"Chi"],[59,15,20,20,"a"],[59,16,20,21],[59,18,20,23,"b"],[59,19,20,24],[59,21,20,26,"c"],[59,22,20,27],[59,24,20,29],[60,4,21,4],[60,11,21,12,"a"],[60,12,21,13],[60,15,21,16,"b"],[60,16,21,17],[60,19,21,22],[60,20,21,23,"a"],[60,21,21,24],[60,24,21,27,"c"],[60,25,21,29],[61,2,22,0],[62,2,23,0],[63,2,24,7],[63,11,24,16,"Maj"],[63,14,24,19,"Maj"],[63,15,24,20,"a"],[63,16,24,21],[63,18,24,23,"b"],[63,19,24,24],[63,21,24,26,"c"],[63,22,24,27],[63,24,24,29],[64,4,25,4],[64,11,25,12,"a"],[64,12,25,13],[64,15,25,16,"b"],[64,16,25,17],[64,19,25,22,"a"],[64,20,25,23],[64,23,25,26,"c"],[64,24,25,28],[64,27,25,32,"b"],[64,28,25,33],[64,31,25,36,"c"],[64,32,25,38],[65,2,26,0],[66,2,27,0],[67,0,28,0],[68,0,29,0],[69,0,30,0],[70,2,31,7],[70,8,31,13,"HashMD"],[70,14,31,19],[70,23,31,28,"Hash"],[70,31,31,32],[70,32,31,32,"Hash"],[70,36,31,32],[70,37,31,33],[71,4,32,4,"constructor"],[71,15,32,15,"constructor"],[71,16,32,16,"blockLen"],[71,24,32,24],[71,26,32,26,"outputLen"],[71,35,32,35],[71,37,32,37,"padOffset"],[71,46,32,46],[71,48,32,48,"isLE"],[71,52,32,52],[71,54,32,54],[72,6,33,8],[72,11,33,13],[72,12,33,14],[72,13,33,15],[73,6,34,8],[73,10,34,12],[73,11,34,13,"finished"],[73,19,34,21],[73,22,34,24],[73,27,34,29],[74,6,35,8],[74,10,35,12],[74,11,35,13,"length"],[74,17,35,19],[74,20,35,22],[74,21,35,23],[75,6,36,8],[75,10,36,12],[75,11,36,13,"pos"],[75,14,36,16],[75,17,36,19],[75,18,36,20],[76,6,37,8],[76,10,37,12],[76,11,37,13,"destroyed"],[76,20,37,22],[76,23,37,25],[76,28,37,30],[77,6,38,8],[77,10,38,12],[77,11,38,13,"blockLen"],[77,19,38,21],[77,22,38,24,"blockLen"],[77,30,38,32],[78,6,39,8],[78,10,39,12],[78,11,39,13,"outputLen"],[78,20,39,22],[78,23,39,25,"outputLen"],[78,32,39,34],[79,6,40,8],[79,10,40,12],[79,11,40,13,"padOffset"],[79,20,40,22],[79,23,40,25,"padOffset"],[79,32,40,34],[80,6,41,8],[80,10,41,12],[80,11,41,13,"isLE"],[80,15,41,17],[80,18,41,20,"isLE"],[80,22,41,24],[81,6,42,8],[81,10,42,12],[81,11,42,13,"buffer"],[81,17,42,19],[81,20,42,22],[81,24,42,26,"Uint8Array"],[81,34,42,36],[81,35,42,37,"blockLen"],[81,43,42,45],[81,44,42,46],[82,6,43,8],[82,10,43,12],[82,11,43,13,"view"],[82,15,43,17],[82,18,43,20],[82,22,43,20,"createView"],[82,30,43,30],[82,31,43,30,"createView"],[82,41,43,30],[82,43,43,31],[82,47,43,35],[82,48,43,36,"buffer"],[82,54,43,42],[82,55,43,43],[83,4,44,4],[84,4,45,4,"update"],[84,10,45,10,"update"],[84,11,45,11,"data"],[84,15,45,15],[84,17,45,17],[85,6,46,8],[85,10,46,8,"aexists"],[85,18,46,15],[85,19,46,15,"aexists"],[85,26,46,15],[85,28,46,16],[85,32,46,20],[85,33,46,21],[86,6,47,8,"data"],[86,10,47,12],[86,13,47,15],[86,17,47,15,"toBytes"],[86,25,47,22],[86,26,47,22,"toBytes"],[86,33,47,22],[86,35,47,23,"data"],[86,39,47,27],[86,40,47,28],[87,6,48,8],[87,10,48,8,"abytes"],[87,18,48,14],[87,19,48,14,"abytes"],[87,25,48,14],[87,27,48,15,"data"],[87,31,48,19],[87,32,48,20],[88,6,49,8],[88,12,49,14],[89,8,49,16,"view"],[89,12,49,20],[90,8,49,22,"buffer"],[90,14,49,28],[91,8,49,30,"blockLen"],[92,6,49,39],[92,7,49,40],[92,10,49,43],[92,14,49,47],[93,6,50,8],[93,12,50,14,"len"],[93,15,50,17],[93,18,50,20,"data"],[93,22,50,24],[93,23,50,25,"length"],[93,29,50,31],[94,6,51,8],[94,11,51,13],[94,15,51,17,"pos"],[94,18,51,20],[94,21,51,23],[94,22,51,24],[94,24,51,26,"pos"],[94,27,51,29],[94,30,51,32,"len"],[94,33,51,35],[94,36,51,38],[95,8,52,12],[95,14,52,18,"take"],[95,18,52,22],[95,21,52,25,"Math"],[95,25,52,29],[95,26,52,30,"min"],[95,29,52,33],[95,30,52,34,"blockLen"],[95,38,52,42],[95,41,52,45],[95,45,52,49],[95,46,52,50,"pos"],[95,49,52,53],[95,51,52,55,"len"],[95,54,52,58],[95,57,52,61,"pos"],[95,60,52,64],[95,61,52,65],[96,8,53,12],[97,8,54,12],[97,12,54,16,"take"],[97,16,54,20],[97,21,54,25,"blockLen"],[97,29,54,33],[97,31,54,35],[98,10,55,16],[98,16,55,22,"dataView"],[98,24,55,30],[98,27,55,33],[98,31,55,33,"createView"],[98,39,55,43],[98,40,55,43,"createView"],[98,50,55,43],[98,52,55,44,"data"],[98,56,55,48],[98,57,55,49],[99,10,56,16],[99,17,56,23,"blockLen"],[99,25,56,31],[99,29,56,35,"len"],[99,32,56,38],[99,35,56,41,"pos"],[99,38,56,44],[99,40,56,46,"pos"],[99,43,56,49],[99,47,56,53,"blockLen"],[99,55,56,61],[99,57,57,20],[99,61,57,24],[99,62,57,25,"process"],[99,69,57,32],[99,70,57,33,"dataView"],[99,78,57,41],[99,80,57,43,"pos"],[99,83,57,46],[99,84,57,47],[100,10,58,16],[101,8,59,12],[102,8,60,12,"buffer"],[102,14,60,18],[102,15,60,19,"set"],[102,18,60,22],[102,19,60,23,"data"],[102,23,60,27],[102,24,60,28,"subarray"],[102,32,60,36],[102,33,60,37,"pos"],[102,36,60,40],[102,38,60,42,"pos"],[102,41,60,45],[102,44,60,48,"take"],[102,48,60,52],[102,49,60,53],[102,51,60,55],[102,55,60,59],[102,56,60,60,"pos"],[102,59,60,63],[102,60,60,64],[103,8,61,12],[103,12,61,16],[103,13,61,17,"pos"],[103,16,61,20],[103,20,61,24,"take"],[103,24,61,28],[104,8,62,12,"pos"],[104,11,62,15],[104,15,62,19,"take"],[104,19,62,23],[105,8,63,12],[105,12,63,16],[105,16,63,20],[105,17,63,21,"pos"],[105,20,63,24],[105,25,63,29,"blockLen"],[105,33,63,37],[105,35,63,39],[106,10,64,16],[106,14,64,20],[106,15,64,21,"process"],[106,22,64,28],[106,23,64,29,"view"],[106,27,64,33],[106,29,64,35],[106,30,64,36],[106,31,64,37],[107,10,65,16],[107,14,65,20],[107,15,65,21,"pos"],[107,18,65,24],[107,21,65,27],[107,22,65,28],[108,8,66,12],[109,6,67,8],[110,6,68,8],[110,10,68,12],[110,11,68,13,"length"],[110,17,68,19],[110,21,68,23,"data"],[110,25,68,27],[110,26,68,28,"length"],[110,32,68,34],[111,6,69,8],[111,10,69,12],[111,11,69,13,"roundClean"],[111,21,69,23],[111,22,69,24],[111,23,69,25],[112,6,70,8],[112,13,70,15],[112,17,70,19],[113,4,71,4],[114,4,72,4,"digestInto"],[114,14,72,14,"digestInto"],[114,15,72,15,"out"],[114,18,72,18],[114,20,72,20],[115,6,73,8],[115,10,73,8,"aexists"],[115,18,73,15],[115,19,73,15,"aexists"],[115,26,73,15],[115,28,73,16],[115,32,73,20],[115,33,73,21],[116,6,74,8],[116,10,74,8,"aoutput"],[116,18,74,15],[116,19,74,15,"aoutput"],[116,26,74,15],[116,28,74,16,"out"],[116,31,74,19],[116,33,74,21],[116,37,74,25],[116,38,74,26],[117,6,75,8],[117,10,75,12],[117,11,75,13,"finished"],[117,19,75,21],[117,22,75,24],[117,26,75,28],[118,6,76,8],[119,6,77,8],[120,6,78,8],[121,6,79,8],[121,12,79,14],[122,8,79,16,"buffer"],[122,14,79,22],[123,8,79,24,"view"],[123,12,79,28],[124,8,79,30,"blockLen"],[124,16,79,38],[125,8,79,40,"isLE"],[126,6,79,45],[126,7,79,46],[126,10,79,49],[126,14,79,53],[127,6,80,8],[127,10,80,12],[128,8,80,14,"pos"],[129,6,80,18],[129,7,80,19],[129,10,80,22],[129,14,80,26],[130,6,81,8],[131,6,82,8,"buffer"],[131,12,82,14],[131,13,82,15,"pos"],[131,16,82,18],[131,18,82,20],[131,19,82,21],[131,22,82,24],[131,32,82,34],[132,6,83,8],[132,10,83,8,"clean"],[132,18,83,13],[132,19,83,13,"clean"],[132,24,83,13],[132,26,83,14],[132,30,83,18],[132,31,83,19,"buffer"],[132,37,83,25],[132,38,83,26,"subarray"],[132,46,83,34],[132,47,83,35,"pos"],[132,50,83,38],[132,51,83,39],[132,52,83,40],[133,6,84,8],[134,6,85,8],[135,6,86,8],[135,10,86,12],[135,14,86,16],[135,15,86,17,"padOffset"],[135,24,86,26],[135,27,86,29,"blockLen"],[135,35,86,37],[135,38,86,40,"pos"],[135,41,86,43],[135,43,86,45],[136,8,87,12],[136,12,87,16],[136,13,87,17,"process"],[136,20,87,24],[136,21,87,25,"view"],[136,25,87,29],[136,27,87,31],[136,28,87,32],[136,29,87,33],[137,8,88,12,"pos"],[137,11,88,15],[137,14,88,18],[137,15,88,19],[138,6,89,8],[139,6,90,8],[140,6,91,8],[140,11,91,13],[140,15,91,17,"i"],[140,16,91,18],[140,19,91,21,"pos"],[140,22,91,24],[140,24,91,26,"i"],[140,25,91,27],[140,28,91,30,"blockLen"],[140,36,91,38],[140,38,91,40,"i"],[140,39,91,41],[140,41,91,43],[140,43,92,12,"buffer"],[140,49,92,18],[140,50,92,19,"i"],[140,51,92,20],[140,52,92,21],[140,55,92,24],[140,56,92,25],[141,6,93,8],[142,6,94,8],[143,6,95,8],[144,6,96,8,"setBigUint64"],[144,18,96,20],[144,19,96,21,"view"],[144,23,96,25],[144,25,96,27,"blockLen"],[144,33,96,35],[144,36,96,38],[144,37,96,39],[144,39,96,41,"BigInt"],[144,45,96,47],[144,46,96,48],[144,50,96,52],[144,51,96,53,"length"],[144,57,96,59],[144,60,96,62],[144,61,96,63],[144,62,96,64],[144,64,96,66,"isLE"],[144,68,96,70],[144,69,96,71],[145,6,97,8],[145,10,97,12],[145,11,97,13,"process"],[145,18,97,20],[145,19,97,21,"view"],[145,23,97,25],[145,25,97,27],[145,26,97,28],[145,27,97,29],[146,6,98,8],[146,12,98,14,"oview"],[146,17,98,19],[146,20,98,22],[146,24,98,22,"createView"],[146,32,98,32],[146,33,98,32,"createView"],[146,43,98,32],[146,45,98,33,"out"],[146,48,98,36],[146,49,98,37],[147,6,99,8],[147,12,99,14,"len"],[147,15,99,17],[147,18,99,20],[147,22,99,24],[147,23,99,25,"outputLen"],[147,32,99,34],[148,6,100,8],[149,6,101,8],[149,10,101,12,"len"],[149,13,101,15],[149,16,101,18],[149,17,101,19],[149,19,102,12],[149,25,102,18],[149,29,102,22,"Error"],[149,34,102,27],[149,35,102,28],[149,80,102,73],[149,81,102,74],[150,6,103,8],[150,12,103,14,"outLen"],[150,18,103,20],[150,21,103,23,"len"],[150,24,103,26],[150,27,103,29],[150,28,103,30],[151,6,104,8],[151,12,104,14,"state"],[151,17,104,19],[151,20,104,22],[151,24,104,26],[151,25,104,27,"get"],[151,28,104,30],[151,29,104,31],[151,30,104,32],[152,6,105,8],[152,10,105,12,"outLen"],[152,16,105,18],[152,19,105,21,"state"],[152,24,105,26],[152,25,105,27,"length"],[152,31,105,33],[152,33,106,12],[152,39,106,18],[152,43,106,22,"Error"],[152,48,106,27],[152,49,106,28],[152,85,106,64],[152,86,106,65],[153,6,107,8],[153,11,107,13],[153,15,107,17,"i"],[153,16,107,18],[153,19,107,21],[153,20,107,22],[153,22,107,24,"i"],[153,23,107,25],[153,26,107,28,"outLen"],[153,32,107,34],[153,34,107,36,"i"],[153,35,107,37],[153,37,107,39],[153,39,108,12,"oview"],[153,44,108,17],[153,45,108,18,"setUint32"],[153,54,108,27],[153,55,108,28],[153,56,108,29],[153,59,108,32,"i"],[153,60,108,33],[153,62,108,35,"state"],[153,67,108,40],[153,68,108,41,"i"],[153,69,108,42],[153,70,108,43],[153,72,108,45,"isLE"],[153,76,108,49],[153,77,108,50],[154,4,109,4],[155,4,110,4,"digest"],[155,10,110,10,"digest"],[155,11,110,10],[155,13,110,13],[156,6,111,8],[156,12,111,14],[157,8,111,16,"buffer"],[157,14,111,22],[158,8,111,24,"outputLen"],[159,6,111,34],[159,7,111,35],[159,10,111,38],[159,14,111,42],[160,6,112,8],[160,10,112,12],[160,11,112,13,"digestInto"],[160,21,112,23],[160,22,112,24,"buffer"],[160,28,112,30],[160,29,112,31],[161,6,113,8],[161,12,113,14,"res"],[161,15,113,17],[161,18,113,20,"buffer"],[161,24,113,26],[161,25,113,27,"slice"],[161,30,113,32],[161,31,113,33],[161,32,113,34],[161,34,113,36,"outputLen"],[161,43,113,45],[161,44,113,46],[162,6,114,8],[162,10,114,12],[162,11,114,13,"destroy"],[162,18,114,20],[162,19,114,21],[162,20,114,22],[163,6,115,8],[163,13,115,15,"res"],[163,16,115,18],[164,4,116,4],[165,4,117,4,"_cloneInto"],[165,14,117,14,"_cloneInto"],[165,15,117,15,"to"],[165,17,117,17],[165,19,117,19],[166,6,118,8,"to"],[166,8,118,10],[166,13,118,15,"to"],[166,15,118,17],[166,18,118,20],[166,22,118,24],[166,26,118,28],[166,27,118,29,"constructor"],[166,38,118,40],[166,39,118,41],[166,40,118,42],[166,41,118,43],[167,6,119,8,"to"],[167,8,119,10],[167,9,119,11,"set"],[167,12,119,14],[167,13,119,15],[167,16,119,18],[167,20,119,22],[167,21,119,23,"get"],[167,24,119,26],[167,25,119,27],[167,26,119,28],[167,27,119,29],[168,6,120,8],[168,12,120,14],[169,8,120,16,"blockLen"],[169,16,120,24],[170,8,120,26,"buffer"],[170,14,120,32],[171,8,120,34,"length"],[171,14,120,40],[172,8,120,42,"finished"],[172,16,120,50],[173,8,120,52,"destroyed"],[173,17,120,61],[174,8,120,63,"pos"],[175,6,120,67],[175,7,120,68],[175,10,120,71],[175,14,120,75],[176,6,121,8,"to"],[176,8,121,10],[176,9,121,11,"destroyed"],[176,18,121,20],[176,21,121,23,"destroyed"],[176,30,121,32],[177,6,122,8,"to"],[177,8,122,10],[177,9,122,11,"finished"],[177,17,122,19],[177,20,122,22,"finished"],[177,28,122,30],[178,6,123,8,"to"],[178,8,123,10],[178,9,123,11,"length"],[178,15,123,17],[178,18,123,20,"length"],[178,24,123,26],[179,6,124,8,"to"],[179,8,124,10],[179,9,124,11,"pos"],[179,12,124,14],[179,15,124,17,"pos"],[179,18,124,20],[180,6,125,8],[180,10,125,12,"length"],[180,16,125,18],[180,19,125,21,"blockLen"],[180,27,125,29],[180,29,126,12,"to"],[180,31,126,14],[180,32,126,15,"buffer"],[180,38,126,21],[180,39,126,22,"set"],[180,42,126,25],[180,43,126,26,"buffer"],[180,49,126,32],[180,50,126,33],[181,6,127,8],[181,13,127,15,"to"],[181,15,127,17],[182,4,128,4],[183,4,129,4,"clone"],[183,9,129,9,"clone"],[183,10,129,9],[183,12,129,12],[184,6,130,8],[184,13,130,15],[184,17,130,19],[184,18,130,20,"_cloneInto"],[184,28,130,30],[184,29,130,31],[184,30,130,32],[185,4,131,4],[186,2,132,0],[187,2,133,0],[188,0,134,0],[189,0,135,0],[190,0,136,0],[191,2,137,0],[192,2,138,7],[192,8,138,13,"SHA256_IV"],[192,17,138,22],[192,20,138,25],[192,35,138,41,"Uint32Array"],[192,46,138,52],[192,47,138,53,"from"],[192,51,138,57],[192,52,138,58],[192,53,139,4],[192,63,139,14],[192,65,139,16],[192,75,139,26],[192,77,139,28],[192,87,139,38],[192,89,139,40],[192,99,139,50],[192,101,139,52],[192,111,139,62],[192,113,139,64],[192,123,139,74],[192,125,139,76],[192,135,139,86],[192,137,139,88],[192,147,139,98],[192,148,140,1],[192,149,140,2],[193,2,141,0],[194,2,142,7],[194,8,142,13,"SHA224_IV"],[194,17,142,22],[194,20,142,25],[194,35,142,41,"Uint32Array"],[194,46,142,52],[194,47,142,53,"from"],[194,51,142,57],[194,52,142,58],[194,53,143,4],[194,63,143,14],[194,65,143,16],[194,75,143,26],[194,77,143,28],[194,87,143,38],[194,89,143,40],[194,99,143,50],[194,101,143,52],[194,111,143,62],[194,113,143,64],[194,123,143,74],[194,125,143,76],[194,135,143,86],[194,137,143,88],[194,147,143,98],[194,148,144,1],[194,149,144,2],[195,2,145,0],[196,2,146,7],[196,8,146,13,"SHA384_IV"],[196,17,146,22],[196,20,146,25],[196,35,146,41,"Uint32Array"],[196,46,146,52],[196,47,146,53,"from"],[196,51,146,57],[196,52,146,58],[196,53,147,4],[196,63,147,14],[196,65,147,16],[196,75,147,26],[196,77,147,28],[196,87,147,38],[196,89,147,40],[196,99,147,50],[196,101,147,52],[196,111,147,62],[196,113,147,64],[196,123,147,74],[196,125,147,76],[196,135,147,86],[196,137,147,88],[196,147,147,98],[196,149,148,4],[196,159,148,14],[196,161,148,16],[196,171,148,26],[196,173,148,28],[196,183,148,38],[196,185,148,40],[196,195,148,50],[196,197,148,52],[196,207,148,62],[196,209,148,64],[196,219,148,74],[196,221,148,76],[196,231,148,86],[196,233,148,88],[196,243,148,98],[196,244,149,1],[196,245,149,2],[197,2,150,0],[198,2,151,7],[198,8,151,13,"SHA512_IV"],[198,17,151,22],[198,20,151,25],[198,35,151,41,"Uint32Array"],[198,46,151,52],[198,47,151,53,"from"],[198,51,151,57],[198,52,151,58],[198,53,152,4],[198,63,152,14],[198,65,152,16],[198,75,152,26],[198,77,152,28],[198,87,152,38],[198,89,152,40],[198,99,152,50],[198,101,152,52],[198,111,152,62],[198,113,152,64],[198,123,152,74],[198,125,152,76],[198,135,152,86],[198,137,152,88],[198,147,152,98],[198,149,153,4],[198,159,153,14],[198,161,153,16],[198,171,153,26],[198,173,153,28],[198,183,153,38],[198,185,153,40],[198,195,153,50],[198,197,153,52],[198,207,153,62],[198,209,153,64],[198,219,153,74],[198,221,153,76],[198,231,153,86],[198,233,153,88],[198,243,153,98],[198,244,154,1],[198,245,154,2],[199,0,154,3],[199,3]],"functionMap":{"names":["<global>","setBigUint64","Chi","Maj","HashMD","HashMD#constructor","HashMD#update","HashMD#digestInto","HashMD#digest","HashMD#_cloneInto","HashMD#clone"],"mappings":"AAA;OCM;CDW;OEE;CFE;OGE;CHE;OIK;ICC;KDY;IEC;KF0B;IGC;KHqC;IIC;KJM;IKC;KLW;IMC;KNE;CJC"},"hasCjsExports":false},"type":"js/module"}]} |