mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 15:41:01 +00:00
1 line
25 KiB
Plaintext
1 line
25 KiB
Plaintext
{"dependencies":[{"name":"./utils.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":11,"column":19,"index":334},"end":{"line":11,"column":40,"index":355}}],"key":"v6h+l9IeOWbEcXdtKQqd2f4now4=","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.SHA512_IV = exports.SHA384_IV = exports.SHA224_IV = exports.SHA256_IV = exports.HashMD = void 0;\n exports.setBigUint64 = setBigUint64;\n exports.Chi = Chi;\n exports.Maj = Maj;\n /**\n * Internal Merkle-Damgard hash utils.\n * @module\n */\n const utils_ts_1 = require(_dependencyMap[0], \"./utils.js\");\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 utils_ts_1.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, utils_ts_1.createView)(this.buffer);\n }\n update(data) {\n (0, utils_ts_1.aexists)(this);\n data = (0, utils_ts_1.toBytes)(data);\n (0, utils_ts_1.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, utils_ts_1.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, utils_ts_1.aexists)(this);\n (0, utils_ts_1.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, utils_ts_1.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, utils_ts_1.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 exports.HashMD = HashMD;\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 exports.SHA256_IV = 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 exports.SHA224_IV = 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 exports.SHA384_IV = 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 exports.SHA512_IV = Uint32Array.from([0x6a09e667, 0xf3bcc908, 0xbb67ae85, 0x84caa73b, 0x3c6ef372, 0xfe94f82b, 0xa54ff53a, 0x5f1d36f1, 0x510e527f, 0xade682d1, 0x9b05688c, 0x2b3e6c1f, 0x1f83d9ab, 0xfb41bd6b, 0x5be0cd19, 0x137e2179]);\n});","lineCount":170,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"SHA512_IV"],[7,19,3,17],[7,22,3,20,"exports"],[7,29,3,27],[7,30,3,28,"SHA384_IV"],[7,39,3,37],[7,42,3,40,"exports"],[7,49,3,47],[7,50,3,48,"SHA224_IV"],[7,59,3,57],[7,62,3,60,"exports"],[7,69,3,67],[7,70,3,68,"SHA256_IV"],[7,79,3,77],[7,82,3,80,"exports"],[7,89,3,87],[7,90,3,88,"HashMD"],[7,96,3,94],[7,99,3,97],[7,104,3,102],[7,105,3,103],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"setBigUint64"],[8,22,4,20],[8,25,4,23,"setBigUint64"],[8,37,4,35],[9,2,5,0,"exports"],[9,9,5,7],[9,10,5,8,"Chi"],[9,13,5,11],[9,16,5,14,"Chi"],[9,19,5,17],[10,2,6,0,"exports"],[10,9,6,7],[10,10,6,8,"Maj"],[10,13,6,11],[10,16,6,14,"Maj"],[10,19,6,17],[11,2,7,0],[12,0,8,0],[13,0,9,0],[14,0,10,0],[15,2,11,0],[15,8,11,6,"utils_ts_1"],[15,18,11,16],[15,21,11,19,"require"],[15,28,11,26],[15,29,11,26,"_dependencyMap"],[15,43,11,26],[15,60,11,39],[15,61,11,40],[16,2,12,0],[17,2,13,0],[17,11,13,9,"setBigUint64"],[17,23,13,21,"setBigUint64"],[17,24,13,22,"view"],[17,28,13,26],[17,30,13,28,"byteOffset"],[17,40,13,38],[17,42,13,40,"value"],[17,47,13,45],[17,49,13,47,"isLE"],[17,53,13,51],[17,55,13,53],[18,4,14,4],[18,8,14,8],[18,15,14,15,"view"],[18,19,14,19],[18,20,14,20,"setBigUint64"],[18,32,14,32],[18,37,14,37],[18,47,14,47],[18,49,15,8],[18,56,15,15,"view"],[18,60,15,19],[18,61,15,20,"setBigUint64"],[18,73,15,32],[18,74,15,33,"byteOffset"],[18,84,15,43],[18,86,15,45,"value"],[18,91,15,50],[18,93,15,52,"isLE"],[18,97,15,56],[18,98,15,57],[19,4,16,4],[19,10,16,10,"_32n"],[19,14,16,14],[19,17,16,17,"BigInt"],[19,23,16,23],[19,24,16,24],[19,26,16,26],[19,27,16,27],[20,4,17,4],[20,10,17,10,"_u32_max"],[20,18,17,18],[20,21,17,21,"BigInt"],[20,27,17,27],[20,28,17,28],[20,38,17,38],[20,39,17,39],[21,4,18,4],[21,10,18,10,"wh"],[21,12,18,12],[21,15,18,15,"Number"],[21,21,18,21],[21,22,18,23,"value"],[21,27,18,28],[21,31,18,32,"_32n"],[21,35,18,36],[21,38,18,40,"_u32_max"],[21,46,18,48],[21,47,18,49],[22,4,19,4],[22,10,19,10,"wl"],[22,12,19,12],[22,15,19,15,"Number"],[22,21,19,21],[22,22,19,22,"value"],[22,27,19,27],[22,30,19,30,"_u32_max"],[22,38,19,38],[22,39,19,39],[23,4,20,4],[23,10,20,10,"h"],[23,11,20,11],[23,14,20,14,"isLE"],[23,18,20,18],[23,21,20,21],[23,22,20,22],[23,25,20,25],[23,26,20,26],[24,4,21,4],[24,10,21,10,"l"],[24,11,21,11],[24,14,21,14,"isLE"],[24,18,21,18],[24,21,21,21],[24,22,21,22],[24,25,21,25],[24,26,21,26],[25,4,22,4,"view"],[25,8,22,8],[25,9,22,9,"setUint32"],[25,18,22,18],[25,19,22,19,"byteOffset"],[25,29,22,29],[25,32,22,32,"h"],[25,33,22,33],[25,35,22,35,"wh"],[25,37,22,37],[25,39,22,39,"isLE"],[25,43,22,43],[25,44,22,44],[26,4,23,4,"view"],[26,8,23,8],[26,9,23,9,"setUint32"],[26,18,23,18],[26,19,23,19,"byteOffset"],[26,29,23,29],[26,32,23,32,"l"],[26,33,23,33],[26,35,23,35,"wl"],[26,37,23,37],[26,39,23,39,"isLE"],[26,43,23,43],[26,44,23,44],[27,2,24,0],[28,2,25,0],[29,2,26,0],[29,11,26,9,"Chi"],[29,14,26,12,"Chi"],[29,15,26,13,"a"],[29,16,26,14],[29,18,26,16,"b"],[29,19,26,17],[29,21,26,19,"c"],[29,22,26,20],[29,24,26,22],[30,4,27,4],[30,11,27,12,"a"],[30,12,27,13],[30,15,27,16,"b"],[30,16,27,17],[30,19,27,22],[30,20,27,23,"a"],[30,21,27,24],[30,24,27,27,"c"],[30,25,27,29],[31,2,28,0],[32,2,29,0],[33,2,30,0],[33,11,30,9,"Maj"],[33,14,30,12,"Maj"],[33,15,30,13,"a"],[33,16,30,14],[33,18,30,16,"b"],[33,19,30,17],[33,21,30,19,"c"],[33,22,30,20],[33,24,30,22],[34,4,31,4],[34,11,31,12,"a"],[34,12,31,13],[34,15,31,16,"b"],[34,16,31,17],[34,19,31,22,"a"],[34,20,31,23],[34,23,31,26,"c"],[34,24,31,28],[34,27,31,32,"b"],[34,28,31,33],[34,31,31,36,"c"],[34,32,31,38],[35,2,32,0],[36,2,33,0],[37,0,34,0],[38,0,35,0],[39,0,36,0],[40,2,37,0],[40,8,37,6,"HashMD"],[40,14,37,12],[40,23,37,21,"utils_ts_1"],[40,33,37,31],[40,34,37,32,"Hash"],[40,38,37,36],[40,39,37,37],[41,4,38,4,"constructor"],[41,15,38,15,"constructor"],[41,16,38,16,"blockLen"],[41,24,38,24],[41,26,38,26,"outputLen"],[41,35,38,35],[41,37,38,37,"padOffset"],[41,46,38,46],[41,48,38,48,"isLE"],[41,52,38,52],[41,54,38,54],[42,6,39,8],[42,11,39,13],[42,12,39,14],[42,13,39,15],[43,6,40,8],[43,10,40,12],[43,11,40,13,"finished"],[43,19,40,21],[43,22,40,24],[43,27,40,29],[44,6,41,8],[44,10,41,12],[44,11,41,13,"length"],[44,17,41,19],[44,20,41,22],[44,21,41,23],[45,6,42,8],[45,10,42,12],[45,11,42,13,"pos"],[45,14,42,16],[45,17,42,19],[45,18,42,20],[46,6,43,8],[46,10,43,12],[46,11,43,13,"destroyed"],[46,20,43,22],[46,23,43,25],[46,28,43,30],[47,6,44,8],[47,10,44,12],[47,11,44,13,"blockLen"],[47,19,44,21],[47,22,44,24,"blockLen"],[47,30,44,32],[48,6,45,8],[48,10,45,12],[48,11,45,13,"outputLen"],[48,20,45,22],[48,23,45,25,"outputLen"],[48,32,45,34],[49,6,46,8],[49,10,46,12],[49,11,46,13,"padOffset"],[49,20,46,22],[49,23,46,25,"padOffset"],[49,32,46,34],[50,6,47,8],[50,10,47,12],[50,11,47,13,"isLE"],[50,15,47,17],[50,18,47,20,"isLE"],[50,22,47,24],[51,6,48,8],[51,10,48,12],[51,11,48,13,"buffer"],[51,17,48,19],[51,20,48,22],[51,24,48,26,"Uint8Array"],[51,34,48,36],[51,35,48,37,"blockLen"],[51,43,48,45],[51,44,48,46],[52,6,49,8],[52,10,49,12],[52,11,49,13,"view"],[52,15,49,17],[52,18,49,20],[52,19,49,21],[52,20,49,22],[52,22,49,24,"utils_ts_1"],[52,32,49,34],[52,33,49,35,"createView"],[52,43,49,45],[52,45,49,47],[52,49,49,51],[52,50,49,52,"buffer"],[52,56,49,58],[52,57,49,59],[53,4,50,4],[54,4,51,4,"update"],[54,10,51,10,"update"],[54,11,51,11,"data"],[54,15,51,15],[54,17,51,17],[55,6,52,8],[55,7,52,9],[55,8,52,10],[55,10,52,12,"utils_ts_1"],[55,20,52,22],[55,21,52,23,"aexists"],[55,28,52,30],[55,30,52,32],[55,34,52,36],[55,35,52,37],[56,6,53,8,"data"],[56,10,53,12],[56,13,53,15],[56,14,53,16],[56,15,53,17],[56,17,53,19,"utils_ts_1"],[56,27,53,29],[56,28,53,30,"toBytes"],[56,35,53,37],[56,37,53,39,"data"],[56,41,53,43],[56,42,53,44],[57,6,54,8],[57,7,54,9],[57,8,54,10],[57,10,54,12,"utils_ts_1"],[57,20,54,22],[57,21,54,23,"abytes"],[57,27,54,29],[57,29,54,31,"data"],[57,33,54,35],[57,34,54,36],[58,6,55,8],[58,12,55,14],[59,8,55,16,"view"],[59,12,55,20],[60,8,55,22,"buffer"],[60,14,55,28],[61,8,55,30,"blockLen"],[62,6,55,39],[62,7,55,40],[62,10,55,43],[62,14,55,47],[63,6,56,8],[63,12,56,14,"len"],[63,15,56,17],[63,18,56,20,"data"],[63,22,56,24],[63,23,56,25,"length"],[63,29,56,31],[64,6,57,8],[64,11,57,13],[64,15,57,17,"pos"],[64,18,57,20],[64,21,57,23],[64,22,57,24],[64,24,57,26,"pos"],[64,27,57,29],[64,30,57,32,"len"],[64,33,57,35],[64,36,57,38],[65,8,58,12],[65,14,58,18,"take"],[65,18,58,22],[65,21,58,25,"Math"],[65,25,58,29],[65,26,58,30,"min"],[65,29,58,33],[65,30,58,34,"blockLen"],[65,38,58,42],[65,41,58,45],[65,45,58,49],[65,46,58,50,"pos"],[65,49,58,53],[65,51,58,55,"len"],[65,54,58,58],[65,57,58,61,"pos"],[65,60,58,64],[65,61,58,65],[66,8,59,12],[67,8,60,12],[67,12,60,16,"take"],[67,16,60,20],[67,21,60,25,"blockLen"],[67,29,60,33],[67,31,60,35],[68,10,61,16],[68,16,61,22,"dataView"],[68,24,61,30],[68,27,61,33],[68,28,61,34],[68,29,61,35],[68,31,61,37,"utils_ts_1"],[68,41,61,47],[68,42,61,48,"createView"],[68,52,61,58],[68,54,61,60,"data"],[68,58,61,64],[68,59,61,65],[69,10,62,16],[69,17,62,23,"blockLen"],[69,25,62,31],[69,29,62,35,"len"],[69,32,62,38],[69,35,62,41,"pos"],[69,38,62,44],[69,40,62,46,"pos"],[69,43,62,49],[69,47,62,53,"blockLen"],[69,55,62,61],[69,57,63,20],[69,61,63,24],[69,62,63,25,"process"],[69,69,63,32],[69,70,63,33,"dataView"],[69,78,63,41],[69,80,63,43,"pos"],[69,83,63,46],[69,84,63,47],[70,10,64,16],[71,8,65,12],[72,8,66,12,"buffer"],[72,14,66,18],[72,15,66,19,"set"],[72,18,66,22],[72,19,66,23,"data"],[72,23,66,27],[72,24,66,28,"subarray"],[72,32,66,36],[72,33,66,37,"pos"],[72,36,66,40],[72,38,66,42,"pos"],[72,41,66,45],[72,44,66,48,"take"],[72,48,66,52],[72,49,66,53],[72,51,66,55],[72,55,66,59],[72,56,66,60,"pos"],[72,59,66,63],[72,60,66,64],[73,8,67,12],[73,12,67,16],[73,13,67,17,"pos"],[73,16,67,20],[73,20,67,24,"take"],[73,24,67,28],[74,8,68,12,"pos"],[74,11,68,15],[74,15,68,19,"take"],[74,19,68,23],[75,8,69,12],[75,12,69,16],[75,16,69,20],[75,17,69,21,"pos"],[75,20,69,24],[75,25,69,29,"blockLen"],[75,33,69,37],[75,35,69,39],[76,10,70,16],[76,14,70,20],[76,15,70,21,"process"],[76,22,70,28],[76,23,70,29,"view"],[76,27,70,33],[76,29,70,35],[76,30,70,36],[76,31,70,37],[77,10,71,16],[77,14,71,20],[77,15,71,21,"pos"],[77,18,71,24],[77,21,71,27],[77,22,71,28],[78,8,72,12],[79,6,73,8],[80,6,74,8],[80,10,74,12],[80,11,74,13,"length"],[80,17,74,19],[80,21,74,23,"data"],[80,25,74,27],[80,26,74,28,"length"],[80,32,74,34],[81,6,75,8],[81,10,75,12],[81,11,75,13,"roundClean"],[81,21,75,23],[81,22,75,24],[81,23,75,25],[82,6,76,8],[82,13,76,15],[82,17,76,19],[83,4,77,4],[84,4,78,4,"digestInto"],[84,14,78,14,"digestInto"],[84,15,78,15,"out"],[84,18,78,18],[84,20,78,20],[85,6,79,8],[85,7,79,9],[85,8,79,10],[85,10,79,12,"utils_ts_1"],[85,20,79,22],[85,21,79,23,"aexists"],[85,28,79,30],[85,30,79,32],[85,34,79,36],[85,35,79,37],[86,6,80,8],[86,7,80,9],[86,8,80,10],[86,10,80,12,"utils_ts_1"],[86,20,80,22],[86,21,80,23,"aoutput"],[86,28,80,30],[86,30,80,32,"out"],[86,33,80,35],[86,35,80,37],[86,39,80,41],[86,40,80,42],[87,6,81,8],[87,10,81,12],[87,11,81,13,"finished"],[87,19,81,21],[87,22,81,24],[87,26,81,28],[88,6,82,8],[89,6,83,8],[90,6,84,8],[91,6,85,8],[91,12,85,14],[92,8,85,16,"buffer"],[92,14,85,22],[93,8,85,24,"view"],[93,12,85,28],[94,8,85,30,"blockLen"],[94,16,85,38],[95,8,85,40,"isLE"],[96,6,85,45],[96,7,85,46],[96,10,85,49],[96,14,85,53],[97,6,86,8],[97,10,86,12],[98,8,86,14,"pos"],[99,6,86,18],[99,7,86,19],[99,10,86,22],[99,14,86,26],[100,6,87,8],[101,6,88,8,"buffer"],[101,12,88,14],[101,13,88,15,"pos"],[101,16,88,18],[101,18,88,20],[101,19,88,21],[101,22,88,24],[101,32,88,34],[102,6,89,8],[102,7,89,9],[102,8,89,10],[102,10,89,12,"utils_ts_1"],[102,20,89,22],[102,21,89,23,"clean"],[102,26,89,28],[102,28,89,30],[102,32,89,34],[102,33,89,35,"buffer"],[102,39,89,41],[102,40,89,42,"subarray"],[102,48,89,50],[102,49,89,51,"pos"],[102,52,89,54],[102,53,89,55],[102,54,89,56],[103,6,90,8],[104,6,91,8],[105,6,92,8],[105,10,92,12],[105,14,92,16],[105,15,92,17,"padOffset"],[105,24,92,26],[105,27,92,29,"blockLen"],[105,35,92,37],[105,38,92,40,"pos"],[105,41,92,43],[105,43,92,45],[106,8,93,12],[106,12,93,16],[106,13,93,17,"process"],[106,20,93,24],[106,21,93,25,"view"],[106,25,93,29],[106,27,93,31],[106,28,93,32],[106,29,93,33],[107,8,94,12,"pos"],[107,11,94,15],[107,14,94,18],[107,15,94,19],[108,6,95,8],[109,6,96,8],[110,6,97,8],[110,11,97,13],[110,15,97,17,"i"],[110,16,97,18],[110,19,97,21,"pos"],[110,22,97,24],[110,24,97,26,"i"],[110,25,97,27],[110,28,97,30,"blockLen"],[110,36,97,38],[110,38,97,40,"i"],[110,39,97,41],[110,41,97,43],[110,43,98,12,"buffer"],[110,49,98,18],[110,50,98,19,"i"],[110,51,98,20],[110,52,98,21],[110,55,98,24],[110,56,98,25],[111,6,99,8],[112,6,100,8],[113,6,101,8],[114,6,102,8,"setBigUint64"],[114,18,102,20],[114,19,102,21,"view"],[114,23,102,25],[114,25,102,27,"blockLen"],[114,33,102,35],[114,36,102,38],[114,37,102,39],[114,39,102,41,"BigInt"],[114,45,102,47],[114,46,102,48],[114,50,102,52],[114,51,102,53,"length"],[114,57,102,59],[114,60,102,62],[114,61,102,63],[114,62,102,64],[114,64,102,66,"isLE"],[114,68,102,70],[114,69,102,71],[115,6,103,8],[115,10,103,12],[115,11,103,13,"process"],[115,18,103,20],[115,19,103,21,"view"],[115,23,103,25],[115,25,103,27],[115,26,103,28],[115,27,103,29],[116,6,104,8],[116,12,104,14,"oview"],[116,17,104,19],[116,20,104,22],[116,21,104,23],[116,22,104,24],[116,24,104,26,"utils_ts_1"],[116,34,104,36],[116,35,104,37,"createView"],[116,45,104,47],[116,47,104,49,"out"],[116,50,104,52],[116,51,104,53],[117,6,105,8],[117,12,105,14,"len"],[117,15,105,17],[117,18,105,20],[117,22,105,24],[117,23,105,25,"outputLen"],[117,32,105,34],[118,6,106,8],[119,6,107,8],[119,10,107,12,"len"],[119,13,107,15],[119,16,107,18],[119,17,107,19],[119,19,108,12],[119,25,108,18],[119,29,108,22,"Error"],[119,34,108,27],[119,35,108,28],[119,80,108,73],[119,81,108,74],[120,6,109,8],[120,12,109,14,"outLen"],[120,18,109,20],[120,21,109,23,"len"],[120,24,109,26],[120,27,109,29],[120,28,109,30],[121,6,110,8],[121,12,110,14,"state"],[121,17,110,19],[121,20,110,22],[121,24,110,26],[121,25,110,27,"get"],[121,28,110,30],[121,29,110,31],[121,30,110,32],[122,6,111,8],[122,10,111,12,"outLen"],[122,16,111,18],[122,19,111,21,"state"],[122,24,111,26],[122,25,111,27,"length"],[122,31,111,33],[122,33,112,12],[122,39,112,18],[122,43,112,22,"Error"],[122,48,112,27],[122,49,112,28],[122,85,112,64],[122,86,112,65],[123,6,113,8],[123,11,113,13],[123,15,113,17,"i"],[123,16,113,18],[123,19,113,21],[123,20,113,22],[123,22,113,24,"i"],[123,23,113,25],[123,26,113,28,"outLen"],[123,32,113,34],[123,34,113,36,"i"],[123,35,113,37],[123,37,113,39],[123,39,114,12,"oview"],[123,44,114,17],[123,45,114,18,"setUint32"],[123,54,114,27],[123,55,114,28],[123,56,114,29],[123,59,114,32,"i"],[123,60,114,33],[123,62,114,35,"state"],[123,67,114,40],[123,68,114,41,"i"],[123,69,114,42],[123,70,114,43],[123,72,114,45,"isLE"],[123,76,114,49],[123,77,114,50],[124,4,115,4],[125,4,116,4,"digest"],[125,10,116,10,"digest"],[125,11,116,10],[125,13,116,13],[126,6,117,8],[126,12,117,14],[127,8,117,16,"buffer"],[127,14,117,22],[128,8,117,24,"outputLen"],[129,6,117,34],[129,7,117,35],[129,10,117,38],[129,14,117,42],[130,6,118,8],[130,10,118,12],[130,11,118,13,"digestInto"],[130,21,118,23],[130,22,118,24,"buffer"],[130,28,118,30],[130,29,118,31],[131,6,119,8],[131,12,119,14,"res"],[131,15,119,17],[131,18,119,20,"buffer"],[131,24,119,26],[131,25,119,27,"slice"],[131,30,119,32],[131,31,119,33],[131,32,119,34],[131,34,119,36,"outputLen"],[131,43,119,45],[131,44,119,46],[132,6,120,8],[132,10,120,12],[132,11,120,13,"destroy"],[132,18,120,20],[132,19,120,21],[132,20,120,22],[133,6,121,8],[133,13,121,15,"res"],[133,16,121,18],[134,4,122,4],[135,4,123,4,"_cloneInto"],[135,14,123,14,"_cloneInto"],[135,15,123,15,"to"],[135,17,123,17],[135,19,123,19],[136,6,124,8,"to"],[136,8,124,10],[136,13,124,15,"to"],[136,15,124,17],[136,18,124,20],[136,22,124,24],[136,26,124,28],[136,27,124,29,"constructor"],[136,38,124,40],[136,39,124,41],[136,40,124,42],[136,41,124,43],[137,6,125,8,"to"],[137,8,125,10],[137,9,125,11,"set"],[137,12,125,14],[137,13,125,15],[137,16,125,18],[137,20,125,22],[137,21,125,23,"get"],[137,24,125,26],[137,25,125,27],[137,26,125,28],[137,27,125,29],[138,6,126,8],[138,12,126,14],[139,8,126,16,"blockLen"],[139,16,126,24],[140,8,126,26,"buffer"],[140,14,126,32],[141,8,126,34,"length"],[141,14,126,40],[142,8,126,42,"finished"],[142,16,126,50],[143,8,126,52,"destroyed"],[143,17,126,61],[144,8,126,63,"pos"],[145,6,126,67],[145,7,126,68],[145,10,126,71],[145,14,126,75],[146,6,127,8,"to"],[146,8,127,10],[146,9,127,11,"destroyed"],[146,18,127,20],[146,21,127,23,"destroyed"],[146,30,127,32],[147,6,128,8,"to"],[147,8,128,10],[147,9,128,11,"finished"],[147,17,128,19],[147,20,128,22,"finished"],[147,28,128,30],[148,6,129,8,"to"],[148,8,129,10],[148,9,129,11,"length"],[148,15,129,17],[148,18,129,20,"length"],[148,24,129,26],[149,6,130,8,"to"],[149,8,130,10],[149,9,130,11,"pos"],[149,12,130,14],[149,15,130,17,"pos"],[149,18,130,20],[150,6,131,8],[150,10,131,12,"length"],[150,16,131,18],[150,19,131,21,"blockLen"],[150,27,131,29],[150,29,132,12,"to"],[150,31,132,14],[150,32,132,15,"buffer"],[150,38,132,21],[150,39,132,22,"set"],[150,42,132,25],[150,43,132,26,"buffer"],[150,49,132,32],[150,50,132,33],[151,6,133,8],[151,13,133,15,"to"],[151,15,133,17],[152,4,134,4],[153,4,135,4,"clone"],[153,9,135,9,"clone"],[153,10,135,9],[153,12,135,12],[154,6,136,8],[154,13,136,15],[154,17,136,19],[154,18,136,20,"_cloneInto"],[154,28,136,30],[154,29,136,31],[154,30,136,32],[155,4,137,4],[156,2,138,0],[157,2,139,0,"exports"],[157,9,139,7],[157,10,139,8,"HashMD"],[157,16,139,14],[157,19,139,17,"HashMD"],[157,25,139,23],[158,2,140,0],[159,0,141,0],[160,0,142,0],[161,0,143,0],[162,2,144,0],[163,2,145,0,"exports"],[163,9,145,7],[163,10,145,8,"SHA256_IV"],[163,19,145,17],[163,22,145,20,"Uint32Array"],[163,33,145,31],[163,34,145,32,"from"],[163,38,145,36],[163,39,145,37],[163,40,146,4],[163,50,146,14],[163,52,146,16],[163,62,146,26],[163,64,146,28],[163,74,146,38],[163,76,146,40],[163,86,146,50],[163,88,146,52],[163,98,146,62],[163,100,146,64],[163,110,146,74],[163,112,146,76],[163,122,146,86],[163,124,146,88],[163,134,146,98],[163,135,147,1],[163,136,147,2],[164,2,148,0],[165,2,149,0,"exports"],[165,9,149,7],[165,10,149,8,"SHA224_IV"],[165,19,149,17],[165,22,149,20,"Uint32Array"],[165,33,149,31],[165,34,149,32,"from"],[165,38,149,36],[165,39,149,37],[165,40,150,4],[165,50,150,14],[165,52,150,16],[165,62,150,26],[165,64,150,28],[165,74,150,38],[165,76,150,40],[165,86,150,50],[165,88,150,52],[165,98,150,62],[165,100,150,64],[165,110,150,74],[165,112,150,76],[165,122,150,86],[165,124,150,88],[165,134,150,98],[165,135,151,1],[165,136,151,2],[166,2,152,0],[167,2,153,0,"exports"],[167,9,153,7],[167,10,153,8,"SHA384_IV"],[167,19,153,17],[167,22,153,20,"Uint32Array"],[167,33,153,31],[167,34,153,32,"from"],[167,38,153,36],[167,39,153,37],[167,40,154,4],[167,50,154,14],[167,52,154,16],[167,62,154,26],[167,64,154,28],[167,74,154,38],[167,76,154,40],[167,86,154,50],[167,88,154,52],[167,98,154,62],[167,100,154,64],[167,110,154,74],[167,112,154,76],[167,122,154,86],[167,124,154,88],[167,134,154,98],[167,136,155,4],[167,146,155,14],[167,148,155,16],[167,158,155,26],[167,160,155,28],[167,170,155,38],[167,172,155,40],[167,182,155,50],[167,184,155,52],[167,194,155,62],[167,196,155,64],[167,206,155,74],[167,208,155,76],[167,218,155,86],[167,220,155,88],[167,230,155,98],[167,231,156,1],[167,232,156,2],[168,2,157,0],[169,2,158,0,"exports"],[169,9,158,7],[169,10,158,8,"SHA512_IV"],[169,19,158,17],[169,22,158,20,"Uint32Array"],[169,33,158,31],[169,34,158,32,"from"],[169,38,158,36],[169,39,158,37],[169,40,159,4],[169,50,159,14],[169,52,159,16],[169,62,159,26],[169,64,159,28],[169,74,159,38],[169,76,159,40],[169,86,159,50],[169,88,159,52],[169,98,159,62],[169,100,159,64],[169,110,159,74],[169,112,159,76],[169,122,159,86],[169,124,159,88],[169,134,159,98],[169,136,160,4],[169,146,160,14],[169,148,160,16],[169,158,160,26],[169,160,160,28],[169,170,160,38],[169,172,160,40],[169,182,160,50],[169,184,160,52],[169,194,160,62],[169,196,160,64],[169,206,160,74],[169,208,160,76],[169,218,160,86],[169,220,160,88],[169,230,160,98],[169,231,161,1],[169,232,161,2],[170,0,161,3],[170,3]],"functionMap":{"names":["<global>","setBigUint64","Chi","Maj","HashMD","HashMD#constructor","HashMD#update","HashMD#digestInto","HashMD#digest","HashMD#_cloneInto","HashMD#clone"],"mappings":"AAA;ACY;CDW;AEE;CFE;AGE;CHE;AIK;ICC;KDY;IEC;KF0B;IGC;KHqC;IIC;KJM;IKC;KLW;IMC;KNE;CJC"},"hasCjsExports":true},"type":"js/module"}]} |