{"_attachments":{},"_id":"js-md5","_rev":"56204-61f181dcab210505a88a0a0b","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","dist-tags":{"latest":"0.8.3"},"license":"MIT","maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"name":"js-md5","readme":"# js-md5\n[![Build Status](https://travis-ci.org/emn178/js-md5.svg?branch=master)](https://travis-ci.org/emn178/js-md5)\n[![Coverage Status](https://coveralls.io/repos/emn178/js-md5/badge.svg?branch=master)](https://coveralls.io/r/emn178/js-md5?branch=master)  \n[![NPM](https://nodei.co/npm/js-md5.png?stars&downloads)](https://nodei.co/npm/js-md5/)\n\nA simple and fast MD5 hash function for JavaScript supports UTF-8 encoding.\n\n## Demo\n[MD5 Online](http://emn178.github.io/online-tools/md5.html)  \n[MD5 File Checksum Online](http://emn178.github.io/online-tools/md5_checksum.html)\n\n## Download\n[Compress](https://raw.github.com/emn178/js-md5/master/build/md5.min.js)  \n[Uncompress](https://raw.github.com/emn178/js-md5/master/src/md5.js)\n\n## Benchmark\n[jsPerf Benchmark](https://jsperf.app/jonuhi)  \n[File Benchmark](https://github.com/emn178/js-md5/issues/19)\n\n## Installation\nYou can also install js-md5 by using Bower.\n\n    bower install md5\n\nFor node.js, you can use this command to install:\n\n    npm install js-md5\n\n## Notice\n`buffer` method is deprecated. This maybe confuse with Buffer in node.js. Please use `arrayBuffer` instead.\n\n## Usage\nYou could use like this:\n```JavaScript\nmd5('Message to hash');\nvar hash = md5.create();\nhash.update('Message to hash');\nhash.hex();\n\n// HMAC\nmd5.hmac('key', 'Message to hash');\n\nvar hash = md5.hmac.create('key');\nhash.update('Message to hash');\nhash.hex();\n```\n\n### Node.js\nIf you use node.js, you should require the module first:\n```JavaScript\nvar md5 = require('js-md5');\n```\n\n### TypeScript\nIf you use TypeScript, you can import like this:\n```TypeScript\nimport { md5 } from 'js-md5';\n```\n\n## RequireJS\nIt supports AMD:\n```JavaScript\nrequire(['your/path/md5.js'], function(md5) {\n// ...\n});\n```\n[See document](https://emn178.github.com/js-md5/doc/)\n\n## Example\n```JavaScript\nmd5(''); // d41d8cd98f00b204e9800998ecf8427e\nmd5('The quick brown fox jumps over the lazy dog'); // 9e107d9d372bb6826bd81d3542a419d6\nmd5('The quick brown fox jumps over the lazy dog.'); // e4d909c290d0fb1ca068ffaddf22cbd0\n\n// It also supports UTF-8 encoding\nmd5('中文'); // a7bac2239fcdcb3a067903d8077c4a07\n\n// It also supports byte `Array`, `Uint8Array`, `ArrayBuffer`\nmd5([]); // d41d8cd98f00b204e9800998ecf8427e\nmd5(new Uint8Array([])); // d41d8cd98f00b204e9800998ecf8427e\n\n// Different output\nmd5(''); // d41d8cd98f00b204e9800998ecf8427e\nmd5.hex(''); // d41d8cd98f00b204e9800998ecf8427e\nmd5.array(''); // [212, 29, 140, 217, 143, 0, 178, 4, 233, 128, 9, 152, 236, 248, 66, 126]\nmd5.digest(''); // [212, 29, 140, 217, 143, 0, 178, 4, 233, 128, 9, 152, 236, 248, 66, 126]\nmd5.arrayBuffer(''); // ArrayBuffer\nmd5.buffer(''); // ArrayBuffer, deprecated, This maybe confuse with Buffer in node.js. Please use arrayBuffer instead.\nmd5.base64(''); // 1B2M2Y8AsgTpgAmY7PhCfg==\n\n// HMAC\nmd5.hmac.hex('key', 'Message to hash');\nmd5.hmac.array('key', 'Message to hash');\n// ...\n```\n\n## License\nThe project is released under the [MIT license](https://opensource.org/license/mit/).\n\n## Contact\nThe project's website is located at https://github.com/emn178/js-md5  \nAuthor: Chen, Yi-Cyuan (emn178@gmail.com)\n","time":{"created":"2022-01-26T17:16:12.487Z","modified":"2023-10-09T16:08:45.482Z","0.7.3":"2017-12-18T11:01:15.384Z","0.7.2":"2017-10-31T12:31:19.817Z","0.7.1":"2017-10-29T13:25:23.102Z","0.7.0":"2017-10-29T12:21:29.987Z","0.6.1":"2017-10-07T02:17:14.844Z","0.6.0":"2017-07-28T06:27:32.262Z","0.5.0":"2017-07-14T05:38:37.874Z","0.4.2":"2017-01-18T01:54:48.090Z","0.4.1":"2016-03-31T08:29:47.567Z","0.4.0":"2015-12-28T08:19:02.395Z","0.3.0":"2015-03-07T08:34:48.707Z","0.2.2":"2015-02-01T07:18:22.199Z","0.2.1":"2015-01-13T15:05:47.176Z","0.2.0":"2015-01-12T13:48:39.436Z","0.1.3":"2015-01-05T13:21:37.341Z","0.1.2":"2014-07-27T11:48:56.522Z","0.1.1":"2014-01-05T04:53:18.157Z","0.1.0":"2014-01-04T08:36:09.839Z","0.8.0":"2023-09-27T13:36:34.007Z","0.8.1":"2023-10-09T15:46:54.855Z","0.8.2":"2023-10-09T15:58:34.799Z","0.8.3":"2023-10-09T16:04:40.628Z"},"versions":{"0.7.3":{"name":"js-md5","version":"0.7.3","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jsdoc":"^3.4.0","mocha":"~2.3.4","nyc":"^11.3.0","requirejs":"^2.1.22","uglify-js":"^3.1.9","webworker-threads":"^0.7.11"},"scripts":{"test":"nyc mocha tests/node-test.js","report":"nyc --reporter=html --reporter=text mocha tests/node-test.js","coveralls":"nyc report --reporter=text-lcov | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js -c -m eval --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"nyc":{"exclude":["tests"]},"gitHead":"0263ab835f4847351a710f98488203108c0e1e90","_id":"js-md5@0.7.3","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"b4f2fbb0b327455f598d6727e38ec272cd09c3f2","size":9952,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.7.3.tgz","integrity":"sha512-ZC41vPSTLKGwIRjqDh8DfXoCrdQIyBgspJVPXHBGu4nZlAEvG3nf+jO9avM9RmLiGakg7vz974ms99nEV0tmTQ=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5-0.7.3.tgz_1513594875244_0.8298113788478076"},"directories":{},"publish_time":1513594875384,"_hasShrinkwrap":false,"_cnpm_publish_time":1513594875384,"_cnpmcore_publish_time":"2021-12-16T09:55:22.366Z"},"0.7.2":{"name":"js-md5","version":"0.7.2","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglify-js":"~2.4.10","webworker-threads":"^0.7.11"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"5f0bd5a888035b59146266a356ebf9690057be2d","_id":"js-md5@0.7.2","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"faa684b09b3b51a8e43ab6d9e5c823c8ad44b11a","size":437151,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.7.2.tgz","integrity":"sha512-PCMcYyyc/O6p/bmHZgeWKI7UzB2m2ZqQAsic59jgWmrVDKIuTBAXWh31R8VnS7Y4eVArw0FCb7svUyWZwQQemw=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5-0.7.2.tgz_1509453079615_0.19436176400631666"},"directories":{},"publish_time":1509453079817,"_hasShrinkwrap":false,"_cnpm_publish_time":1509453079817,"_cnpmcore_publish_time":"2021-12-16T09:55:22.813Z"},"0.7.1":{"name":"js-md5","version":"0.7.1","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglify-js":"~2.4.10","webworker-threads":"^0.7.11"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"cb8eb73ef1e14e2bef236798129c1abf5cbed99c","_id":"js-md5@0.7.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"4f6f8fe22f9e09ad4a65ba67a780a76c0922bb75","size":437138,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.7.1.tgz","integrity":"sha512-r95tHFPpbyM9EOavNqxqXWsvv5RxcZyYE+MKYsW1EENk6K31gHsHPfefyd//nwexSmVf03dmQLxtgCefsPlVbw=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5-0.7.1.tgz_1509283522967_0.4098371914587915"},"directories":{},"publish_time":1509283523102,"_hasShrinkwrap":false,"_cnpm_publish_time":1509283523102,"_cnpmcore_publish_time":"2021-12-16T09:55:23.121Z"},"0.7.0":{"name":"js-md5","version":"0.7.0","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglify-js":"~2.4.10","webworker-threads":"^0.7.11"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"24d8eb504dcfd6ad29c03e52fb9e61a43d120901","_id":"js-md5@0.7.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"a23ca7de2c65ccf5cb654f87e2ddb50698de5612","size":436941,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.7.0.tgz","integrity":"sha512-BjoHoXQCJoBkhlFX5xoA0Gm0w21FL6QETfx6Eh6xM4QH9f83F/Fn8jcarew7iiorDsYRNBIWldrKFsXT7uUgqA=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5-0.7.0.tgz_1509279689890_0.901683020638302"},"directories":{},"publish_time":1509279689987,"_hasShrinkwrap":false,"_cnpm_publish_time":1509279689987,"_cnpmcore_publish_time":"2021-12-16T09:55:23.653Z"},"0.6.1":{"name":"js-md5","version":"0.6.1","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglify-js":"~2.4.10","webworker-threads":"^0.7.11"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"a54f102b8aecb6fb47cbcb39b58b95cc596262f0","_id":"js-md5@0.6.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"7765ad6b4be503b6493a04437d40cffd262195f5","size":436889,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.6.1.tgz","integrity":"sha512-lyUTXOqMEaA9mm38mHxbTo83WsYAvMJm850kxJcRno3T2qL+e40B2G89E0/4r9TdAeB3jN0TdSVp/VHNI6/WyQ=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5-0.6.1.tgz_1507342634673_0.07454115431755781"},"directories":{},"publish_time":1507342634844,"_hasShrinkwrap":false,"_cnpm_publish_time":1507342634844,"_cnpmcore_publish_time":"2021-12-16T09:55:24.186Z"},"0.6.0":{"name":"js-md5","version":"0.6.0","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglify-js":"~2.4.10","webworker-threads":"^0.7.11"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"b808ed46051a30e6c8f799b085cb97ac8f7dc889","_id":"js-md5@0.6.0","_shasum":"d9a083b268b63f56f3d709b841a667136e2bfb06","_from":".","_npmVersion":"3.10.8","_nodeVersion":"4.6.0","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"d9a083b268b63f56f3d709b841a667136e2bfb06","size":436733,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.6.0.tgz","integrity":"sha512-HjueLLFYzMK7qFoiEEsnWzJqZzhBTQVDJluw8qIcOrIkGTuCJb8E9lRRGZ4TG78YoCsp6224Q6trG2Gxz5K76g=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5-0.6.0.tgz_1501223251866_0.5148692417424172"},"directories":{},"publish_time":1501223252262,"_hasShrinkwrap":false,"_cnpm_publish_time":1501223252262,"_cnpmcore_publish_time":"2021-12-16T09:55:24.781Z"},"0.5.0":{"name":"js-md5","version":"0.5.0","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglifyjs":"~2.4.10","webworker-threads":"^0.7.11"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"2bdc4894fc88acb33c7fad656e6d0f152119ef87","_id":"js-md5@0.5.0","_shasum":"88df8ec9da1c706853a809d0abf7475c44fbdb1a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"88df8ec9da1c706853a809d0abf7475c44fbdb1a","size":435486,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.5.0.tgz","integrity":"sha512-m5Sur9a2MgMUA87RdqQQt3BXseTn4Re464j/HJGbOVVco0r/3SQsECe9eQbG2IZJfB6aum22wQEfBfOTBOij0A=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5-0.5.0.tgz_1500010717746_0.09469310962595046"},"directories":{},"publish_time":1500010717874,"_hasShrinkwrap":false,"_cnpm_publish_time":1500010717874,"_cnpmcore_publish_time":"2021-12-16T09:55:25.419Z"},"0.4.2":{"name":"js-md5","version":"0.4.2","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglifyjs":"~2.4.10"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"8b9a23ce324d3af762796a41f6eb2b9a88ba7df2","_id":"js-md5@0.4.2","_shasum":"8a1231e60ab392a6d3a75db6d532ec0c59667bc3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.5.0","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"8a1231e60ab392a6d3a75db6d532ec0c59667bc3","size":433824,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.4.2.tgz","integrity":"sha512-ZtHHb9VgR5nWkSXIjaGES/UOkoyougdO9MXdDRmLKRQ5DOoJiBBG+AnwHRwlf/QXNOkLUmTtMDfJMEO7O5dJCQ=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/js-md5-0.4.2.tgz_1484704487853_0.5202447569463402"},"directories":{},"publish_time":1484704488090,"_hasShrinkwrap":false,"_cnpm_publish_time":1484704488090,"_cnpmcore_publish_time":"2021-12-16T09:55:25.759Z"},"0.4.1":{"name":"js-md5","version":"0.4.1","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglifyjs":"~2.4.10"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"5fcee844170c376f3c76c530f65b2f4db317c52a","_id":"js-md5@0.4.1","_shasum":"11519a54167ea3ef9baffb6fbcd5e65bc7da94be","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"11519a54167ea3ef9baffb6fbcd5e65bc7da94be","size":434709,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.4.1.tgz","integrity":"sha512-Q46HeqH9cjDynGm2hOmexV0vCkTO9Vxcf3x2B16pik3lMFKs6yPcjtFEOnF0ePpZjIjecQG+Yxtc17nB51he6A=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/js-md5-0.4.1.tgz_1459412987059_0.19644561153836548"},"directories":{},"publish_time":1459412987567,"_hasShrinkwrap":false,"_cnpm_publish_time":1459412987567,"_cnpmcore_publish_time":"2021-12-16T09:55:26.247Z"},"0.4.0":{"name":"js-md5","version":"0.4.0","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9","jsdoc":"^3.4.0","mocha":"~2.3.4","requirejs":"^2.1.22","uglifyjs":"~2.4.10"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","report":"mocha tests/node-test.js -r jscoverage --covout=html","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js --compress --mangle --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"261e55bd5c937e7498d41b31ac0c76274b70f92f","_id":"js-md5@0.4.0","_shasum":"a3951257bc9d0c0d164cf86ac69a2b6fd2f15961","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"dist":{"shasum":"a3951257bc9d0c0d164cf86ac69a2b6fd2f15961","size":434665,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.4.0.tgz","integrity":"sha512-uJgRzWRV5egOxKcfi6t1L0+DeGol7R/oucR+D35P5s8UzSRHxLIV4ccRRneTfwbQN/K6Td6Z7PWIeP6GxhyBiA=="},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"directories":{},"publish_time":1451290742395,"_hasShrinkwrap":false,"_cnpm_publish_time":1451290742395,"_cnpmcore_publish_time":"2021-12-16T09:55:26.689Z"},"0.3.0":{"name":"js-md5","version":"0.3.0","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls"},"repository":{"type":"git","url":"https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"d1af3f6065cba29a2ca6563c0af32f23a386b0c7","_id":"js-md5@0.3.0","_shasum":"56a6d70037bca65aff7f14ca43724e47a7825d12","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"dist":{"shasum":"56a6d70037bca65aff7f14ca43724e47a7825d12","size":10504,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.3.0.tgz","integrity":"sha512-A3MJW7kXu9/gMBSaIUtKeIbKXTzWuMOCHklhsdStYLYCG6Oq+N7tg/9gRT451fCx+N98z+sN4PvAgdO1m+Lp/w=="},"directories":{},"publish_time":1425717288707,"_hasShrinkwrap":false,"_cnpm_publish_time":1425717288707,"_cnpmcore_publish_time":"2021-12-16T09:55:26.951Z"},"0.2.2":{"name":"js-md5","version":"0.2.2","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls"},"repository":{"type":"git","url":"https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"e36b8d13f7d96ec593dd588afa31fd96fdb8c005","_id":"js-md5@0.2.2","_shasum":"af0f1aec20ef71eacdc266775b0ee7891682fc0c","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"dist":{"shasum":"af0f1aec20ef71eacdc266775b0ee7891682fc0c","size":9858,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.2.2.tgz","integrity":"sha512-o35qp2xhk9iuiAKS4blKNyOKerQ71eAVwLylcyPQDnC2wwtNeTU8gEh35a8bOyMSBNtBdP+y0QJPUDvvqvdUOQ=="},"directories":{},"publish_time":1422775102199,"_hasShrinkwrap":false,"_cnpm_publish_time":1422775102199,"_cnpmcore_publish_time":"2021-12-16T09:55:27.271Z"},"0.2.1":{"name":"js-md5","version":"0.2.1","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls"},"repository":{"type":"git","url":"https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"gitHead":"5cf8fc9215929eb5c2b50ae384f8755f9ca70e1b","_id":"js-md5@0.2.1","_shasum":"b17493b1accd130275acb451567464de76fd1603","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"dist":{"shasum":"b17493b1accd130275acb451567464de76fd1603","size":9571,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.2.1.tgz","integrity":"sha512-eZD+PzrtHrWE1wmSklTBytwo7ISXtxa7F3OLifKvg/PitlnhCBeV82/j5FhSeNFQuH5YQ2gSkp+e+I0HpNPOmg=="},"directories":{},"publish_time":1421161547176,"_hasShrinkwrap":false,"_cnpm_publish_time":1421161547176,"_cnpmcore_publish_time":"2021-12-16T09:55:27.561Z"},"0.2.0":{"name":"js-md5","version":"0.2.0","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls"},"repository":{"type":"git","url":"https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"_id":"js-md5@0.2.0","dist":{"shasum":"15143ea901dc27716e160541824ddcc1db6daf9a","size":9083,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.2.0.tgz","integrity":"sha512-2uM/c18rH1W0qTAiA8yhz1XXRkf/7H2j0cngll9CnhNFPpNomgqIqNUG8kCRXpx1wU5ydPT2PHQrwGEl4RpuDA=="},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"directories":{},"publish_time":1421070519436,"_hasShrinkwrap":false,"_cnpm_publish_time":1421070519436,"_cnpmcore_publish_time":"2021-12-16T09:55:27.759Z"},"0.1.3":{"name":"js-md5","version":"0.1.3","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jscoverage":"~0.5.9"},"scripts":{"test":"mocha tests/node-test.js -r jscoverage","coveralls":"mocha tests/node-test.js -R mocha-lcov-reporter -r jscoverage | coveralls"},"repository":{"type":"git","url":"https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"_id":"js-md5@0.1.3","dist":{"shasum":"9e762e7362403a33094643fd450a4eca5787a7bb","size":8606,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.1.3.tgz","integrity":"sha512-xN6d3kmrUWj2AAkxRmlpttZIeDnJmEqkIeHjWiEnaAUnT1KneruYuBug3wfubcTQRsP2URDGk00AeHQv47qaYg=="},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"directories":{},"publish_time":1420464097341,"_hasShrinkwrap":false,"_cnpm_publish_time":1420464097341,"_cnpmcore_publish_time":"2021-12-16T09:55:27.975Z"},"0.1.2":{"name":"js-md5","version":"0.1.2","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","scripts":{"test":"node tests/node-test.js"},"repository":{"type":"git","url":"https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"_id":"js-md5@0.1.2","dist":{"shasum":"6418a883631be0c4d2d4854c62ff1b314b0f143b","size":5275,"noattachment":false,"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.1.2.tgz","integrity":"sha512-tBhJ8oWYvGhNadiF01Tts9RRseKrjVV8r1zC1mEjy75FrS+a/TES20H5jDmxyuNW+gigYnzJK49og57OwVUkig=="},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"directories":{},"publish_time":1406461736522,"_hasShrinkwrap":false,"_cnpm_publish_time":1406461736522,"_cnpmcore_publish_time":"2021-12-16T09:55:28.184Z"},"0.1.1":{"name":"js-md5","version":"0.1.1","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","scripts":{"test":"node tests/node-test.js"},"repository":{"type":"git","url":"https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"readmeFilename":"README.md","_id":"js-md5@0.1.1","dist":{"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.1.1.tgz","shasum":"f4109508aa7e73ba6ac04c9d274e46f93a68bb5f","size":5212,"noattachment":false,"integrity":"sha512-QJowCHSoZfWuS5rEymLMcZu07SqgTqFMk+S+rgxKuk3fMiTXEuPV09xtBiTcIuGiMUZJJ6F5aXE5iTdk8wVfHQ=="},"_from":"./","_npmVersion":"1.3.8","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"directories":{},"publish_time":1388897598157,"_hasShrinkwrap":false,"_cnpm_publish_time":1388897598157,"_cnpmcore_publish_time":"2021-12-16T09:55:28.403Z"},"0.1.0":{"name":"js-md5","version":"0.1.0","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","scripts":{"test":"node tests/node-test.js"},"repository":{"type":"git","url":"https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption"],"author":{"name":"emn178","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"readmeFilename":"README.md","_id":"js-md5@0.1.0","dist":{"tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.1.0.tgz","shasum":"95ec794fa8b2c3f10fd27956d5108fe16375251a","size":4407,"noattachment":false,"integrity":"sha512-HS+BMEK68uVLC65hJpmDm8yTPUkd8xbfLB/gYLA6cX4dzuGt0SwnQTuNKuvuplara6xPVlTryFz6M6Z+vlQxSg=="},"_from":"./","_npmVersion":"1.3.8","_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"directories":{},"publish_time":1388824569839,"_hasShrinkwrap":false,"_cnpm_publish_time":1388824569839,"_cnpmcore_publish_time":"2021-12-16T09:55:28.616Z"},"0.8.0":{"name":"js-md5","version":"0.8.0","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jsdoc":"~4.0.2","mocha":"~10.2.0","nyc":"^15.1.0","requirejs":"^2.1.22","tiny-worker":"^2.3.0","uglify-js":"^3.1.9"},"scripts":{"test":"nyc mocha tests/node-test.js","report":"nyc --reporter=html --reporter=text mocha tests/node-test.js","coveralls":"nyc report --reporter=text-lcov | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js -c -m eval --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"nyc":{"exclude":["tests"]},"gitHead":"bdf11500979645fe91732fa58467f8a313d9ca2c","_id":"js-md5@0.8.0","_nodeVersion":"14.17.1","_npmVersion":"6.14.13","dist":{"integrity":"sha512-1P89P93CEdNOvn55xl3qNY4L9SYxU65bCC/P+8Z6RKCkwJjCg4kGtiDosnwWKKxoGk+ojqBie9cL6XdQZR6c3w==","shasum":"e96662eb933130978423c9ef54651d72b11a1a19","tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.8.0.tgz","fileCount":7,"unpackedSize":50087,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAxJPYPjVa2gfwyKr93AWhv1A7vqhV4J/NmQPjIPAoeZAiEAwZVotJLh/uKFzK3C/KOacqsl3ninVmGT97MbQuMAzy0="}],"size":11664},"_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"directories":{},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5_0.8.0_1695821793757_0.21780897457089754"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-09-27T13:36:34.007Z","publish_time":1695821794007,"_source_registry_name":"default"},"0.8.1":{"name":"js-md5","version":"0.8.1","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"build/md5.min.js","module":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jsdoc":"~4.0.2","mocha":"~10.2.0","nyc":"^15.1.0","requirejs":"^2.1.22","tiny-worker":"^2.3.0","uglify-js":"^3.1.9"},"scripts":{"test":"nyc mocha tests/node-test.js","report":"nyc --reporter=html --reporter=text mocha tests/node-test.js","coveralls":"nyc report --reporter=text-lcov | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js -c -m eval --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"nyc":{"exclude":["tests"]},"browser":{"crypto":false,"buffer":false},"gitHead":"daf1188dc61793f6ff669ad9dd83ba91c92ffba3","_id":"js-md5@0.8.1","_nodeVersion":"14.17.1","_npmVersion":"6.14.13","dist":{"integrity":"sha512-wXUIndP4V11nt8pewvBMKratCMrjTYqzAwOPgeN0oL+/fSkWStdy+KQy1OHDaQ6Z3PBPIQuSyVOyGTV1WPRVdA==","shasum":"26519298dbbef15f0994a94557e6f79d81b9735e","tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.8.1.tgz","fileCount":7,"unpackedSize":50920,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCA1EJ+W3Lj9m2r3yxrAp1JMeQTIc2q8TAmgquglAtEkwIgV3sjOYO+bJ4sesV+jZJFZveTqiHYQS0fnkzasMo8EQY="}],"size":11836},"_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"directories":{},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5_0.8.1_1696866414570_0.07193383633384998"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-09T15:46:54.855Z","publish_time":1696866414855,"_source_registry_name":"default"},"0.8.2":{"name":"js-md5","version":"0.8.2","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"build/md5.min.js","devDependencies":{"expect.js":"~0.3.1","jsdoc":"~4.0.2","mocha":"~10.2.0","nyc":"^15.1.0","requirejs":"^2.1.22","tiny-worker":"^2.3.0","uglify-js":"^3.1.9"},"scripts":{"test":"nyc mocha tests/node-test.js","report":"nyc --reporter=html --reporter=text mocha tests/node-test.js","coveralls":"nyc report --reporter=text-lcov | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js -c -m eval --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"nyc":{"exclude":["tests"]},"browser":{"crypto":false,"buffer":false},"gitHead":"0ecaeee185c5d81245fda26935710ccaac7b86f9","_id":"js-md5@0.8.2","_nodeVersion":"14.17.1","_npmVersion":"6.14.13","dist":{"integrity":"sha512-ebDT4s2KT3zc7qzR1k5CoR4o7ouhjPNLHZg80OOVDHCtoRgewFSH2yKbtxMMo8leFZoJKRgu2gq5Z1CCfIsA/g==","shasum":"755315bf33eadd9f66aab6f382ebc4ad6abe5a73","tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.8.2.tgz","fileCount":7,"unpackedSize":50963,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA7I5FdfF8zh1OtvpDdUN/DXi0e1zWH5X+8QEyethYx/AiEAkzwclGZDWWNJLvfzb7lIsKRI2EBazmle7fxo+zCOK+Q="}],"size":11853},"_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"directories":{},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5_0.8.2_1696867114576_0.673175767329709"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-09T15:58:34.799Z","publish_time":1696867114799,"_source_registry_name":"default"},"0.8.3":{"name":"js-md5","version":"0.8.3","description":"A simple MD5 hash function for JavaScript supports UTF-8 encoding.","main":"src/md5.js","devDependencies":{"expect.js":"~0.3.1","jsdoc":"~4.0.2","mocha":"~10.2.0","nyc":"^15.1.0","requirejs":"^2.1.22","tiny-worker":"^2.3.0","uglify-js":"^3.1.9"},"scripts":{"test":"nyc mocha tests/node-test.js","report":"nyc --reporter=html --reporter=text mocha tests/node-test.js","coveralls":"nyc report --reporter=text-lcov | coveralls","doc":"rm -rf doc;jsdoc src README.md -d doc","compress":"uglifyjs src/md5.js -c -m eval --comments --output build/md5.min.js","build":"npm run-script compress;npm run-script doc"},"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"keywords":["md5","hash","encryption","cryptography","HMAC"],"license":"MIT","author":{"name":"Chen, Yi-Cyuan","email":"emn178@gmail.com"},"homepage":"https://github.com/emn178/js-md5","bugs":{"url":"https://github.com/emn178/js-md5/issues"},"nyc":{"exclude":["tests"]},"browser":{"crypto":false,"buffer":false},"gitHead":"698290b4bc5ae43a17caf1234845c7576b412d1d","_id":"js-md5@0.8.3","_nodeVersion":"14.17.1","_npmVersion":"6.14.13","dist":{"integrity":"sha512-qR0HB5uP6wCuRMrWPTrkMaev7MJZwJuuw4fnwAzRgP4J4/F8RwtodOKpGp4XpqsLBFzzgqIO42efFAyz2Et6KQ==","shasum":"921bab7efa95bfc9d62b87ee08a57f8fe4305b69","tarball":"https://registry.npmmirror.com/js-md5/-/js-md5-0.8.3.tgz","fileCount":7,"unpackedSize":51021,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFQAw9xnxEu1vURDSf/cLh7/y3AUajavISLIo9cyLEYbAiEA1mJUJmzwpPVgN64KtU+FsaJeJ9oCKLMFaDgRYkh2/5I="}],"size":11860},"_npmUser":{"name":"emn178","email":"emn178@gmail.com"},"directories":{},"maintainers":[{"name":"emn178","email":"emn178@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/js-md5_0.8.3_1696867480482_0.9355405422064886"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-09T16:04:40.628Z","publish_time":1696867480628,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/emn178/js-md5/issues"},"homepage":"https://github.com/emn178/js-md5","keywords":["md5","hash","encryption","cryptography","HMAC"],"repository":{"type":"git","url":"git+https://github.com/emn178/js-md5.git"},"_source_registry_name":"default"}