mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 07:41:01 +00:00
1 line
17 KiB
Plaintext
1 line
17 KiB
Plaintext
{"dependencies":[{"name":"./hmac.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":5,"column":0,"index":92},"end":{"line":5,"column":33,"index":125}}],"key":"HWJQ8XhqEEqmZqO5PzHwSebHuSc=","exportNames":["*"],"imports":1}},{"name":"./utils.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":7,"column":0,"index":145},"end":{"line":7,"column":108,"index":253}}],"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.pbkdf2 = pbkdf2;\n exports.pbkdf2Async = pbkdf2Async;\n var _hmacJs = require(_dependencyMap[0], \"./hmac.js\");\n var _utilsJs = require(_dependencyMap[1], \"./utils.js\");\n /**\n * PBKDF (RFC 2898). Can be used to create a key from password and salt.\n * @module\n */\n\n // prettier-ignore\n\n // Common prologue and epilogue for sync/async functions\n function pbkdf2Init(hash, _password, _salt, _opts) {\n (0, _utilsJs.ahash)(hash);\n const opts = (0, _utilsJs.checkOpts)({\n dkLen: 32,\n asyncTick: 10\n }, _opts);\n const {\n c,\n dkLen,\n asyncTick\n } = opts;\n (0, _utilsJs.anumber)(c);\n (0, _utilsJs.anumber)(dkLen);\n (0, _utilsJs.anumber)(asyncTick);\n if (c < 1) throw new Error('iterations (c) should be >= 1');\n const password = (0, _utilsJs.kdfInputToBytes)(_password);\n const salt = (0, _utilsJs.kdfInputToBytes)(_salt);\n // DK = PBKDF2(PRF, Password, Salt, c, dkLen);\n const DK = new Uint8Array(dkLen);\n // U1 = PRF(Password, Salt + INT_32_BE(i))\n const PRF = _hmacJs.hmac.create(hash, password);\n const PRFSalt = PRF._cloneInto().update(salt);\n return {\n c,\n dkLen,\n asyncTick,\n DK,\n PRF,\n PRFSalt\n };\n }\n function pbkdf2Output(PRF, PRFSalt, DK, prfW, u) {\n PRF.destroy();\n PRFSalt.destroy();\n if (prfW) prfW.destroy();\n (0, _utilsJs.clean)(u);\n return DK;\n }\n /**\n * PBKDF2-HMAC: RFC 2898 key derivation function\n * @param hash - hash function that would be used e.g. sha256\n * @param password - password from which a derived key is generated\n * @param salt - cryptographic salt\n * @param opts - {c, dkLen} where c is work factor and dkLen is output message size\n * @example\n * const key = pbkdf2(sha256, 'password', 'salt', { dkLen: 32, c: Math.pow(2, 18) });\n */\n function pbkdf2(hash, password, salt, opts) {\n const {\n c,\n dkLen,\n DK,\n PRF,\n PRFSalt\n } = pbkdf2Init(hash, password, salt, opts);\n let prfW; // Working copy\n const arr = new Uint8Array(4);\n const view = (0, _utilsJs.createView)(arr);\n const u = new Uint8Array(PRF.outputLen);\n // DK = T1 + T2 + ⋯ + Tdklen/hlen\n for (let ti = 1, pos = 0; pos < dkLen; ti++, pos += PRF.outputLen) {\n // Ti = F(Password, Salt, c, i)\n const Ti = DK.subarray(pos, pos + PRF.outputLen);\n view.setInt32(0, ti, false);\n // F(Password, Salt, c, i) = U1 ^ U2 ^ ⋯ ^ Uc\n // U1 = PRF(Password, Salt + INT_32_BE(i))\n (prfW = PRFSalt._cloneInto(prfW)).update(arr).digestInto(u);\n Ti.set(u.subarray(0, Ti.length));\n for (let ui = 1; ui < c; ui++) {\n // Uc = PRF(Password, Uc−1)\n PRF._cloneInto(prfW).update(u).digestInto(u);\n for (let i = 0; i < Ti.length; i++) Ti[i] ^= u[i];\n }\n }\n return pbkdf2Output(PRF, PRFSalt, DK, prfW, u);\n }\n /**\n * PBKDF2-HMAC: RFC 2898 key derivation function. Async version.\n * @example\n * await pbkdf2Async(sha256, 'password', 'salt', { dkLen: 32, c: 500_000 });\n */\n async function pbkdf2Async(hash, password, salt, opts) {\n const {\n c,\n dkLen,\n asyncTick,\n DK,\n PRF,\n PRFSalt\n } = pbkdf2Init(hash, password, salt, opts);\n let prfW; // Working copy\n const arr = new Uint8Array(4);\n const view = (0, _utilsJs.createView)(arr);\n const u = new Uint8Array(PRF.outputLen);\n // DK = T1 + T2 + ⋯ + Tdklen/hlen\n for (let ti = 1, pos = 0; pos < dkLen; ti++, pos += PRF.outputLen) {\n // Ti = F(Password, Salt, c, i)\n const Ti = DK.subarray(pos, pos + PRF.outputLen);\n view.setInt32(0, ti, false);\n // F(Password, Salt, c, i) = U1 ^ U2 ^ ⋯ ^ Uc\n // U1 = PRF(Password, Salt + INT_32_BE(i))\n (prfW = PRFSalt._cloneInto(prfW)).update(arr).digestInto(u);\n Ti.set(u.subarray(0, Ti.length));\n await (0, _utilsJs.asyncLoop)(c - 1, asyncTick, () => {\n // Uc = PRF(Password, Uc−1)\n PRF._cloneInto(prfW).update(u).digestInto(u);\n for (let i = 0; i < Ti.length; i++) Ti[i] ^= u[i];\n });\n }\n return pbkdf2Output(PRF, PRFSalt, DK, prfW, u);\n }\n});","lineCount":130,"map":[[7,2,44,0,"exports"],[7,9,44,0],[7,10,44,0,"pbkdf2"],[7,16,44,0],[7,19,44,0,"pbkdf2"],[7,25,44,0],[8,2,73,0,"exports"],[8,9,73,0],[8,10,73,0,"pbkdf2Async"],[8,21,73,0],[8,24,73,0,"pbkdf2Async"],[8,35,73,0],[9,2,5,0],[9,6,5,0,"_hmacJs"],[9,13,5,0],[9,16,5,0,"require"],[9,23,5,0],[9,24,5,0,"_dependencyMap"],[9,38,5,0],[10,2,7,0],[10,6,7,0,"_utilsJs"],[10,14,7,0],[10,17,7,0,"require"],[10,24,7,0],[10,25,7,0,"_dependencyMap"],[10,39,7,0],[11,2,1,0],[12,0,2,0],[13,0,3,0],[14,0,4,0],[16,2,6,0],[18,2,8,0],[19,2,9,0],[19,11,9,9,"pbkdf2Init"],[19,21,9,19,"pbkdf2Init"],[19,22,9,20,"hash"],[19,26,9,24],[19,28,9,26,"_password"],[19,37,9,35],[19,39,9,37,"_salt"],[19,44,9,42],[19,46,9,44,"_opts"],[19,51,9,49],[19,53,9,51],[20,4,10,4],[20,8,10,4,"ahash"],[20,16,10,9],[20,17,10,9,"ahash"],[20,22,10,9],[20,24,10,10,"hash"],[20,28,10,14],[20,29,10,15],[21,4,11,4],[21,10,11,10,"opts"],[21,14,11,14],[21,17,11,17],[21,21,11,17,"checkOpts"],[21,29,11,26],[21,30,11,26,"checkOpts"],[21,39,11,26],[21,41,11,27],[22,6,11,29,"dkLen"],[22,11,11,34],[22,13,11,36],[22,15,11,38],[23,6,11,40,"asyncTick"],[23,15,11,49],[23,17,11,51],[24,4,11,54],[24,5,11,55],[24,7,11,57,"_opts"],[24,12,11,62],[24,13,11,63],[25,4,12,4],[25,10,12,10],[26,6,12,12,"c"],[26,7,12,13],[27,6,12,15,"dkLen"],[27,11,12,20],[28,6,12,22,"asyncTick"],[29,4,12,32],[29,5,12,33],[29,8,12,36,"opts"],[29,12,12,40],[30,4,13,4],[30,8,13,4,"anumber"],[30,16,13,11],[30,17,13,11,"anumber"],[30,24,13,11],[30,26,13,12,"c"],[30,27,13,13],[30,28,13,14],[31,4,14,4],[31,8,14,4,"anumber"],[31,16,14,11],[31,17,14,11,"anumber"],[31,24,14,11],[31,26,14,12,"dkLen"],[31,31,14,17],[31,32,14,18],[32,4,15,4],[32,8,15,4,"anumber"],[32,16,15,11],[32,17,15,11,"anumber"],[32,24,15,11],[32,26,15,12,"asyncTick"],[32,35,15,21],[32,36,15,22],[33,4,16,4],[33,8,16,8,"c"],[33,9,16,9],[33,12,16,12],[33,13,16,13],[33,15,17,8],[33,21,17,14],[33,25,17,18,"Error"],[33,30,17,23],[33,31,17,24],[33,62,17,55],[33,63,17,56],[34,4,18,4],[34,10,18,10,"password"],[34,18,18,18],[34,21,18,21],[34,25,18,21,"kdfInputToBytes"],[34,33,18,36],[34,34,18,36,"kdfInputToBytes"],[34,49,18,36],[34,51,18,37,"_password"],[34,60,18,46],[34,61,18,47],[35,4,19,4],[35,10,19,10,"salt"],[35,14,19,14],[35,17,19,17],[35,21,19,17,"kdfInputToBytes"],[35,29,19,32],[35,30,19,32,"kdfInputToBytes"],[35,45,19,32],[35,47,19,33,"_salt"],[35,52,19,38],[35,53,19,39],[36,4,20,4],[37,4,21,4],[37,10,21,10,"DK"],[37,12,21,12],[37,15,21,15],[37,19,21,19,"Uint8Array"],[37,29,21,29],[37,30,21,30,"dkLen"],[37,35,21,35],[37,36,21,36],[38,4,22,4],[39,4,23,4],[39,10,23,10,"PRF"],[39,13,23,13],[39,16,23,16,"hmac"],[39,23,23,20],[39,24,23,20,"hmac"],[39,28,23,20],[39,29,23,21,"create"],[39,35,23,27],[39,36,23,28,"hash"],[39,40,23,32],[39,42,23,34,"password"],[39,50,23,42],[39,51,23,43],[40,4,24,4],[40,10,24,10,"PRFSalt"],[40,17,24,17],[40,20,24,20,"PRF"],[40,23,24,23],[40,24,24,24,"_cloneInto"],[40,34,24,34],[40,35,24,35],[40,36,24,36],[40,37,24,37,"update"],[40,43,24,43],[40,44,24,44,"salt"],[40,48,24,48],[40,49,24,49],[41,4,25,4],[41,11,25,11],[42,6,25,13,"c"],[42,7,25,14],[43,6,25,16,"dkLen"],[43,11,25,21],[44,6,25,23,"asyncTick"],[44,15,25,32],[45,6,25,34,"DK"],[45,8,25,36],[46,6,25,38,"PRF"],[46,9,25,41],[47,6,25,43,"PRFSalt"],[48,4,25,51],[48,5,25,52],[49,2,26,0],[50,2,27,0],[50,11,27,9,"pbkdf2Output"],[50,23,27,21,"pbkdf2Output"],[50,24,27,22,"PRF"],[50,27,27,25],[50,29,27,27,"PRFSalt"],[50,36,27,34],[50,38,27,36,"DK"],[50,40,27,38],[50,42,27,40,"prfW"],[50,46,27,44],[50,48,27,46,"u"],[50,49,27,47],[50,51,27,49],[51,4,28,4,"PRF"],[51,7,28,7],[51,8,28,8,"destroy"],[51,15,28,15],[51,16,28,16],[51,17,28,17],[52,4,29,4,"PRFSalt"],[52,11,29,11],[52,12,29,12,"destroy"],[52,19,29,19],[52,20,29,20],[52,21,29,21],[53,4,30,4],[53,8,30,8,"prfW"],[53,12,30,12],[53,14,31,8,"prfW"],[53,18,31,12],[53,19,31,13,"destroy"],[53,26,31,20],[53,27,31,21],[53,28,31,22],[54,4,32,4],[54,8,32,4,"clean"],[54,16,32,9],[54,17,32,9,"clean"],[54,22,32,9],[54,24,32,10,"u"],[54,25,32,11],[54,26,32,12],[55,4,33,4],[55,11,33,11,"DK"],[55,13,33,13],[56,2,34,0],[57,2,35,0],[58,0,36,0],[59,0,37,0],[60,0,38,0],[61,0,39,0],[62,0,40,0],[63,0,41,0],[64,0,42,0],[65,0,43,0],[66,2,44,7],[66,11,44,16,"pbkdf2"],[66,17,44,22,"pbkdf2"],[66,18,44,23,"hash"],[66,22,44,27],[66,24,44,29,"password"],[66,32,44,37],[66,34,44,39,"salt"],[66,38,44,43],[66,40,44,45,"opts"],[66,44,44,49],[66,46,44,51],[67,4,45,4],[67,10,45,10],[68,6,45,12,"c"],[68,7,45,13],[69,6,45,15,"dkLen"],[69,11,45,20],[70,6,45,22,"DK"],[70,8,45,24],[71,6,45,26,"PRF"],[71,9,45,29],[72,6,45,31,"PRFSalt"],[73,4,45,39],[73,5,45,40],[73,8,45,43,"pbkdf2Init"],[73,18,45,53],[73,19,45,54,"hash"],[73,23,45,58],[73,25,45,60,"password"],[73,33,45,68],[73,35,45,70,"salt"],[73,39,45,74],[73,41,45,76,"opts"],[73,45,45,80],[73,46,45,81],[74,4,46,4],[74,8,46,8,"prfW"],[74,12,46,12],[74,13,46,13],[74,14,46,14],[75,4,47,4],[75,10,47,10,"arr"],[75,13,47,13],[75,16,47,16],[75,20,47,20,"Uint8Array"],[75,30,47,30],[75,31,47,31],[75,32,47,32],[75,33,47,33],[76,4,48,4],[76,10,48,10,"view"],[76,14,48,14],[76,17,48,17],[76,21,48,17,"createView"],[76,29,48,27],[76,30,48,27,"createView"],[76,40,48,27],[76,42,48,28,"arr"],[76,45,48,31],[76,46,48,32],[77,4,49,4],[77,10,49,10,"u"],[77,11,49,11],[77,14,49,14],[77,18,49,18,"Uint8Array"],[77,28,49,28],[77,29,49,29,"PRF"],[77,32,49,32],[77,33,49,33,"outputLen"],[77,42,49,42],[77,43,49,43],[78,4,50,4],[79,4,51,4],[79,9,51,9],[79,13,51,13,"ti"],[79,15,51,15],[79,18,51,18],[79,19,51,19],[79,21,51,21,"pos"],[79,24,51,24],[79,27,51,27],[79,28,51,28],[79,30,51,30,"pos"],[79,33,51,33],[79,36,51,36,"dkLen"],[79,41,51,41],[79,43,51,43,"ti"],[79,45,51,45],[79,47,51,47],[79,49,51,49,"pos"],[79,52,51,52],[79,56,51,56,"PRF"],[79,59,51,59],[79,60,51,60,"outputLen"],[79,69,51,69],[79,71,51,71],[80,6,52,8],[81,6,53,8],[81,12,53,14,"Ti"],[81,14,53,16],[81,17,53,19,"DK"],[81,19,53,21],[81,20,53,22,"subarray"],[81,28,53,30],[81,29,53,31,"pos"],[81,32,53,34],[81,34,53,36,"pos"],[81,37,53,39],[81,40,53,42,"PRF"],[81,43,53,45],[81,44,53,46,"outputLen"],[81,53,53,55],[81,54,53,56],[82,6,54,8,"view"],[82,10,54,12],[82,11,54,13,"setInt32"],[82,19,54,21],[82,20,54,22],[82,21,54,23],[82,23,54,25,"ti"],[82,25,54,27],[82,27,54,29],[82,32,54,34],[82,33,54,35],[83,6,55,8],[84,6,56,8],[85,6,57,8],[85,7,57,9,"prfW"],[85,11,57,13],[85,14,57,16,"PRFSalt"],[85,21,57,23],[85,22,57,24,"_cloneInto"],[85,32,57,34],[85,33,57,35,"prfW"],[85,37,57,39],[85,38,57,40],[85,40,57,42,"update"],[85,46,57,48],[85,47,57,49,"arr"],[85,50,57,52],[85,51,57,53],[85,52,57,54,"digestInto"],[85,62,57,64],[85,63,57,65,"u"],[85,64,57,66],[85,65,57,67],[86,6,58,8,"Ti"],[86,8,58,10],[86,9,58,11,"set"],[86,12,58,14],[86,13,58,15,"u"],[86,14,58,16],[86,15,58,17,"subarray"],[86,23,58,25],[86,24,58,26],[86,25,58,27],[86,27,58,29,"Ti"],[86,29,58,31],[86,30,58,32,"length"],[86,36,58,38],[86,37,58,39],[86,38,58,40],[87,6,59,8],[87,11,59,13],[87,15,59,17,"ui"],[87,17,59,19],[87,20,59,22],[87,21,59,23],[87,23,59,25,"ui"],[87,25,59,27],[87,28,59,30,"c"],[87,29,59,31],[87,31,59,33,"ui"],[87,33,59,35],[87,35,59,37],[87,37,59,39],[88,8,60,12],[89,8,61,12,"PRF"],[89,11,61,15],[89,12,61,16,"_cloneInto"],[89,22,61,26],[89,23,61,27,"prfW"],[89,27,61,31],[89,28,61,32],[89,29,61,33,"update"],[89,35,61,39],[89,36,61,40,"u"],[89,37,61,41],[89,38,61,42],[89,39,61,43,"digestInto"],[89,49,61,53],[89,50,61,54,"u"],[89,51,61,55],[89,52,61,56],[90,8,62,12],[90,13,62,17],[90,17,62,21,"i"],[90,18,62,22],[90,21,62,25],[90,22,62,26],[90,24,62,28,"i"],[90,25,62,29],[90,28,62,32,"Ti"],[90,30,62,34],[90,31,62,35,"length"],[90,37,62,41],[90,39,62,43,"i"],[90,40,62,44],[90,42,62,46],[90,44,63,16,"Ti"],[90,46,63,18],[90,47,63,19,"i"],[90,48,63,20],[90,49,63,21],[90,53,63,25,"u"],[90,54,63,26],[90,55,63,27,"i"],[90,56,63,28],[90,57,63,29],[91,6,64,8],[92,4,65,4],[93,4,66,4],[93,11,66,11,"pbkdf2Output"],[93,23,66,23],[93,24,66,24,"PRF"],[93,27,66,27],[93,29,66,29,"PRFSalt"],[93,36,66,36],[93,38,66,38,"DK"],[93,40,66,40],[93,42,66,42,"prfW"],[93,46,66,46],[93,48,66,48,"u"],[93,49,66,49],[93,50,66,50],[94,2,67,0],[95,2,68,0],[96,0,69,0],[97,0,70,0],[98,0,71,0],[99,0,72,0],[100,2,73,7],[100,17,73,22,"pbkdf2Async"],[100,28,73,33,"pbkdf2Async"],[100,29,73,34,"hash"],[100,33,73,38],[100,35,73,40,"password"],[100,43,73,48],[100,45,73,50,"salt"],[100,49,73,54],[100,51,73,56,"opts"],[100,55,73,60],[100,57,73,62],[101,4,74,4],[101,10,74,10],[102,6,74,12,"c"],[102,7,74,13],[103,6,74,15,"dkLen"],[103,11,74,20],[104,6,74,22,"asyncTick"],[104,15,74,31],[105,6,74,33,"DK"],[105,8,74,35],[106,6,74,37,"PRF"],[106,9,74,40],[107,6,74,42,"PRFSalt"],[108,4,74,50],[108,5,74,51],[108,8,74,54,"pbkdf2Init"],[108,18,74,64],[108,19,74,65,"hash"],[108,23,74,69],[108,25,74,71,"password"],[108,33,74,79],[108,35,74,81,"salt"],[108,39,74,85],[108,41,74,87,"opts"],[108,45,74,91],[108,46,74,92],[109,4,75,4],[109,8,75,8,"prfW"],[109,12,75,12],[109,13,75,13],[109,14,75,14],[110,4,76,4],[110,10,76,10,"arr"],[110,13,76,13],[110,16,76,16],[110,20,76,20,"Uint8Array"],[110,30,76,30],[110,31,76,31],[110,32,76,32],[110,33,76,33],[111,4,77,4],[111,10,77,10,"view"],[111,14,77,14],[111,17,77,17],[111,21,77,17,"createView"],[111,29,77,27],[111,30,77,27,"createView"],[111,40,77,27],[111,42,77,28,"arr"],[111,45,77,31],[111,46,77,32],[112,4,78,4],[112,10,78,10,"u"],[112,11,78,11],[112,14,78,14],[112,18,78,18,"Uint8Array"],[112,28,78,28],[112,29,78,29,"PRF"],[112,32,78,32],[112,33,78,33,"outputLen"],[112,42,78,42],[112,43,78,43],[113,4,79,4],[114,4,80,4],[114,9,80,9],[114,13,80,13,"ti"],[114,15,80,15],[114,18,80,18],[114,19,80,19],[114,21,80,21,"pos"],[114,24,80,24],[114,27,80,27],[114,28,80,28],[114,30,80,30,"pos"],[114,33,80,33],[114,36,80,36,"dkLen"],[114,41,80,41],[114,43,80,43,"ti"],[114,45,80,45],[114,47,80,47],[114,49,80,49,"pos"],[114,52,80,52],[114,56,80,56,"PRF"],[114,59,80,59],[114,60,80,60,"outputLen"],[114,69,80,69],[114,71,80,71],[115,6,81,8],[116,6,82,8],[116,12,82,14,"Ti"],[116,14,82,16],[116,17,82,19,"DK"],[116,19,82,21],[116,20,82,22,"subarray"],[116,28,82,30],[116,29,82,31,"pos"],[116,32,82,34],[116,34,82,36,"pos"],[116,37,82,39],[116,40,82,42,"PRF"],[116,43,82,45],[116,44,82,46,"outputLen"],[116,53,82,55],[116,54,82,56],[117,6,83,8,"view"],[117,10,83,12],[117,11,83,13,"setInt32"],[117,19,83,21],[117,20,83,22],[117,21,83,23],[117,23,83,25,"ti"],[117,25,83,27],[117,27,83,29],[117,32,83,34],[117,33,83,35],[118,6,84,8],[119,6,85,8],[120,6,86,8],[120,7,86,9,"prfW"],[120,11,86,13],[120,14,86,16,"PRFSalt"],[120,21,86,23],[120,22,86,24,"_cloneInto"],[120,32,86,34],[120,33,86,35,"prfW"],[120,37,86,39],[120,38,86,40],[120,40,86,42,"update"],[120,46,86,48],[120,47,86,49,"arr"],[120,50,86,52],[120,51,86,53],[120,52,86,54,"digestInto"],[120,62,86,64],[120,63,86,65,"u"],[120,64,86,66],[120,65,86,67],[121,6,87,8,"Ti"],[121,8,87,10],[121,9,87,11,"set"],[121,12,87,14],[121,13,87,15,"u"],[121,14,87,16],[121,15,87,17,"subarray"],[121,23,87,25],[121,24,87,26],[121,25,87,27],[121,27,87,29,"Ti"],[121,29,87,31],[121,30,87,32,"length"],[121,36,87,38],[121,37,87,39],[121,38,87,40],[122,6,88,8],[122,12,88,14],[122,16,88,14,"asyncLoop"],[122,24,88,23],[122,25,88,23,"asyncLoop"],[122,34,88,23],[122,36,88,24,"c"],[122,37,88,25],[122,40,88,28],[122,41,88,29],[122,43,88,31,"asyncTick"],[122,52,88,40],[122,54,88,42],[122,60,88,48],[123,8,89,12],[124,8,90,12,"PRF"],[124,11,90,15],[124,12,90,16,"_cloneInto"],[124,22,90,26],[124,23,90,27,"prfW"],[124,27,90,31],[124,28,90,32],[124,29,90,33,"update"],[124,35,90,39],[124,36,90,40,"u"],[124,37,90,41],[124,38,90,42],[124,39,90,43,"digestInto"],[124,49,90,53],[124,50,90,54,"u"],[124,51,90,55],[124,52,90,56],[125,8,91,12],[125,13,91,17],[125,17,91,21,"i"],[125,18,91,22],[125,21,91,25],[125,22,91,26],[125,24,91,28,"i"],[125,25,91,29],[125,28,91,32,"Ti"],[125,30,91,34],[125,31,91,35,"length"],[125,37,91,41],[125,39,91,43,"i"],[125,40,91,44],[125,42,91,46],[125,44,92,16,"Ti"],[125,46,92,18],[125,47,92,19,"i"],[125,48,92,20],[125,49,92,21],[125,53,92,25,"u"],[125,54,92,26],[125,55,92,27,"i"],[125,56,92,28],[125,57,92,29],[126,6,93,8],[126,7,93,9],[126,8,93,10],[127,4,94,4],[128,4,95,4],[128,11,95,11,"pbkdf2Output"],[128,23,95,23],[128,24,95,24,"PRF"],[128,27,95,27],[128,29,95,29,"PRFSalt"],[128,36,95,36],[128,38,95,38,"DK"],[128,40,95,40],[128,42,95,42,"prfW"],[128,46,95,46],[128,48,95,48,"u"],[128,49,95,49],[128,50,95,50],[129,2,96,0],[130,0,96,1],[130,3]],"functionMap":{"names":["<global>","pbkdf2Init","pbkdf2Output","pbkdf2","pbkdf2Async","asyncLoop$argument_2"],"mappings":"AAA;ACQ;CDiB;AEC;CFO;OGU;CHuB;OIM;0CCe;SDK;CJG"},"hasCjsExports":false},"type":"js/module"}]} |