{"maintainers":[{"name":"anonymous","email":"blackhole@livebox.sh"}],"keywords":["EC","Elliptic","curve","Cryptography"],"dist-tags":{"latest":"6.6.1"},"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"description":"EC cryptography","readme":"# Elliptic [![Build Status](https://secure.travis-ci.org/indutny/elliptic.png)](http://travis-ci.org/indutny/elliptic) [![Coverage Status](https://coveralls.io/repos/indutny/elliptic/badge.svg?branch=master&service=github)](https://coveralls.io/github/indutny/elliptic?branch=master) [![Code Climate](https://codeclimate.com/github/indutny/elliptic/badges/gpa.svg)](https://codeclimate.com/github/indutny/elliptic)\n\n[![Saucelabs Test Status](https://saucelabs.com/browser-matrix/gh-indutny-elliptic.svg)](https://saucelabs.com/u/gh-indutny-elliptic)\n\nFast elliptic-curve cryptography in a plain javascript implementation.\n\nNOTE: Please take a look at http://safecurves.cr.yp.to/ before choosing a curve\nfor your cryptography operations.\n\n## Incentive\n\nECC is much slower than regular RSA cryptography, the JS implementations are\neven more slower.\n\n## Benchmarks\n\n```bash\n$ node benchmarks/index.js\nBenchmarking: sign\nelliptic#sign x 262 ops/sec ±0.51% (177 runs sampled)\neccjs#sign x 55.91 ops/sec ±0.90% (144 runs sampled)\n------------------------\nFastest is elliptic#sign\n========================\nBenchmarking: verify\nelliptic#verify x 113 ops/sec ±0.50% (166 runs sampled)\neccjs#verify x 48.56 ops/sec ±0.36% (125 runs sampled)\n------------------------\nFastest is elliptic#verify\n========================\nBenchmarking: gen\nelliptic#gen x 294 ops/sec ±0.43% (176 runs sampled)\neccjs#gen x 62.25 ops/sec ±0.63% (129 runs sampled)\n------------------------\nFastest is elliptic#gen\n========================\nBenchmarking: ecdh\nelliptic#ecdh x 136 ops/sec ±0.85% (156 runs sampled)\n------------------------\nFastest is elliptic#ecdh\n========================\n```\n\n## API\n\n### ECDSA\n\n```javascript\nvar EC = require('elliptic').ec;\n\n// Create and initialize EC context\n// (better do it once and reuse it)\nvar ec = new EC('secp256k1');\n\n// Generate keys\nvar key = ec.genKeyPair();\n\n// Sign the message's hash (input must be an array, or a hex-string)\nvar msgHash = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];\nvar signature = key.sign(msgHash);\n\n// Export DER encoded signature in Array\nvar derSign = signature.toDER();\n\n// Verify signature\nconsole.log(key.verify(msgHash, derSign));\n\n// CHECK WITH NO PRIVATE KEY\n\nvar pubPoint = key.getPublic();\nvar x = pubPoint.getX();\nvar y = pubPoint.getY();\n\n// Public Key MUST be either:\n// 1) '04' + hex string of x + hex string of y; or\n// 2) object with two hex string properties (x and y); or\n// 3) object with two buffer properties (x and y)\nvar pub = pubPoint.encode('hex');                                 // case 1\nvar pub = { x: x.toString('hex'), y: y.toString('hex') };         // case 2\nvar pub = { x: x.toBuffer(), y: y.toBuffer() };                   // case 3\nvar pub = { x: x.toArrayLike(Buffer), y: y.toArrayLike(Buffer) }; // case 3\n\n// Import public key\nvar key = ec.keyFromPublic(pub, 'hex');\n\n// Signature MUST be either:\n// 1) DER-encoded signature as hex-string; or\n// 2) DER-encoded signature as buffer; or\n// 3) object with two hex-string properties (r and s); or\n// 4) object with two buffer properties (r and s)\n\nvar signature = '3046022100...'; // case 1\nvar signature = new Buffer('...'); // case 2\nvar signature = { r: 'b1fc...', s: '9c42...' }; // case 3\n\n// Verify signature\nconsole.log(key.verify(msgHash, signature));\n```\n\n### EdDSA\n\n```javascript\nvar EdDSA = require('elliptic').eddsa;\n\n// Create and initialize EdDSA context\n// (better do it once and reuse it)\nvar ec = new EdDSA('ed25519');\n\n// Create key pair from secret\nvar key = ec.keyFromSecret('693e3c...'); // hex string, array or Buffer\n\n// Sign the message's hash (input must be an array, or a hex-string)\nvar msgHash = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];\nvar signature = key.sign(msgHash).toHex();\n\n// Verify signature\nconsole.log(key.verify(msgHash, signature));\n\n// CHECK WITH NO PRIVATE KEY\n\n// Import public key\nvar pub = '0a1af638...';\nvar key = ec.keyFromPublic(pub, 'hex');\n\n// Verify signature\nvar signature = '70bed1...';\nconsole.log(key.verify(msgHash, signature));\n```\n\n### ECDH\n\n```javascript\nvar EC = require('elliptic').ec;\nvar ec = new EC('curve25519');\n\n// Generate keys\nvar key1 = ec.genKeyPair();\nvar key2 = ec.genKeyPair();\n\nvar shared1 = key1.derive(key2.getPublic());\nvar shared2 = key2.derive(key1.getPublic());\n\nconsole.log('Both shared secrets are BN instances');\nconsole.log(shared1.toString(16));\nconsole.log(shared2.toString(16));\n```\n\nthree and more members:\n```javascript\nvar EC = require('elliptic').ec;\nvar ec = new EC('curve25519');\n\nvar A = ec.genKeyPair();\nvar B = ec.genKeyPair();\nvar C = ec.genKeyPair();\n\nvar AB = A.getPublic().mul(B.getPrivate())\nvar BC = B.getPublic().mul(C.getPrivate())\nvar CA = C.getPublic().mul(A.getPrivate())\n\nvar ABC = AB.mul(C.getPrivate())\nvar BCA = BC.mul(A.getPrivate())\nvar CAB = CA.mul(B.getPrivate())\n\nconsole.log(ABC.getX().toString(16))\nconsole.log(BCA.getX().toString(16))\nconsole.log(CAB.getX().toString(16))\n```\n\nNOTE: `.derive()` returns a [BN][1] instance.\n\n## Supported curves\n\nElliptic.js support following curve types:\n\n* Short Weierstrass\n* Montgomery\n* Edwards\n* Twisted Edwards\n\nFollowing curve 'presets' are embedded into the library:\n\n* `secp256k1`\n* `p192`\n* `p224`\n* `p256`\n* `p384`\n* `p521`\n* `curve25519`\n* `ed25519`\n\nNOTE: That `curve25519` could not be used for ECDSA, use `ed25519` instead.\n\n### Implementation details\n\nECDSA is using deterministic `k` value generation as per [RFC6979][0]. Most of\nthe curve operations are performed on non-affine coordinates (either projective\nor extended), various windowing techniques are used for different cases.\n\nAll operations are performed in reduction context using [bn.js][1], hashing is\nprovided by [hash.js][2]\n\n### Related projects\n\n* [eccrypto][3]: isomorphic implementation of ECDSA, ECDH and ECIES for both\n  browserify and node (uses `elliptic` for browser and [secp256k1-node][4] for\n  node)\n\n#### LICENSE\n\nThis software is licensed under the MIT License.\n\nCopyright Fedor Indutny, 2014.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to permit\npersons to whom the Software is furnished to do so, subject to the\nfollowing conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\nNO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\nOTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\nUSE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[0]: http://tools.ietf.org/html/rfc6979\n[1]: https://github.com/indutny/bn.js\n[2]: https://github.com/indutny/hash.js\n[3]: https://github.com/bitchan/eccrypto\n[4]: https://github.com/wanderer/secp256k1-node\n","repository":{"type":"git","url":"git+ssh://git@github.com/indutny/elliptic.git"},"users":{"meeh":true,"invelo":true,"ricmoo":true,"erikvold":true,"you21979":true,"bobxuyang":true,"thejeshgn":true,"charmander":true,"nickeltobias":true,"freshlygrazed":true,"thejeshgn.com":true,"bhaskarmelkani":true,"shanewholloway":true,"vandeurenglenn":true},"bugs":{"url":"https://github.com/indutny/elliptic/issues"},"license":"MIT","versions":{"0.1.0":{"name":"elliptic","version":"0.1.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"25c28f157470efe8fbccc290bf30261e28777dcd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.1.0.tgz","integrity":"sha512-0m4v6bQoDdyGub72LlVpIo3HQd6y3oKtpIEq/vDUUy+GR2DRJMvt6eMZaCRi7EndOqMDMv5ph03GYM4DrmBYLw==","signatures":[{"sig":"MEUCIHrZvRT0TF9aUzMWKtdxeY1vdzvTF6y3Iaiu07LM7RKFAiEA3jRU+D6ZSE6I4wQluhkOdjyUXrVcPxSYFO9OL7CzYNY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"25c28f157470efe8fbccc290bf30261e28777dcd","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.2.0":{"name":"elliptic","version":"0.2.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.2.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"bedbb8376437d8b7f139610d33cef4f76b5a0cd2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.2.0.tgz","integrity":"sha512-OzkLrAw1z+WmAxMXU+ZbDNOI7t7OUnuRmI4PPUFzXuP2nZdpi19wzFYlUW4bhkv3HWin8NLcd3xkFnOetlKXOw==","signatures":[{"sig":"MEYCIQD3zRZB0P3RfdNV1XxjgW6QhllE3G3p/31d1mLLBDd5YgIhAL91GnJn70Z+z+cRzv+bHKXhzoiSZa/bGBrNiE4l1soL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"bedbb8376437d8b7f139610d33cef4f76b5a0cd2","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.3.0":{"name":"elliptic","version":"0.3.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.3.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"32167b06a350390a58beaaad9c245c35434614f6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.3.0.tgz","integrity":"sha512-VScdWV1Lt/2/N3fTABRcpkqDTwdPO9oslmR4tMyTfwZ8QNn521TmZKRxhlNr+HJIvgFWiDqtUTD+fuFVBAz2Wg==","signatures":[{"sig":"MEQCIB8Za2OLVgbVP04jLvGQRJ4GZ7CfsmahsgRZXrHG+UtnAiBwFJKc/wwIz4/lK0fIlSTcII3fGOBTlmBilzKmoQkmSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"32167b06a350390a58beaaad9c245c35434614f6","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.4.0":{"name":"elliptic","version":"0.4.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.4.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"6f318c44c9108eea4f52625b971442fbdfc52285","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.4.0.tgz","integrity":"sha512-C3+tJeOdbiW2prVfw16SQvGyHWnak5bxhV7BJxYypMMKQGrE9LENQAuo7zSlxoMk+nQDO5aE9YllIFs5ExJXaA==","signatures":[{"sig":"MEUCIAb2w2B2Cp+8TcUuO7gEKUTCVnuAHcx/nR8n03qxLh3vAiEA14ukiZze2bDIDWeYv52DOJ9p+RN1JvoTWXHbvBTpBzM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"6f318c44c9108eea4f52625b971442fbdfc52285","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"hash.js":"^0.1.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.5.0":{"name":"elliptic","version":"0.5.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.5.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"d66122e6e8a22024ec57cd91840f028012f87283","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.5.0.tgz","integrity":"sha512-eL18FVS81o9b8CrmyI8olOUl4CBhWotXDkT0CUaOEkOgjEH8S8qFrA3jrdD3YnbKq0xs6H9/I8ZZfYmfjN4D1w==","signatures":[{"sig":"MEUCIFzSmwiyCh6FGyLCO0I/QC5VUF9U6eykIFpvSqdNP2b3AiEAomQx3w04JG+dE4yV8nyAd46hPltP3AeC97+fn/OzmS0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"d66122e6e8a22024ec57cd91840f028012f87283","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.1.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.6.0":{"name":"elliptic","version":"0.6.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.6.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"f624887ebd068e7706f758c2f37e3c7db38f2789","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.6.0.tgz","integrity":"sha512-klLR5jMt2ywXHbsdoCdbaImGPMHihQDP2wAqDh4yLgGgsa9ebVBYce7MVpP6g90UZz2VwwOv8mhu9kqIRZ8E8Q==","signatures":[{"sig":"MEUCIQDPi/sZcn09rJlZf8jsY65VqCfyBEqV/p6PN+qJBz73uAIgb5sOjusdHHzYa+D76chfFLMnS8+utEqdaFUKSzLh+k4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"f624887ebd068e7706f758c2f37e3c7db38f2789","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.1.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.6.1":{"name":"elliptic","version":"0.6.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.6.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"545c229f029ba75fb1d89f3997194ffca5d7a25f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.6.1.tgz","integrity":"sha512-+lheUFn74ISZg7gXvm0nNbt067+eFzfN3e+zLu1cDi7ETE8IoadV/d3wRV0I/+cTnd5yCfIHXIIfjHV7XgHsyA==","signatures":[{"sig":"MEYCIQD79MGDMDnnrVZRlWCnkCbY5gy3uIT7B4i9ktoMCJB0FwIhAKalCalwp0nO+q84N/3ZK9C0fiEz3KVCXpn8Adqt38+s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"545c229f029ba75fb1d89f3997194ffca5d7a25f","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.1.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.7.0":{"name":"elliptic","version":"0.7.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.7.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"df438baaac83a4e2a45f82bd478a854f6c569f0b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.7.0.tgz","integrity":"sha512-1/Y14zOuCA7dJd+Uh8+7Eo6pvxU0iyaKfuPROMLKTFFrU41fzANH7rGh8Tv4p9ULwET/SbnqVPpDue4qac32SA==","signatures":[{"sig":"MEUCIFiIXp86LAJ5gt7PV+TdWuiRrv7zOT39QJ45nMO6QXpEAiEA+xMN/bTDOyEGSCjpaSQjqsmsHoUcyPTeAba57w9Ej70=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"df438baaac83a4e2a45f82bd478a854f6c569f0b","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.2.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.8.0":{"name":"elliptic","version":"0.8.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.8.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"67658dd7ff907dfae3bd7df9bafcc7d9b8c6fe3a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.8.0.tgz","integrity":"sha512-lNJREWlNFRrGTWzldYrILuqpUTa0ZRfN1XXCaKL1sh93IQbqM+QLozcwGjqR8S1yQzwjIB3pK1aauxE1LUZgrg==","signatures":[{"sig":"MEUCID9TpreeibJPUqrilVcyQBy8TTYuWTYti7S8tVPh2jxoAiEAuGN+HqJGrDvD1IidxRBgiNEetk+y347dnJk6BzTvKCU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"67658dd7ff907dfae3bd7df9bafcc7d9b8c6fe3a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.3.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.9.0":{"name":"elliptic","version":"0.9.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.9.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"715b3dfc66182988ce3cd03d6a762c24d0443754","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.9.0.tgz","integrity":"sha512-dPce6G6DHJEsZZx2FwbnjjMvW7ToCj8MsHf4sfhLKxW6Q5LOxfKi73DqJMVMIqHnHnSyCXIn0Y5A9tVKJQ1Hew==","signatures":[{"sig":"MEUCIAzSz4GZ5E+ZxzbFCtqcdvWb1gZnOdJk7ltCmG60xZkJAiEAyyL/edUz9qKUq1bywe6XicUqTl+DSMQCtqI9KRHhs/I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"715b3dfc66182988ce3cd03d6a762c24d0443754","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.3.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.9.1":{"name":"elliptic","version":"0.9.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.9.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"5404b4cf62301557604895f82a8466da3617059e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.9.1.tgz","integrity":"sha512-+Rmz4Edn1xbvTzR6C29lsZ60gZeEEfTJu7LwOUvCO3jngWx+2h+xIzGcvcRtH7MyRoX5L+IxGrOfwFb8Ke618w==","signatures":[{"sig":"MEUCIEISz7KwNWOkXmOAqGVTav0yTZSNLUNDlPOjKHWeHYlUAiEAjwZluO+RVEOyD66Znq7bVIj8vDyjJRltsOOHoAZwepg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"5404b4cf62301557604895f82a8466da3617059e","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.3.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.9.2":{"name":"elliptic","version":"0.9.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.9.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"9a0117f7ffdee38646538f3313fcc606d8ad5d40","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.9.2.tgz","integrity":"sha512-RlTwgP78FAR1jRnJa6a3diDUiscOmmdtu3kmCpqr9qefPsRevRA+nbSwuLYBQ/gn/hzkwsKEmJs1zePZ7UviLQ==","signatures":[{"sig":"MEUCIB3gZNvkjIGyJomez5HecOB5i44iveolBbP+Wsxz45ozAiEA/oNWuT3VHQ2WYAfZtirKqSOmpO45CQTF/nTC7tj+HqA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"9a0117f7ffdee38646538f3313fcc606d8ad5d40","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.3.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.10.0":{"name":"elliptic","version":"0.10.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.10.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"6b9bf2c5daf083a15c1bd4fcefa56f56a51d1327","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.10.0.tgz","integrity":"sha512-igI+lpEixMnN1sQ1Imq3cBm9LQaUybiiaw4IdPk9Lom38cDpNCXBM3PKX5ZbtFtwBWzS7RBK3Z6Vb8p8UKk4Dg==","signatures":[{"sig":"MEUCIQDl2npWvIWJ/E82vs4fu1LeOr5pgJPxG8XkWfwcBphJaQIgcbQdiIiYmzVjRNDVkAMPnPFVQhqvYyl31iH4PzIytls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"6b9bf2c5daf083a15c1bd4fcefa56f56a51d1327","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.4.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.10.1":{"name":"elliptic","version":"0.10.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.10.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"efd9cef24e3b710fb1f1cb5080d08538870d153c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.10.1.tgz","integrity":"sha512-jbbXIc8HF7hNli1LZGbLXcS59uj0xZn5gNXUdqiq+Iqw0Z/m7YkxJKIJ3m4RGiFggzxIJT+SsJDCKxxYxpL0QQ==","signatures":[{"sig":"MEQCIHkz+GlIDogTW0FWjpK2F8jATBJl1u9JA09myL2O04ETAiAXnuqKxBJc8Fh7MQUqOYCQHPIGYnXQvBTd4XZlj6WKpA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"efd9cef24e3b710fb1f1cb5080d08538870d153c","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.4.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.10.2":{"name":"elliptic","version":"0.10.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.10.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"5bd5ccf61f259b71232b996b9cdca9c4ba53523c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.10.2.tgz","integrity":"sha512-WypPJox9JxRcROkyDBigfkud8npdACWAwZ/dab5U7fiS2Pn9z1iyqpVRhAdUyN/gNvjdrwXS8xx914Ulh8bXsw==","signatures":[{"sig":"MEUCIQDHb8DWMueUeu40m6A7C+SOiAC+zCAUfqjsYtvq+zizrQIgd3SsmT8cdSBR6sVb4uKzI9MpCYXcjeFiGscftBNGsD4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"5bd5ccf61f259b71232b996b9cdca9c4ba53523c","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.7","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.4.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.11.0":{"name":"elliptic","version":"0.11.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.11.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"e82e434e9405cf53f0cf4510ac2cf4759c79a278","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.11.0.tgz","integrity":"sha512-uGv8yGi0UB/Vp2Hsq5v9v+zfOcHMTf23PgaE+QjUvSydF5rObpXuekL1P1kupm4Fwzi742Kqky81CXOukSM4zQ==","signatures":[{"sig":"MEQCIGNei7LKSSP3kqIZiePAA2wfWAs3Diq8BzoAH/ZzW/uDAiAddODvCvU0cTQDymA9PohvTc5tsEUNzEhRSfDwoGvwQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"e82e434e9405cf53f0cf4510ac2cf4759c79a278","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.10","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.5.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.11.1":{"name":"elliptic","version":"0.11.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.11.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"2407c5e7199bf935d457c816b291149fa05a95b4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.11.1.tgz","integrity":"sha512-GHsIoSX4Wsv54BVL9HKOTZxs8x58GlSx+aMtDEsoYiFEutYn0oMsIxzVwQ4Csjzdtzx/79XMkIUzJBKPqK383w==","signatures":[{"sig":"MEQCIC4jIMRaAOQiGDRZYbOyA4rRFkXuYlc1DmOVD/Vqc/hFAiBvpuYDvMIGg2LnstMjFYXPOuzn8uWgAw4rcRD49yvxNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"2407c5e7199bf935d457c816b291149fa05a95b4","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.5.4","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.12.0":{"name":"elliptic","version":"0.12.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.12.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"a3e31678e743f036f23d17d5917166501403f841","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.12.0.tgz","integrity":"sha512-XIxVmwTPlmoKuS/1cNL4PVWRS6jVX1brdaAO6ybqQK4Sogo1Xa2+/QON7a0RLlkFxovdYXOKXbQ0hVhcsEbQQQ==","signatures":[{"sig":"MEYCIQCf73C6kzCcrXzKl8UYREW5C1J5ZH8R6m3z70GhpItMOgIhAJ/ezVf+b4k9E0XmOXuX+6jHk6hEQFx3/0ck9/cCeXSr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"a3e31678e743f036f23d17d5917166501403f841","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.6.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.13.1":{"name":"elliptic","version":"0.13.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.13.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"b60844bea509c92e70af60068ce71ed386225651","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.13.1.tgz","integrity":"sha512-22UjGxRVaTnh7dhmhvKjwg1ihCQ7tm5VL65dYSFTwoRMdoLraydmDXo2s81oQh2Ltxa4KtrhPL2kWEzkJimEvQ==","signatures":[{"sig":"MEQCIH1ece32dJNyZl/GCZgBN9TvBaOCE4brEsi75BPjHrF9AiBn+zim8jcb0B+bhPMytBXwCDMgrPuGiG4DYaOmjFdmMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"b60844bea509c92e70af60068ce71ed386225651","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.7.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.13.2":{"name":"elliptic","version":"0.13.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.13.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"d5b61a076464f06741faf6d261f2df3a5662763d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.13.2.tgz","integrity":"sha512-P/vZKLYLIhjg9QOcK9PqwoFl7+aYXOe95DLttIkp4UMOgBDwZyL0QUcibps48LMwO9KNe97Nsj3EU9BpiRj6CQ==","signatures":[{"sig":"MEYCIQCx6YBxXqqJ+bmtg8fRl9C7BJuekvsV2Zmt10nDsnqfWwIhAIopoI6hYIeENZbZSrijdDCrV9PrYXwBnorzoeXuU0qq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"d5b61a076464f06741faf6d261f2df3a5662763d","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.8.0","hash.js":"^0.2.0"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.14.0":{"name":"elliptic","version":"0.14.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.14.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"eef663a2252ef2418da671955e1ca4691acfce47","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.14.0.tgz","integrity":"sha512-KAg2v34+Fb/3kFAY8eJl15pInJ9uoEnhKSrrP6f/NO69CtrBZoJmqAWNAgHfpMscKfkC729qWkISMLfcLjtTEA==","signatures":[{"sig":"MEUCIQCQR3tHCzHnbHfWzG9sVF2rCfS7rXrwrH2yTXJ2Mf7VHQIgCUSJe9GGE8mSL3qaZKY4tjOrx1WElUNp/mP5WJZykOk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"eef663a2252ef2418da671955e1ca4691acfce47","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.10.0","hash.js":"^0.2.0","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.14.1":{"name":"elliptic","version":"0.14.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.14.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"ea2c26aecf7e31938138ab6453f68b9511d69159","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.14.1.tgz","integrity":"sha512-ycxOX/yZ9zgTAQZZK1Ar9Y0/xtxrQPm81VLRWjeFQB6oY3WowDIjV3Euv1U07zo4I/XWJKjvGzbVVPfsdvRkDw==","signatures":[{"sig":"MEUCIQDzxkUI40+n5leEReW7rBLn5cvJDycY36Hpyy1eZ5dKsAIgM3v4nxD3Beir/4e+EqpP28Hp2vEfyWjqXwU0gD6ivfs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"ea2c26aecf7e31938138ab6453f68b9511d69159","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.10.0","hash.js":"^0.2.0","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.14.2":{"name":"elliptic","version":"0.14.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.14.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"d0774db33dc958b3c426620b75586091b6c96d2c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.14.2.tgz","integrity":"sha512-m8D0irzdUCo3kl1XXssUzV9JT5kBiD+1dfMaspWKdcNZV3R5XwNbzfpXVAx0RlG7k2kQ5VeSNhF/d1HwytWKkg==","signatures":[{"sig":"MEQCIEiWsmWL8ia3H0xBV1n2Xrtmd3skHsopjohbh9Lc9LxMAiBQwNtaw+yKju9+LiYasXOSN8ncCuN6F6t4ozSKkngQsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"d0774db33dc958b3c426620b75586091b6c96d2c","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.10.1","hash.js":"^0.2.0","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.0":{"name":"elliptic","version":"0.15.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"c55a184c3379563b45f36a78b5fe33914de72bd2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.0.tgz","integrity":"sha512-wyFJSht+d60rjjjv084Cg37B/i/kgxl6DIv7RKKRMeV8Eyy72iAwRhsNTwKZjkTcyRWcJQuSKGqyEnELOqVxmA==","signatures":[{"sig":"MEUCIGyskdkBpjjfcpwZzlmxfmef8HXUnb0AZGFPwzje2IiUAiEAq8w6uSX2G9m/mYW1ljD7aJl/y0Yo19MlMsBhBU1MO0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"c55a184c3379563b45f36a78b5fe33914de72bd2","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.2","hash.js":"^0.2.0","inherits":"^2.0.1","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.1":{"name":"elliptic","version":"0.15.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"40b70e9859c8744cdf5be85a7c1af8d749980e04","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.1.tgz","integrity":"sha512-ECc4TTcmyy53HlwyzIS2htwG0iUcrGIDHE8p6B6TeDjzlxCk6NijlHwzhF091pvDY9gQmi3o+s7vHjB9mP3k3g==","signatures":[{"sig":"MEQCICp93OQgR/wNJoMeZhq20+5WnQcm53gddydJErnk6mbeAiA0xzorVqmO9bQLaHABe5CY2mBXJM6eueKOgi2zO57cOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"40b70e9859c8744cdf5be85a7c1af8d749980e04","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.2","hash.js":"^0.2.0","inherits":"^2.0.1","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.2":{"name":"elliptic","version":"0.15.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"0ae5f2fb19db51989e5a8abf1c525037941c934a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.2.tgz","integrity":"sha512-mTQFCHUGXU5CCplgJVSPrTqLftmJa8djBOvxrOxbgaT+VmBJi3C/tECv2PEhDmfmiEiG7w4N27Ril4M5fxahgg==","signatures":[{"sig":"MEUCIQDfZNdZupPKf/uUg4zdQWf42CALGXmLOCnpFSAz8AFyfQIgQI+fLpQjXTZ9Hhw5S+Cw9auVGuOMI513d/L71Njp8Hw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"0ae5f2fb19db51989e5a8abf1c525037941c934a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.2","hash.js":"^0.2.0","inherits":"^2.0.1","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.3":{"name":"elliptic","version":"0.15.3","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"02ae691992646e6086152411d757fd08e422efe7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.3.tgz","integrity":"sha512-XyGJDMlsFR1oMnZrrfbI89shUb6fDC6TuQa5e1ngKWZ4tNW1qbTULLLsGSSk9X/T5V3/VoORJJInTx+Cvx7yBQ==","signatures":[{"sig":"MEQCIDZXVB8jU1k0pF3cNHJ/tr/np+2Pe4MdipOVTWbG3jEuAiA3Tr5nfcFX5HjZ8M1QinShA6KvjILPLJrZQhl+3y0TKA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"02ae691992646e6086152411d757fd08e422efe7","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.5","hash.js":"^0.2.0","inherits":"^2.0.1","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.4":{"name":"elliptic","version":"0.15.4","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"fb7ea8778d995c7e5a8927273f3e0b08e7353c5f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.4.tgz","integrity":"sha512-vfIuB6RpN7Zy3SoWfI0RxiKfAgwubI4ErmmykZwZyRhO95n+H0dosSbKUr7y0ryY5xo5DtJhakI+EBtvR7CDUg==","signatures":[{"sig":"MEUCIC44npO+tWfpOwh+AGxFLtpGs+lqw3maWBTsc6i8YSIsAiEA6q6fuU6BcK+lE3ZsRc4ct6rTydlajJmClcpkVU+IHXY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"fb7ea8778d995c7e5a8927273f3e0b08e7353c5f","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.5","hash.js":"^0.2.0","inherits":"^2.0.1","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.5":{"name":"elliptic","version":"0.15.5","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.5","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"ca8c77805e99b5483251caaf71396d1d5bdae250","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.5.tgz","integrity":"sha512-nDrzC2j0cuExoDPqshmaDs/iA9SI6PI+OQOqxqAqSoewJIuM9aKG3vvQ5XRNwVICST2Ntgz3DHlwjA5xlmLe+w==","signatures":[{"sig":"MEUCIFsv8fm9Q3dM/b8Cb7pbkCdkBocxFnlTkNaMXCO6N8x2AiEA6Zymh22F45M7hanJwPAlCKwYY5TRKZpW+2thX6F9ew4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"ca8c77805e99b5483251caaf71396d1d5bdae250","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.6","hash.js":"^0.2.0","inherits":"^2.0.1","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.6":{"name":"elliptic","version":"0.15.6","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.6","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"5a82f941000e5daab7fb98987d70410cd42f0065","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.6.tgz","integrity":"sha512-8UGUrYn6/uELEbS8Sd/M0rzgnGKwD8r1g7amAXpIYHTye/ihLRXeQe/mSjq66/nOV3rKTLH7DOsgEGwo9GyYVw==","signatures":[{"sig":"MEYCIQDki3ERirAnXiuuyNkPq9w/7C5ImqmOB8emJ3aEH78ZowIhALSrX2Kp4ajKOAdldtXXlF6G9V/LKLNZLTZrklHFes3q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"5a82f941000e5daab7fb98987d70410cd42f0065","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.6","hash.js":"^0.2.0","inherits":"^2.0.1","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.7":{"name":"elliptic","version":"0.15.7","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.7","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"33a3cfb88eeeeb04f0bbd06040f2cfc2fba93d2a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.7.tgz","integrity":"sha512-8/jQohbq45gL3xGTKXh+rKwnkK6tK42EF0kdJ0bQMa7sx1W4p/Zu4X/aUGTsnxBr2tIADBQXPLpiWWqO/fEmLQ==","signatures":[{"sig":"MEUCIQDDH8AsynpvkKVivgx4jSjBhKJgoPW+vbhWzY8Tg7dGQQIgZzxI8MJNG7XCVdgx/faG2G8NvlcFXDF6PtJi2z17PLQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"33a3cfb88eeeeb04f0bbd06040f2cfc2fba93d2a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.9","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.6","hash.js":"^0.2.0","inherits":"^2.0.1","uglify-js":"^2.4.13"},"devDependencies":{"mocha":"^1.18.2","browserify":"^3.44.2"}},"0.15.8":{"name":"elliptic","version":"0.15.8","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.8","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"14046870b5d5261438f59b3c174693a89d976a85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.8.tgz","integrity":"sha512-aV6TNU1bhiVtDKZfxjDRwjW4/eTIhSmBn1dfDwQ3Ag+KeawTG1R67bT86kh/g4XPnRxVmX6/8a+tgQMZD8j1WQ==","signatures":[{"sig":"MEUCICedDP7ltg26dIcaoeOceINY8QkPvLAfcQYI1xgMUtEJAiEA8B1AumUDJaAg7d+4z26GjH55Gh4JRB0RkFebUvYPGsU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"14046870b5d5261438f59b3c174693a89d976a85","gitHead":"2f0a0b193308f40f7d43006ec8b5bf0743a25752","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.21","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.6","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.15.9":{"name":"elliptic","version":"0.15.9","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.9","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"009fcc41fb3d5a111afb527f7fb3bb267f905bc7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.9.tgz","integrity":"sha512-jmJtAsdq2G8UrQpKCJJn6+1cCHscaPHzj8QZKRz/HUsfUB60xQEyI3kpPIaWcfuOVBPpqnEVSle+vNrS5Z3etg==","signatures":[{"sig":"MEQCIEvTn40qwSjWmgvwwrNlnmGNfrG/JZq34Tf9a0biuy4tAiAdYy//8/BJIMi8o0BcRzW82KCTFYyh3E5WUmrDx+EQ9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"009fcc41fb3d5a111afb527f7fb3bb267f905bc7","gitHead":"d04e686825113844cf073895e8840645c1de3d35","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.21","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.6","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.15.10":{"name":"elliptic","version":"0.15.10","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.10","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"b60abd01bc4b7908e01eef3b93bddf6f5775e267","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.10.tgz","integrity":"sha512-ID0BnfWWowmy77bEkUKmO/hknv/LLvE5U4jVGbCzXiIg2Z7/ALt7+Qik/ix1esaiW5cJjdDCJNACuCI8i1Ec7A==","signatures":[{"sig":"MEUCIHWdx6MANZEfaICTDoOum2wRFYzHN2D+42XLIv2icFW3AiEAtyl+9v4xDuBXjdN/1iCjljH2zIkWfk3PGgrIYZPtl5k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"b60abd01bc4b7908e01eef3b93bddf6f5775e267","gitHead":"a92e9c75590b7913f06d31b16c9f550ddda5f2b6","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.21","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.11.6","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.15.11":{"name":"elliptic","version":"0.15.11","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.11","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"37c5dab7fd714ee88c2178fcd2ef2216d2f31809","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.11.tgz","integrity":"sha512-S8L+YDE3vx/0/+5WjXjw+loD+nX9oAFNiEFWAwtSZ/SlROIx2N+YkuCAKWhJaPG6ZzfbKzGvEZJ0HpTBHjGzXQ==","signatures":[{"sig":"MEUCIA7EfIAHaaUtO2AnmfqL0QEIjFO551EZ8jHonrGIrzSLAiEAwdu/v1kcPFgkY+hJlw4bzpuYyHWn9U7GeTufAlKpzzg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"37c5dab7fd714ee88c2178fcd2ef2216d2f31809","gitHead":"02faf054accde00a42446399fb9d3c04dcb83c8d","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.28","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^0.14.1","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.15.12":{"name":"elliptic","version":"0.15.12","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.12","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"bafa7542ebdb9aaa2edf7cdaa86108ce6f12d4e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.12.tgz","integrity":"sha512-XuD6R/dewhz8TYHvXjbXqKgSkHTgmnk4XU4f2lfIghAb7pgdJjEIHmZWjxhBYjjCvTZuej4EeR83dogJKv0E9g==","signatures":[{"sig":"MEUCICiwhUeP11z32g2vwMw4AWY4oB1h86Q31FPeXDxNPAMOAiEApBcPzHA+aBPc3ib8eFL0MGCe3lqCh7wz7bBMRC2TdAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"bafa7542ebdb9aaa2edf7cdaa86108ce6f12d4e9","gitHead":"637f0c2f24d3e514236942af457706aef0bc66f1","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.1.2","description":"EC cryptography","directories":{},"_nodeVersion":"0.10.32","dependencies":{"bn.js":"^0.15.0","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.15.13":{"name":"elliptic","version":"0.15.13","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.13","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"918c6b833a9e7d8ad974027d02ac4912d025f2f4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.13.tgz","integrity":"sha512-kZjed35XUlSKqhRSYLVrFhFYq4scbMmkMUo+NW6Y4MYT/H6dMgb/7tMuWs7D2B3MfH/7eJei/760PTeXrLAtTA==","signatures":[{"sig":"MEQCIAPppSmIc2JCJZTnU6XKGnTibUEY8wTVasISLdkUIRKiAiBQBdgI4FrTpulRbuUNjJpbktI1/cUUWnFysnqQ4e6BEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"918c6b833a9e7d8ad974027d02ac4912d025f2f4","gitHead":"274e36de37c1be8f25425ba563bcde65213566fc","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.1.6","description":"EC cryptography","directories":{},"_nodeVersion":"0.10.33","dependencies":{"bn.js":"^0.15.0","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.15.14":{"name":"elliptic","version":"0.15.14","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.14","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"4d8cc82f030f9c7646ac60a729f0f793e083be6e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.14.tgz","integrity":"sha512-7KH5IthDbE5C6JrokR1KeBjRvA2iY8SuKs5oZ3VIRAfoZgXc8kPPKxd0yAjNRz1p5r8ibTG3OmK0eeq6dLzRoQ==","signatures":[{"sig":"MEUCIFu6X3hSAH+jySfiyOVeyuxUnWeiD2K6pJdI7HxiY++AAiEAsViN9IzWZz0UgAwtzVe5bt/4xLxi1txjd5yNwtJ8K8E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"4d8cc82f030f9c7646ac60a729f0f793e083be6e","gitHead":"e080857a1604369909d53f2f187a3b69eba113ed","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.1.6","description":"EC cryptography","directories":{},"_nodeVersion":"0.10.33","dependencies":{"bn.js":"^0.15.0","brorand":"^1.0.1","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.15.15":{"name":"elliptic","version":"0.15.15","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.15","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"63269184a856d6e00871e84f37a8401ff84e4aea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.15.tgz","integrity":"sha512-6rcAREANNSEFVEgt3W0X0Zfxu9w6+aCUUGOkT/FcNwkVDsG2SirninPBpKGKrAml7QKdCswFCM1kvCgSAjoxIQ==","signatures":[{"sig":"MEUCIQC4Bx7NIhVwc9NjgiAcGNFmuzmX/OmHL8FXKkgq/XcZ5AIgRtww8AYqaOulJ+sR4ZnvuuYykl84RHmx0Cf3Cr3wZfM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"63269184a856d6e00871e84f37a8401ff84e4aea","gitHead":"4bf1f50607285bff4ae19521217dbc801c3d36af","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.1.6","description":"EC cryptography","directories":{},"_nodeVersion":"0.10.33","dependencies":{"bn.js":"^0.15.0","brorand":"^1.0.1","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.15.17":{"name":"elliptic","version":"0.15.17","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.15.17","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"43f2bc8046c838df1ac99e5242da1b1b4bc59937","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.15.17.tgz","integrity":"sha512-JvhaggmejYCy/jCnhODfXHxIuPsOHEvPBzScyCxp+uwn0WXPuolOoGykJTGXTw7yR5ITtw8uJV1nBYUcCoey4g==","signatures":[{"sig":"MEUCIBJqOYG3suDFK2nB0Yv0bf0okz3Vjq2AmSzxcBjh0n54AiEAhDkhWO09KJ0qMv8jgj8FWvRuo0YVbhTLw3DV29sAutg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"43f2bc8046c838df1ac99e5242da1b1b4bc59937","gitHead":"e8c243a4bdbddb7220607b504a0f8ecfff48918d","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.1.10","description":"EC cryptography","directories":{},"_nodeVersion":"0.10.33","dependencies":{"bn.js":"^0.16.0","brorand":"^1.0.1","hash.js":"^0.2.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"0.16.0":{"name":"elliptic","version":"0.16.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@0.16.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"9bc84e75ccd97e3e452c97371726c535314d1a57","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-0.16.0.tgz","integrity":"sha512-JYnU/RSEPyCjkCEq7W3zvDm6ltO6jvbScY0tXiHTd9Lo1wtL/f792RMlCZ/5BbL1UHeuBYkp9nMPh8zDPzeiCA==","signatures":[{"sig":"MEUCIEUBBRr/pxZp4UeW55OpCGZImYRaaPquqw5YEZIwF0SNAiEA6j7RPa979Xh3dXDQDxYYuMokExfUcN5bKYGsaPtd46c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"9bc84e75ccd97e3e452c97371726c535314d1a57","gitHead":"be0e860d9b2443ae5dd98c5128925b922f9e6c28","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.1.10","description":"EC cryptography","directories":{},"_nodeVersion":"0.10.33","dependencies":{"bn.js":"^0.16.0","brorand":"^1.0.1","hash.js":"^0.3.2","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"1.0.0":{"name":"elliptic","version":"1.0.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@1.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"28d927ae8c16c6f65e452a714b36da4095603e39","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-1.0.0.tgz","integrity":"sha512-raEcEP7tKnaIKDD7ZXulIGax+xtxapu2De8NX392IVxpT9koqYXRvNxgHpkqHhKgA3psmDPxjzeju0uYhpIq/Q==","signatures":[{"sig":"MEUCIQDbwmOefom7zZPCy/DdMuEeAKyEQTzXwkLOaGaSpIBa7wIgOLBCHPf5+x42AsqxGbLjzyQVlkpAyKM3ksFw0opOPuw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"28d927ae8c16c6f65e452a714b36da4095603e39","gitHead":"aaf14882e64fc7dedd4613d7e08cfa7fff303fe6","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.28","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^1.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"1.0.1":{"name":"elliptic","version":"1.0.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@1.0.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"d180376b66a17d74995c837796362ac4d22aefe3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-1.0.1.tgz","integrity":"sha512-zIrAwqysqRNOVc0ib6o6+8TEdyvkPKNFdfzjWKOK5eF/jqWcXp+InfbalB6Icn+Qtce+D75HcnM7Nj0keFtXrA==","signatures":[{"sig":"MEYCIQCiMeQLTPKBxV4rh6MQmvP0+ILOFuWXWE3x7W6jkx1XfAIhAKnvQS8GQEq0Aj7xZGiWFz6589C6rJisn0mItCAs6eWe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"d180376b66a17d74995c837796362ac4d22aefe3","gitHead":"17dc013761dd1efcfb868e2b06b0b897627b40be","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"1.4.28","description":"EC cryptography","directories":{},"dependencies":{"bn.js":"^1.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"2.0.0":{"name":"elliptic","version":"2.0.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@2.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"5c237269b13af8aa2dbf663f265df7e2cc521774","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-2.0.0.tgz","integrity":"sha512-G7jn4Q72XLQgckvJEez9kmzQOLZ2JPHJrKz3YEOMzIG5i7VXywjLnBP+iBnbU2CkFGc5Ig9ZzEPz1RNLEMOTTQ==","signatures":[{"sig":"MEQCIDil+rlyGyNtRLYDEC6zxYe/uZHcjfYmq+XPHxlvT18DAiAwty5ZJM/b2E0P9+18GbX+0lEWIueG+FZFgdnG/iBvOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"5c237269b13af8aa2dbf663f265df7e2cc521774","gitHead":"3bba0ba2c3d28e5698afc86850ec70334d6dbafd","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.1.18","description":"EC cryptography","directories":{},"_nodeVersion":"1.0.2","dependencies":{"bn.js":"^1.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"2.0.1":{"name":"elliptic","version":"2.0.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@2.0.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"58814b471e011eaf7e42fa444fdffcfc0d3de8df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-2.0.1.tgz","integrity":"sha512-Ou+9rCoAOYRR162OyAO/fViNbbudO5S33y7YSrsh5zwRH1f+OaeNfmbgJ2uvFmptOu8psooYzpTrxv+2hBXEAw==","signatures":[{"sig":"MEQCIBBorSMUGsv9b10wB3PA1iMWEfmE8q0ij6r6NZJFumkAAiAnIcdRsAsb3IpCfL49Xt6792Du8cw/iRX8bt9DzPaUmg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"58814b471e011eaf7e42fa444fdffcfc0d3de8df","gitHead":"3dc8d7deace15773c379083eadb220252108fe0e","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.1.18","description":"EC cryptography","directories":{},"_nodeVersion":"1.0.2","dependencies":{"bn.js":"^1.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^1.18.2","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"2.0.2":{"name":"elliptic","version":"2.0.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@2.0.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"5891ba666d3103ddf311b14ec5de3fca74402afd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-2.0.2.tgz","integrity":"sha512-fvcrzXIZh0TNi3LTQvvp9EVNMMemCb4OFgMi7BSPy5vB0/PO5PK2FNc5pwoZNbjX4sVaRYPB1lzuodPjxui4uA==","signatures":[{"sig":"MEUCID8O0eAke3HU6Q275v6lm8VIUjWy6zWTItUqw3I7QbAfAiEAs8JcDJHnh+fGOsTv+bq47xUY2mN8pijzj0pn15M2g2A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"5891ba666d3103ddf311b14ec5de3fca74402afd","gitHead":"d459a0ef6318340399d9fe2533118255aa35c5cc","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.4.1","description":"EC cryptography","directories":{},"_nodeVersion":"1.1.0","dependencies":{"bn.js":"^1.2.4","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^2.1.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"3.0.1":{"name":"elliptic","version":"3.0.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@3.0.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"831c923399aeffb50766af1b05fdf71eba60acbf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-3.0.1.tgz","integrity":"sha512-qZUU/8Gm9nWU3aaVgjRBTHhyexmmT/TCn/Xs/uYzHStEqipU/CEKwaztlDQN9UqPoegLmS0rgGuDLhvAkWLOnw==","signatures":[{"sig":"MEUCIQDrk9YDMlTMnBdvSilBQTN0xN2j7IhVsr8Y0I46LCCecAIgc2M2ilv2/CiFRihvGfU380pJsSyHO/+aSH+ibbH4MG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"831c923399aeffb50766af1b05fdf71eba60acbf","gitHead":"6a6c943a3fe1d0ca6529dbb49816e81c4a8ce16c","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.4.1","description":"EC cryptography","directories":{},"_nodeVersion":"1.1.0","dependencies":{"bn.js":"^2.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^2.1.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"3.0.2":{"name":"elliptic","version":"3.0.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@3.0.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"fc07233e8bd1c1a108cb0997fa6757c7b1a7c0bc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-3.0.2.tgz","integrity":"sha512-hDnD564p3Uy1zzQ1Br3xnX+uTBWC9UJT51pZD8PpF8adt5TSfUMahQuV3QRIohViCBxTxEpYlyzHwXX9VnYfvQ==","signatures":[{"sig":"MEYCIQDFcW7+Rsa2oA8nQ4gEmlDI1DlS5BF6kEA5NeNXJ7n+/AIhAOnjle+NspP91kK4BJr37cacJyqjKtUhJb+/ImmqWbMl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"fc07233e8bd1c1a108cb0997fa6757c7b1a7c0bc","gitHead":"2713e49ab3f643b9db5dab9eadc762ff7073f267","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.4.1","description":"EC cryptography","directories":{},"_nodeVersion":"1.1.0","dependencies":{"bn.js":"^2.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"mocha":"^2.1.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"3.0.3":{"name":"elliptic","version":"3.0.3","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@3.0.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"865c9b420bfbe55006b9f969f97a0d2c44966595","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-3.0.3.tgz","integrity":"sha512-CrBEiS76Obfxgy6v25p2f7XUZ63DF6mJ/KL0lvBnIrlBeebacGjukc4KjbFWw6bdMnOMM6QXcO84Q2/VJaJlTA==","signatures":[{"sig":"MEQCIEMZrCwJj2irV1Zsq2gx3It5GfEuOTsYnDkh0K5AwAVwAiBL4TtQxJcGXzoPa9pyFmXbEcSeA246ivXOEJfav3iJcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"865c9b420bfbe55006b9f969f97a0d2c44966595","gitHead":"c8d7cf551fdf2ce3ecc5264b29084244ae6aa2b2","scripts":{"test":"make lint && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/elliptic","type":"git"},"_npmVersion":"2.5.1","description":"EC cryptography","directories":{},"_nodeVersion":"1.3.0","dependencies":{"bn.js":"^2.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"3.0.4":{"name":"elliptic","version":"3.0.4","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@3.0.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"67dbcf68dd1e843eef77b0b05376bd1db4f92f5e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-3.0.4.tgz","integrity":"sha512-LGYo3W9DZaqWw0wEMupI0DHFCGpRgpBgtKz64ajgr758I70Bvmqtl8A8Hd5Sz8DDK5VFQoCZdg4xjju+rB6cAw==","signatures":[{"sig":"MEYCIQCOSxHqvBhVr96hxvng8Qk1qwD28yJavfhJJCa8/y/WpQIhAPyxRvPJVKQIeW4OllVLdHQFbONRMYy6yVuxtkeTOGQX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"67dbcf68dd1e843eef77b0b05376bd1db4f92f5e","gitHead":"dfef517a0dcf145faec353fb88fdee6646d95ad4","scripts":{"test":"make lint && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.9.0","description":"EC cryptography","directories":{},"_nodeVersion":"2.0.0","dependencies":{"bn.js":"^2.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"3.1.0":{"name":"elliptic","version":"3.1.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@3.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"c21682ef762769b56a74201609105da11d5f60cc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-3.1.0.tgz","integrity":"sha512-kjzyQvz5tdIrz+O8EAaDU5oeICcg5mMevSFEEi/cprAl1GID1BoV/1tpRu56rDJ6tiXM2b+ZKh3mNrVhA3Y/2Q==","signatures":[{"sig":"MEUCIQCeQFY2YPul1MzOht8moTji5WooSynF3dVgxirq7N0DtQIgOSNMelwLA2c3TD294keKfVu4f2pA8Vk7xQmBsZ+PB6E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"c21682ef762769b56a74201609105da11d5f60cc","gitHead":"d86cd2a8178f7e7cecbd6dd92eea084e2ab44c13","scripts":{"test":"make lint && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.11.0","description":"EC cryptography","directories":{},"_nodeVersion":"2.2.1","dependencies":{"bn.js":"^2.0.3","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"4.0.0":{"name":"elliptic","version":"4.0.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@4.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"32976ad71b274c1111d82f895837dac8ea45c073","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-4.0.0.tgz","integrity":"sha512-rMme18rUd3k4VTPBGta198HZK3t2zoWvKbbONdyTnCUgwilUFSMCPTAd5qyiIDAo6ip2lNfN+wnZqyOtlHsMJg==","signatures":[{"sig":"MEUCIQD0L15o/FyvUPMvjEYmSOktwQcqo7WyVUJ7mr95N5EoAwIgGGfluCm9mCtfjoOz9ctH2Re8kNzvUpeThJzhon5fahs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"32976ad71b274c1111d82f895837dac8ea45c073","gitHead":"e3e2bc5374b25b8169369252e3bd3ef5732c7972","scripts":{"test":"make lint && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.11.0","description":"EC cryptography","directories":{},"_nodeVersion":"2.2.1","dependencies":{"bn.js":"^2.1.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"4.1.0":{"name":"elliptic","version":"4.1.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@4.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"1a660618d3d09190200149cbe0452e6a5bbe08d7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-4.1.0.tgz","integrity":"sha512-7uGpDc5ErOO1oRSFAqSCf6SGfU0+E2fSf1bXaNBp1zis3sECpan2WNkZ7WRl1twBzvEwXBd1u7iNH1NpU0mEjA==","signatures":[{"sig":"MEUCIDsmblNliKzdF+IfRZgChtIX5or90zRXjTCTzln5U1ApAiEAzT6ebDSUTqH2m3vhX2qOU41p8q49P/iiwZyyzQ7qvjc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"1a660618d3d09190200149cbe0452e6a5bbe08d7","gitHead":"e4f2675e2cb2c7a5c4a0187d0e18db18470799b0","scripts":{"test":"make lint && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.11.0","description":"EC cryptography","directories":{},"_nodeVersion":"2.2.1","dependencies":{"bn.js":"^2.1.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"5.0.0":{"name":"elliptic","version":"5.0.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@5.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"1bdd76d5f560da765cf0ba38243f8f4481ebe01c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-5.0.0.tgz","integrity":"sha512-0l4D/TbwBX5qDaqzCkojfDHOfzleWNCuIAIvM0DX+Oa2GalbOLwnT2l7s4S9aNmI0KPWinIESzUYAxSDiDZ8LA==","signatures":[{"sig":"MEQCICqCl5wqi5Le3Zyc3AK3tbZGLCJcGng8QsqNq8GcworKAiBrpliL+s8hFtxUfQH/KDtaY6EkhAP3oMuyLYUT9Xm3dQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"1bdd76d5f560da765cf0ba38243f8f4481ebe01c","gitHead":"397d5f72750a55ce1a6497965f5ad17f0aa299cb","scripts":{"test":"make lint && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.11.0","description":"EC cryptography","directories":{},"_nodeVersion":"2.2.1","dependencies":{"bn.js":"^3.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"5.1.0":{"name":"elliptic","version":"5.1.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@5.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"5658dfa7625a6a8fc687a5b8f249376bb271e6e9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-5.1.0.tgz","integrity":"sha512-CxDfkt48GwNl5YO1jELvFAEM1Mbcy/lNpyT/F+429RVznoPBVMU6L3Tif124WZ6gZ8mv7G0buNuIU54gCAYsaw==","signatures":[{"sig":"MEUCIQDEyty9lfBsBkjJ7Oo+s336cle9PjJE+URIPUWc9Fl5SAIgA5cxFhZx/ipNm7C0W03BAvx0TXZncvAvmnsiJxsBBns=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"5658dfa7625a6a8fc687a5b8f249376bb271e6e9","gitHead":"4f12b8f6bcb16e38d4a038af2d963dc10d175bde","scripts":{"test":"make lint && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.12.1","description":"EC cryptography","directories":{},"_nodeVersion":"2.3.4","dependencies":{"bn.js":"^3.1.1","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"5.2.0":{"name":"elliptic","version":"5.2.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@5.2.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"123fd155fd6637e57e416d95ac803c9fe7cb95bc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-5.2.0.tgz","integrity":"sha512-yP/l3qhFcFi4bk8auUwnI3IdNe0tytJQ5vAGT4//zN3f5+CWhBIUcQkAg70/wCJYk26dfZYLqI1YLduZg+bMSA==","signatures":[{"sig":"MEUCICdwSqgFogNqatyR6dJXDHPXYHUFQS/yfIF4H4gsh9DZAiEA/6qCf2W1m4TvriLAo0pE18OLLy6YIMG3TK91AlMbsUU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"123fd155fd6637e57e416d95ac803c9fe7cb95bc","gitHead":"742c61edd9687c672ea378ea8209cefbcf962ea9","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.14.7","description":"EC cryptography","directories":{},"_nodeVersion":"4.2.1","dependencies":{"bn.js":"^3.1.1","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"5.2.1":{"name":"elliptic","version":"5.2.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@5.2.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"fa294b6563c6ddbc9ba3dc8594687ae840858f10","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-5.2.1.tgz","integrity":"sha512-qVvoudgV87wk8eV8hCkCf64g/fgr7SL7AB+btRqEodcep/Wt4ynj4kneFN0G38Bu6/q3m2pfsbiwKKdP/udJlA==","signatures":[{"sig":"MEQCIGLvXuzcqrFQRmu2eBvNW6mTJibD/1YbjYV9LWAHtNfEAiASRK4t1JM/IWv02ka493Q8zTkG48Ee9hfLgLmgX7fj/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"fa294b6563c6ddbc9ba3dc8594687ae840858f10","gitHead":"676db36e64399e5b4c0e31ae5aa4cdf8e8362014","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.14.7","description":"EC cryptography","directories":{},"_nodeVersion":"4.2.1","dependencies":{"bn.js":"^3.1.1","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"6.0.0":{"name":"elliptic","version":"6.0.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"c48120001e5d9c26fd5e5ed05361f09b0e838106","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.0.0.tgz","integrity":"sha512-i4I3ojpUnDOlKxHycUHAF6VWQhcctHgWVmuHht+DBepEnkc5ZSERJYU2jWu230qRKaaEXHLIVwQwY9PP1seDDg==","signatures":[{"sig":"MEQCIF/FSv92OJROi6vkayVdkqy6+kDh2mUAAzKYGxUUJsIfAiAs6ubKnSIzTSTr+ujx/Q8AbM0ZSg5j5lFS110zL4lRfg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"c48120001e5d9c26fd5e5ed05361f09b0e838106","gitHead":"2477fae5cd1d0fe7adb546ad16ff6bfb8268b4ca","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"2.14.7","description":"EC cryptography","directories":{},"_nodeVersion":"4.2.1","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"6.0.1":{"name":"elliptic","version":"6.0.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.0.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"91d573ecb2a3c274b8c07e0d1f35ff19f07e6978","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.0.1.tgz","integrity":"sha512-KE1GVCm4JQi+ui9ZgAzFWYs0OfFbnGG+AsxRdvfrM8bcTuM0mgj6wbuHCX+EqkIa1JIHTrxfuygTBFbwdx96og==","signatures":[{"sig":"MEYCIQCAehEVRaiBORGhhXQ2sF9OGCoPULdlpGFmGaQv3WbI6QIhANADJn52qqrG/cYzJK3Agr0V9dbZVhaBvq6HFeOJickf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","_shasum":"91d573ecb2a3c274b8c07e0d1f35ff19f07e6978","gitHead":"a9eb628eec9a2f562e67947c5417e9b2435d0a2d","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.3.6","description":"EC cryptography","directories":{},"_nodeVersion":"5.0.0","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"6.0.2":{"name":"elliptic","version":"6.0.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.0.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"219b96cd92aa9885d91d31c1fd42eaa5eb4483a9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.0.2.tgz","integrity":"sha512-fueefqbNyJkuMeS95dRuUix5tnfTi2bp+W8OvLorLFEcyBJwEyx1MbNDwfyZQzbMGbREzApdW7c0tUORpCxG9g==","signatures":[{"sig":"MEUCIGGkQ2EsPoM1/0M9C90JHRkXVDhzpjCtkpgXLGuQuLCnAiEA75mQN7/VRPlofidoCX4fO39rUvJY8QoZRVQLsAJBNRE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"219b96cd92aa9885d91d31c1fd42eaa5eb4483a9","gitHead":"330106da186712d228d79bc71ae8e7e68565fa9d","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.3.6","description":"EC cryptography","directories":{},"_nodeVersion":"5.0.0","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"6.1.0":{"name":"elliptic","version":"6.1.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"68130e03823b4ce024955ad1be195e148099d654","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.1.0.tgz","integrity":"sha512-Dlx+wVlPwBfHarLeRdEYllIY5R2mwk0dV1qbCY5vvRfB8msQCM2KRQViExLW+/0KRMisRbTHuwJ2hQypqRu7UA==","signatures":[{"sig":"MEYCIQDJFjYEitzP7MTvPmzUw7q7TJKgcoQ8IitA7sfHGmMHlQIhANptOySTJZs5BgZAGL5Mt/+kYO30nrFU6k/71qGr6yYx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"68130e03823b4ce024955ad1be195e148099d654","gitHead":"b465fea90447f3b6c0b3f55e5fd6ecdedc1282f2","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.3.12","description":"EC cryptography","directories":{},"_nodeVersion":"5.2.0","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"6.2.0":{"name":"elliptic","version":"6.2.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"695e7233fee853883f19d6c103c3cffdb1527e12","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.0.tgz","integrity":"sha512-+BAe010txhUPhYeE8cvlyWIFU1zDTOUnGzJBh4vM+41zIiv9ZxEgF9jd6FImAWOmw5xvve+zT6QjOMsWclMp1A==","signatures":[{"sig":"MEYCIQCQ9M5brOTmu+90XXKt1UT8GXe1wYQ/UJz/7FBI9EY3dQIhAMRc03VDPE+cHpSVmXdINfqxox1pN9b0x+bLTroPUMXM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"695e7233fee853883f19d6c103c3cffdb1527e12","gitHead":"6d25d373141cade9f71404cc18a2b407849bd418","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.3.12","description":"EC cryptography","directories":{},"_nodeVersion":"5.4.1","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"6.2.1":{"name":"elliptic","version":"6.2.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"72ade423d4144e967446cc2bfbed4d088d154e71","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.1.tgz","integrity":"sha512-rhNX1YqIP88N8ii8+oHaqldyr9INMAdTGeVgDEmRPzvylGf9rqwdw1IxmfK+xQ+8fsDSkCgx8kLhy/DWREm8ig==","signatures":[{"sig":"MEUCIQDAjHhymWiWo5WS5iWIcEHD8EHdaAWrnCxTzOoL8A+X4gIgQDa5f0/usUgp0ktFOJUFv1Q50gTrzhV/hleN5RgF+3Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"72ade423d4144e967446cc2bfbed4d088d154e71","gitHead":"a706516830ff575b540953dda154a1f83d010314","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.3.12","description":"EC cryptography","directories":{},"_nodeVersion":"5.4.1","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"6.2.2":{"name":"elliptic","version":"6.2.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"806bfa651a5aa4996a1e79c92b573761ea7d7574","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.2.tgz","integrity":"sha512-2I5PGf8G0u3+ssvia741TVYXic/6VwNO4gvwWBZSpmBEMhK4Z94+dQLglrXodvyoB0JGR0Vy1n7Nf9hrcjaoPA==","signatures":[{"sig":"MEUCIHIAi0QoS7Zc3pW1xrxMWh+MmMIE1xA2n/psjjX/Ia7BAiEAx53f2GbpbUkQlQZ+bjWG8u0O5G0OXZCQ0nhhr6+fMJY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"806bfa651a5aa4996a1e79c92b573761ea7d7574","gitHead":"628eb61186a7f1c81247cf991d808dc9ead83645","scripts":{"test":"make lint && istanbul test _mocha --reporter=spec test/*-test.js","coveralls":"cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.3.12","description":"EC cryptography","directories":{},"_nodeVersion":"5.4.1","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^1.11.3","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.17","coveralls":"^2.11.3","uglify-js":"^2.4.13","browserify":"^3.44.2"}},"6.2.3":{"name":"elliptic","version":"6.2.3","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"18e46d7306b0951275a2d42063270a14b74ebe99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.3.tgz","integrity":"sha512-ZHFawTfdDmHbo5FZXBbGM1MgMNHt+NceQqYgj8jsxOEuH65v/iJLOwQVfUUxEfACX7avFo6s+NVaWO5z1+AtvA==","signatures":[{"sig":"MEUCIQDuxcTTHfQZEUfLKv2xH4B3U+RqLeed5NjeS9w+zUc1qwIgYcuyii+DRIMwMuCaY7KvFZro5WEunrp719x8tTEKi6U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"18e46d7306b0951275a2d42063270a14b74ebe99","gitHead":"c32f20b22b420eb6af3c6dda28963deb7facf823","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/*.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/*-test.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/*.js","coverage":"npm run unit --coverage","coveralls":"npm run coverage && cat ./coverage/lcov.info | coveralls"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.3.12","description":"EC cryptography","directories":{},"_nodeVersion":"5.4.1","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"jscs":"^2.9.0","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3"}},"6.2.4":{"name":"elliptic","version":"6.2.4","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"f8a8917c3024233ac37d8901e17cca425851c7d8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.4.tgz","integrity":"sha512-9d1V3rn86omK469YBv5X6FLr7HHO9QBKjqTXRMl2w6D+XoQIyG96jZGmzLKQk8yj+r6VUqP0w1bM7PHFwNbfqQ==","signatures":[{"sig":"MEUCIQCnCV487x//7jWV4YQGP7Bjn41O4mCVgrRAuR2Lo0J+3QIgQ2MVzguwv2hmTkKyWy8wr44CMPpYNzKTy+0YYS9poQk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"f8a8917c3024233ac37d8901e17cca425851c7d8","gitHead":"de388fb57550940624eb421feb2d7d7f24087f13","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.8.6","description":"EC cryptography","directories":{},"_nodeVersion":"6.0.0","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.2.4.tgz_1463780933643_0.6566972529981285","host":"packages-16-east.internal.npmjs.com"}},"6.2.5":{"name":"elliptic","version":"6.2.5","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.5","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"24846340477dfce75c56b8ff4b1d6d6ec258e06a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.5.tgz","integrity":"sha512-izpm3LzdSZadPYByTRkhVbZ893Gf9qBSBmrXtDXOG25xLGzGqt2HSPXI2efvaXvEMDklVitneO0P5xQ/jvbBXw==","signatures":[{"sig":"MEYCIQCMsMq+lMVbOa8y1nLWc2PdkXrTIPVop41Mx931t7VszwIhANqhdpS9FWRx6ivAQ1Ds+aKdTRw55VvQPNa6/zc/UBto","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"24846340477dfce75c56b8ff4b1d6d6ec258e06a","gitHead":"fa5ffdc2d008fd6b1eb6e34864c977ea2748b7ce","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.8.6","description":"EC cryptography","directories":{},"_nodeVersion":"6.0.0","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.2.5.tgz_1463781139171_0.8202476925216615","host":"packages-12-west.internal.npmjs.com"}},"6.2.6":{"name":"elliptic","version":"6.2.6","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.6","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"f3f9371440a4af3ee459460a8078d65ad7f9a581","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.6.tgz","integrity":"sha512-jb1qVzJDLAHJWfVz+AcY/NC7uWpdIwJWAn4sU8c40Pt/WIeIVwg9DkfXYnzdkiHXGupJzDU+JUKIUXHkiiSt0w==","signatures":[{"sig":"MEUCIQCYo8+cVJPLxGEWXw0RpTQ9NOE/cwdWmLjCMjUGRGJi9QIgTE0LB9sXxMvbOpRlVwrTPtUy/htPjpU++FB6cY6QCMk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"f3f9371440a4af3ee459460a8078d65ad7f9a581","gitHead":"0d7910d46075c31325838d35cb0685f449f32868","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.8.6","description":"EC cryptography","directories":{},"_nodeVersion":"6.0.0","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.2.6.tgz_1464201676702_0.483377248281613","host":"packages-12-west.internal.npmjs.com"}},"6.2.7":{"name":"elliptic","version":"6.2.7","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.7","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"dce82efbf176eefa7495d4be3e8b9f5b5694b295","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.7.tgz","integrity":"sha512-rR9d3D7rJt5/EI7z5QdmLDssjxjKYoBLsdQ5c6H+4pWlXQrnXm2TXTLkI0roemc1dIZ6+LWpqQIaVTAnyIajTg==","signatures":[{"sig":"MEYCIQDYBr8TjGngV5h9W50ccDBWa57ieL/rC74BUpwlXuFVnQIhAKzmNwDW5cmTRHF+zTlfqgTkZ2vitnqR1ucqlNRGPrCB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"dce82efbf176eefa7495d4be3e8b9f5b5694b295","gitHead":"6a8ef1457bb8f45102d6678fc1095165f77d55d3","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.8.6","description":"EC cryptography","directories":{},"_nodeVersion":"6.0.0","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.2.7.tgz_1464201793202_0.12479878286831081","host":"packages-12-west.internal.npmjs.com"}},"6.2.8":{"name":"elliptic","version":"6.2.8","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.2.8","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"44a25b3d1550bebb74d0b6d22d89940206b51739","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.2.8.tgz","integrity":"sha512-geHpIDJhRtJe8bwysHAZiMSwUdB+u0hVok/5hXgpnbaw4UIqnhkPKYoeOt2OmfKsJRWnJ1qt9Mymx+CYXlrJKQ==","signatures":[{"sig":"MEQCICO8SeObY8o9LinCNBOHbaroJwEqIiula1HrnjzpJ3ynAiB3HE6HavM3nZHoYFTh7WDWmdMmEkSGZ7R1x5OM9jtnKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"44a25b3d1550bebb74d0b6d22d89940206b51739","gitHead":"236f37395bdf9e4af1dfc8e84f6353bce540b93e","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.8.6","description":"EC cryptography","directories":{},"_nodeVersion":"6.0.0","dependencies":{"bn.js":"^4.0.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.2.8.tgz_1464746004719_0.6379144776146859","host":"packages-12-west.internal.npmjs.com"}},"6.3.0":{"name":"elliptic","version":"6.3.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.3.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"1b5e9eba9940f12a474651c712190d373bc8b21a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.3.0.tgz","integrity":"sha512-lN+Fe+tb4hGgiTRghWDsvrcQl86VgjdUuwmGKplL90JeygC/joAewCMbqHMoqJW4RDteR702shmvGo7TkiUPHQ==","signatures":[{"sig":"MEUCIQD7QX1wwaFQ4XLQq1QwRwA2qeQR5aT3diqAAnk8ayVJxwIgdABXaC9Pv2JT44htDn0k56Gd7P29WN1FBQL+NGaNn4E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"1b5e9eba9940f12a474651c712190d373bc8b21a","gitHead":"7b1c732b2370a44d39345f5c9087f42e70988590","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.8.6","description":"EC cryptography","directories":{},"_nodeVersion":"6.0.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.3.0.tgz_1465877833597_0.14170785737223923","host":"packages-16-east.internal.npmjs.com"}},"6.3.1":{"name":"elliptic","version":"6.3.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.3.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"17781f2109ab0ec686b146bdcff5d2e8c6aeceda","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.3.1.tgz","integrity":"sha512-zAAML/12TsFiYq8BT1Je8yJUHPl/P6dB+b7RYTvEjgo4vLQC88okT+SSpwZRbx3Juu+fGfQyr5snUYOWokqkNQ==","signatures":[{"sig":"MEUCIDQHjCh/8wJ2HHqNON2qx9KWVthLxzyfbtKCf2O3s/O+AiEAzi0DrMtdcyy3CSrNt7l/Iv6BPnLk13I1X7OLpsLdIm0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"17781f2109ab0ec686b146bdcff5d2e8c6aeceda","gitHead":"c53f5cf3d832c0073eb4a4ed423a464cbce68f3e","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.8.6","description":"EC cryptography","directories":{},"_nodeVersion":"6.0.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.3.1.tgz_1465921413402_0.5202967382501811","host":"packages-16-east.internal.npmjs.com"}},"6.3.2":{"name":"elliptic","version":"6.3.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.3.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"e4c81e0829cf0a65ab70e998b8232723b5c1bc48","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.3.2.tgz","integrity":"sha512-fWMXUkG+piyCogoOd+bUbMYBSO6y2W9BAo28CEZ6wJ06+ZQCgQ2ASgIIlKw/zj0Dny2pa+FN/Do5xMAF4NvUzg==","signatures":[{"sig":"MEUCIDUeetU9RS/IS0LeO5ngvXwk+n5QL7yyX6aBFi1KdZrcAiEA5elYsi1QGOsWU8gxqPy/vdsGG9NpNXqND2N4yO5r4vY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"e4c81e0829cf0a65ab70e998b8232723b5c1bc48","gitHead":"cbace4683a4a548dc0306ef36756151a20299cd5","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.10.3","description":"EC cryptography","directories":{},"_nodeVersion":"6.3.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.3.2.tgz_1473938837205_0.3108903462998569","host":"packages-16-east.internal.npmjs.com"}},"6.3.3":{"name":"elliptic","version":"6.3.3","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.3.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"5482d9646d54bcb89fd7d994fc9e2e9568876e3f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.3.3.tgz","integrity":"sha512-cIky9SO2H8W2eU1NOLySnhOYJnuEWCq9ZJeHvHd/lXzEL9vyraIMfilZSn57X3aVX+wkfYmqkch2LvmTzkjFpA==","signatures":[{"sig":"MEQCIF+5MJy1klu2SHdF5qDLEd0yeaGemFoIbPqfLf0ah4GHAiA0032QI985kbZCMn5BxPb+dt5IS+oDBZS05K90uhgMqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"5482d9646d54bcb89fd7d994fc9e2e9568876e3f","gitHead":"63aee8d697e9b7fac37ece24222029117a890a7e","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.10.8","description":"EC cryptography","directories":{},"_nodeVersion":"7.0.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-cli":"^1.2.0","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.3.3.tgz_1486422837740_0.10658654430881143","host":"packages-18-east.internal.npmjs.com"}},"6.4.0":{"name":"elliptic","version":"6.4.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.4.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"cac9af8762c85836187003c8dfe193e5e2eae5df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.4.0.tgz","integrity":"sha512-s8oifyiQMQi+n/gJuw37WK3D1aVOWIgj59+DBsg48eJPo34QZWl2cl9kL4SI/W94/AdMFAyXG+QnSzbXQ+iJ1w==","signatures":[{"sig":"MEUCIQCGtPoP7V5mMy6a6T77U1WiCTZS9z0ukPgp1X4lSJd0awIgM8ZVcNALt623MjcrReZK7I3RWz81Rexs3pAF8thu7Pk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/elliptic.js","_from":".","files":["lib"],"_shasum":"cac9af8762c85836187003c8dfe193e5e2eae5df","gitHead":"6b0d2b76caae91471649c8e21f0b1d3ba0f96090","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"3.10.8","description":"EC cryptography","directories":{},"_nodeVersion":"7.0.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1","hmac-drbg":"^1.0.0","minimalistic-assert":"^1.0.0","minimalistic-crypto-utils":"^1.0.0"},"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-cli":"^1.2.0","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic-6.4.0.tgz_1487798866428_0.30510620190761983","host":"packages-18-east.internal.npmjs.com"}},"6.4.1":{"name":"elliptic","version":"6.4.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.4.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"c2d0b7776911b86722c632c3c06c60f2f819939a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.4.1.tgz","fileCount":17,"integrity":"sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==","signatures":[{"sig":"MEUCICr3R5v7SBlQQza6SX2VlZcQgnUQ5JGDhnROliVikHeDAiEA9CydpSWWFVRkfeU+FkitQGCEykyzi5QPgOhvaO9HFcc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118371,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba7vUCRA9TVsSAnZWagAA+gcP/jWaj5GmDZ0YFi/X4g5O\nx+pxu9i3HbP9YqywT7rz3XFXSaytu0LQDeDEbddl523X69tsbKfzHRTcnW8n\n2r0VjPhttRm+0RpEhBwjSIK34VkQA1xIWh2ugOToKXVCFVLM5VFDPGzbiN6x\n/hpL7gj1hoCRVmuhjnqFQ+vPKACKfv1Eq4CsRmu2focmP37kQpWQlweD/z4V\nJF4NxA33Fvp13Fl+9g4sPHyhUVsW9ojVaG3Ijn70pCaGQM18UPlbODkWQ1QX\nAgteOFjkIOtcalJk3B3qsM8GZeHEcAFvt2T73miJkHdCGNmRQS45Ede+gnj0\nlLlZJsCCKUHtTqrlprHo6AgMnBZufmytyozYAHC1/JYniazSBi2yPHtQeniR\nl69BfiRBdD2rNrMPwmCNRkMqrgel5WMGpaD0xdaFAHF1Ru2ZQFKsA7KvPGgp\nA20+LN11cCib67Pg5XDyrZ92T3yXec+6gQ3iq9d9UBZKFGl0P8ebVqq1LrUJ\na6nekwMpRISWnKcqV72XVmQdBmUWHq9VfVLsWJzVIJqtpHmUO7q74ACP3i4W\n0/F1REeI0YEhh3NjeStdDecfjlu7PY0pLQpbk2I3ms+6DO+cAfeDEev5jFBK\nwQabRNhITeT1FVtxZAcApj33fnCdqwaWr1NS00K5ZRqhDTTzPr/O4KRN4CR1\npstU\r\n=UVBB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/elliptic.js","files":["lib"],"gitHead":"523da1cf71ddcfd607fbdee1858bc2af47f0e700","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"6.3.0","description":"EC cryptography","directories":{},"_nodeVersion":"10.5.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1","hmac-drbg":"^1.0.0","minimalistic-assert":"^1.0.0","minimalistic-crypto-utils":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-cli":"^1.2.0","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.4.1_1533787091502_0.6309761823717674","host":"s3://npm-registry-packages"}},"6.5.0":{"name":"elliptic","version":"6.5.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.5.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"2b8ed4c891b7de3200e14412a5b8248c7af505ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.5.0.tgz","fileCount":17,"integrity":"sha512-eFOJTMyCYb7xtE/caJ6JJu+bhi67WCYNbkGSknu20pmM8Ke/bqOfdnZWxyoGN26JgfxTbXrsCkEw4KheCT/KGg==","signatures":[{"sig":"MEUCICanJb4scUiCnAY2oGHAZNgm5YRNMrQxsiTKFKzGgfGvAiEAzni0yhiZL16H3nq81xCBXRRBbrCPwUFCRfyPyCh7FHI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118006,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEu6jCRA9TVsSAnZWagAAJh4QAJXJ18MReidNMHrxFJGv\ngSONMB2uz0lWJ7eEUyggaCA/Tr6w4RBA6Ilne0Wou3jTAGou+GClpAde6Hkb\nEq1iq1brx+5gHeY3rGs8GB+T3c1JsVz+2t6934esXGM6IJNmG91TaCMSbuwQ\nTWHD62RxFylLYjffBIWt6KLximZnXcvAES0Qu7VUql1SlfvmGtaHlQAhvtLj\nG+ayBnSnWMcEvDPJdfnKi67PlGMa334spEmWzcqobFySr+y/ufiZRCp+wiSl\ndCwbFNMaH4fue+dhq1m7jGO/euFQvJw2Jf32zT/ToaM768nH8yHrrZ8lMRjs\ngCUymge8kbI5W1WA8wla7+J52Exbo6LbcBqSupVhVw6gXkOdjQCOkywBXa1c\nPiFxwOUSfdFATpkUi3/8serYCgv9NgGzvQ0rjej0//1+he6q7UUyKn9wyrdH\nMntmi18UgyQ8c1NrshKAOCb1oeniCEv7B1adfH2axH9uvMiVP8N5BMfAUNE1\nnkCD3lDXRz/7C+90DiI+h2MS3+az8ciqMTbpKlw3HrmUyCex+KvLq9+wNLGf\nyaJGd/r6NT0pu36v0M2+ul266/RbbY6D1ED/cl8gDZRFTT/SfTCkU+QAn2Mg\nfAlnn9BXogYR1XM1GNrnGUVkY7ngORiAGez5DU7P93jMpdSS9OtwAHHi1Oto\nbZ+X\r\n=LuMF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/elliptic.js","gitHead":"475f066aebd14681591f0f0f18a2abc0ded8c390","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"6.9.0","description":"EC cryptography","directories":{},"_nodeVersion":"12.2.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1","hmac-drbg":"^1.0.0","minimalistic-assert":"^1.0.0","minimalistic-crypto-utils":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^1.4.3","jscs":"^2.9.0","grunt":"^0.4.5","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^2.11.3","grunt-cli":"^1.2.0","grunt-saucelabs":"^8.6.2","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.5.0_1561521826385_0.20848274510512943","host":"s3://npm-registry-packages"}},"6.5.1":{"name":"elliptic","version":"6.5.1","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.5.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"c380f5f909bf1b9b4428d028cd18d3b0efd6b52b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.5.1.tgz","fileCount":17,"integrity":"sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==","signatures":[{"sig":"MEQCIGeCV3YyXP0ArAUKY58YlkdqT77we/YXvTkM4cVegNptAiAyYcqvYE4a+uKl3KnoHu8KQvPxs5htoY845TzOtOaTCw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118051,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbyK2CRA9TVsSAnZWagAAZR0P/jpSTQHkhgrh51Ql5iEp\nk19ZPvn6rvDRJdjPBgZfimuE8jYbzRrqEk0O8OJvWJAgBUz7RGcWsYjXEb0v\ncapOYnS9iL7EGmrZm/zIk2wB4K4vqbY1brh1WSGtZPJOotaTebfrepkUcqrk\nr2ZDg5YryX+gMD2QjumRSb3xXHbQukPvM9cc5WF5ZRaEzgQxRwtwwqzNejs1\np1DzKTNqBWzDGyl3NRdNPO8sEfcaf8LCyCu85OEFR1B7HytR1TH2B1uX7bNb\n82pw62BtmFbafa3VmFxeYk6Yqi5dHXUqsqLIGAsJJyaRsVOyLe/BuT7dHWgX\nEh8bQP4quLm2WZFIIRSUml4QXHiviMyUHfYITg05T/ODZejseHy65LYGgTsS\nQtsu+tDv+a4h+2FWNfkeVyinkEMNetlp+vPkSKVFeNLbCRFTR9ufgZqLn2IL\nnxpLdHLt9y6HaWDSSWwUwUYnK7WRiF8zP1cNRqZWyf7IPLHyRruwpkUFk9/u\nc6J3IgBQpgXfLxxXJTqqDvENmmMGtcJRWN0wtDLWNcYhm5f2px9m5vdxIj0U\nQn+6IZMgxTPsuA4w3iyagWbl/xtuEEw2XZUB++TztGfUtMImRFNEOqI3LO6V\n9CnJKpeVDPckXgDBwHJF9w6ywriLQKyR9rG8hl+nlonSbohg2hdQdB7TTeWJ\n1/J0\r\n=uYn+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/elliptic.js","gitHead":"71e4e8e2f5b8f0bdbfbe106c72cc9fbc746d3d60","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"6.11.2","description":"EC cryptography","directories":{},"_nodeVersion":"12.2.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1","hmac-drbg":"^1.0.0","minimalistic-assert":"^1.0.0","minimalistic-crypto-utils":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^1.4.3","jscs":"^3.0.7","grunt":"^1.0.4","mocha":"^6.1.4","jshint":"^2.6.0","istanbul":"^0.4.2","coveralls":"^3.0.4","grunt-cli":"^1.2.0","grunt-saucelabs":"^9.0.1","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.5.1_1567564470143_0.35768573259267966","host":"s3://npm-registry-packages"}},"6.5.2":{"name":"elliptic","version":"6.5.2","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.5.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"05c5678d7173c049d8ca433552224a495d0e3762","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.5.2.tgz","fileCount":17,"integrity":"sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==","signatures":[{"sig":"MEYCIQCCdj5OPqi2y/YuNacPUrXiqM2Yp/BlxzHtHZBibgf9kgIhAN5vWRVGTqzx/l2OyC+4PQHoOBJFYbQVpR/TNrIBvW8m","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2DHgCRA9TVsSAnZWagAAfx0P/RYZUDcD1KNqpERJSTgL\nlA3wXXXVB78IVwSy9laMD1GdDpsMy71PHjFMZL1NM2ZaZUUi7eiNaYf8sFrP\nQWadLsl3M2tkW6T4AkgxJXMEmbf3k9hCy+ZvRdWKJUF0g44WORvK2SNzDI/C\nIuBZ9xfTS5dZ3jZJOMZNZO4+PHzMQ/pzCGXafuuzsryPlcx0PvIN66xTRQbo\n/ByAl3lIK/C5HsFUkaSxcabcSmZrVuwDw8ciKGrBXjWkXAqLzO0u9HEczucP\n+RNNFvocrTB4ge/4yV4cdGSF7QXkzJ7hPqQgnhj0TrJO//qBERKXffQq91Hr\nU/xdUsX/dnIqpzpV81E36L+0VIxxg66/21ba4qlsho0i57v83Y6jLH3wFud4\n/LGzynTDiwySpREE9Gb3tnXSR3OuZstyJORQwEglAQIp7QcneqGOghNgY4am\nuFkM/6rAJi4tGw8uBn0tgRQZHtmy8XwNtuN/ShRoBzBayN2XVmJrApUxPpJK\nu+v3O0skLnpsXqgCpskrRK4dWtgkItxSZn91DZ219eGZvpFOgS8Jnb/bA07B\nZ7mGgM0B91Bc4ZbUGyGyv17j/p5fItlA0nqX6itwNjBI+BeYlenWXG3JfEjd\npteBvQyvxCHtcnc987HIm6VYGFvj1xlI7eLD4fQXPbuos0jbyEo2ndIU8jIT\nJVlS\r\n=BoXv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/elliptic.js","gitHead":"60489415e545efdfd3010ae74b9726facbf08ca8","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"6.12.1","description":"EC cryptography","directories":{},"_nodeVersion":"12.11.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1","hmac-drbg":"^1.0.0","minimalistic-assert":"^1.0.0","minimalistic-crypto-utils":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^1.4.3","jscs":"^3.0.7","grunt":"^1.0.4","mocha":"^6.2.2","jshint":"^2.10.3","istanbul":"^0.4.2","coveralls":"^3.0.8","grunt-cli":"^1.2.0","grunt-saucelabs":"^9.0.1","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.5.2_1574449632470_0.8146993695516966","host":"s3://npm-registry-packages"}},"6.5.3":{"name":"elliptic","version":"6.5.3","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.5.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.5.3.tgz","fileCount":17,"integrity":"sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==","signatures":[{"sig":"MEUCIElUxQosTDwCwXQ+WaG4tpw5wJMrDhpO/2L40lOMIe5zAiEAvE6WzTCMb3oq8DnU7JYTCZ7atyZEopLGaCu+Ahwblr0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118531,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe64kfCRA9TVsSAnZWagAAnnEP/jFxX0m9YZshgdiItHkR\nVLy+kvaHKZyosZySjGqIXkJn9JQ2wzOt4YCKVyaRnrAlSxJm7D7x568Uq1fl\nOgIdY/t2VDgwgiOIYZ7RzpE4AKLnEw45LX4XvzXlQ6xxD8YV1J7AltlxYhNl\nIm8ofDd2zOTqwrRicnAUaVR0PoQwnLhKUsOaRUPSqP9WByDKq5qNjLb6Hcxi\nZVsZHaaIPQFzMah9Kxn8aAGGf9f8WizUq84qjJnL27ATTJsjrzku3V/elMvC\nljY7OtcWf+En6yZigHfK3eYVnYuZmpUmPmtP6+mcAcqnp2LDu+Tj0I0NUJjW\nbYIlOzutL1W5U6dSKwI8yi1OwR+NuXcJDu8b05cXpI2V85CbZ9uBu1uhloNY\nytwVzVkuZD1GifAjCMfe3Zjlha6KOvo5ASatWS1u9cxD887wuJA/rWpFMGgF\n/lkZASJzcij6gwDpSMmkpX3OJUE7xTrPv+8QBt7HBH22nqZm41l3HRFEH/3r\n/pkRGVI6MiyILzYHgQOo716Fbnj9u9NFXoeAcQm/fBDaaDTG/XYK34gmF2Iy\nRqbmsFNRoQ5HYbdIwHEzom2gkT8Zm9Gac+zUpIt+I/Z1wvvdai7K3VI9wHgw\n8e8+TsyJ6KB2iCo8h0uvwWrIm/dk3dAdnW19X3jxqhGc8QEV/mh/VORaXuE1\nkv4D\r\n=45uD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/elliptic.js","gitHead":"8647803dc3d90506aa03021737f7b061ba959ae1","scripts":{"jscs":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","lint":"npm run jscs && npm run jshint","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","jshint":"jscs benchmarks/*.js lib/*.js lib/**/*.js lib/**/**/*.js test/index.js","version":"grunt dist && git add dist/"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"6.13.7","description":"EC cryptography","directories":{},"_nodeVersion":"13.9.0","dependencies":{"bn.js":"^4.4.0","brorand":"^1.0.1","hash.js":"^1.0.0","inherits":"^2.0.1","hmac-drbg":"^1.0.0","minimalistic-assert":"^1.0.0","minimalistic-crypto-utils":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^1.4.3","jscs":"^3.0.7","grunt":"^1.0.4","mocha":"^6.2.2","jshint":"^2.10.3","istanbul":"^0.4.2","coveralls":"^3.0.8","grunt-cli":"^1.2.0","grunt-saucelabs":"^9.0.1","grunt-browserify":"^5.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^1.0.1","grunt-mocha-istanbul":"^3.0.1","grunt-contrib-connect":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.5.3_1592494366350_0.7296651468879995","host":"s3://npm-registry-packages"}},"6.5.4":{"name":"elliptic","version":"6.5.4","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.5.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"da37cebd31e79a1367e941b592ed1fbebd58abbb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.5.4.tgz","fileCount":17,"integrity":"sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==","signatures":[{"sig":"MEYCIQD/DtnRSBNEHXouZlvqBr3R6V66YAomDKMyYDaI6WbGigIhAMLGccD/hm6yDQEXEWkGr++6ATKFYUe85+QUy35L3FCc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGZheCRA9TVsSAnZWagAAhq4P/j5/24DorEMnN4W2SXlx\n/L6SZRzX18Gt0/G2s4F3KRVXjnZ16PNR1zIqf6BpqVAFULkPVyGTAKM0guj5\nDZZw9OpbuW3b8r+O1Zz+f6mbbg3++Vp5CDZkfk9hD8XtVQS1QuYzIPoZ/849\nxNiw7cO8FJdjHtGuRS27KPFPCdFIU9py+GEQus7tfl3D1XqeGrjHPc/tAwCx\nqBlrWxCgMI7N3eOXI6BU6zKw/VLrmptI/PC0jfjfTugWQMXmMfgbAR8MHAnu\nk2QzJTwpxIY1hziqjWjD/n1BmdKURmHuj30jDJzJZRNEWTy3VBDdHHeRttEx\nakNlMmWSII51oWseQQcV/DNuNJ2itEYQF294k8qLYEt0u9aXuk4ViSalUPHh\nJeCgob4bGL0xDL58Xk4xybXxbAtIaK/B/1qyOEru/PIlSli6l2ps5YhFeItj\nWZAD/Ny0sxCXGGnTO90HquwND/z3EAEoyjwbAkr9gy+nv35BsLJJv5TyAawl\nTwpni7yWg2n5R1liZa/OpUmeRX8CZuJz9E5gilcC6siWsofrZS81Eyi/WR7Z\nn0/w7jP1upn8W0OI70VptDH3AwskKeWmLYWTi6mdYDl1G1FoB9S8zqhYU+Gn\nWzRevXSKOOLCwPFkT1LScMvYl3jyfo+3qwM+72hqlVJhfXX0w1xPCf9Bu0Hs\nx/9b\r\n=bSOw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/elliptic.js","gitHead":"43ac7f230069bd1575e1e4a58394a512303ba803","scripts":{"lint":"eslint lib test","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","version":"grunt dist && git add dist/","lint:fix":"npm run lint -- --fix"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"7.4.3","description":"EC cryptography","directories":{},"_nodeVersion":"15.7.0","dependencies":{"bn.js":"^4.11.9","brorand":"^1.1.0","hash.js":"^1.0.0","inherits":"^2.0.4","hmac-drbg":"^1.0.1","minimalistic-assert":"^1.0.1","minimalistic-crypto-utils":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^2.0.2","grunt":"^1.2.1","mocha":"^8.0.1","eslint":"^7.6.0","istanbul":"^0.4.5","coveralls":"^3.1.0","grunt-cli":"^1.3.2","grunt-saucelabs":"^9.0.1","grunt-browserify":"^5.3.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^5.0.0","grunt-mocha-istanbul":"^5.0.2","grunt-contrib-connect":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.5.4_1612290141828_0.9176677352165363","host":"s3://npm-registry-packages"}},"6.5.5":{"name":"elliptic","version":"6.5.5","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.5.5","maintainers":[{"name":"anonymous","email":"blackhole@livebox.sh"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"c715e09f78b6923977610d4c2346d6ce22e6dded","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.5.5.tgz","fileCount":17,"integrity":"sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==","signatures":[{"sig":"MEUCIQDLglJZDiwYP8ZYmUI7ndjpKiK1gG5o3eEoQrepOssG/gIgIKfEI563lwxE0uOQy/ojI5uGOrQoR3r0CbnfBz9scD8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118513},"main":"lib/elliptic.js","gitHead":"75700785ff41bb5d029d19186beff26d4883caa5","scripts":{"lint":"eslint lib test","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","version":"grunt dist && git add dist/","lint:fix":"npm run lint -- --fix"},"_npmUser":{"name":"anonymous","email":"blackhole@livebox.sh"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"10.2.4","description":"EC cryptography","directories":{},"_nodeVersion":"20.11.0","dependencies":{"bn.js":"^4.11.9","brorand":"^1.1.0","hash.js":"^1.0.0","inherits":"^2.0.4","hmac-drbg":"^1.0.1","minimalistic-assert":"^1.0.1","minimalistic-crypto-utils":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^2.0.2","grunt":"^1.2.1","mocha":"^8.0.1","eslint":"^7.6.0","istanbul":"^0.4.5","coveralls":"^3.1.0","grunt-cli":"^1.3.2","grunt-saucelabs":"^9.0.1","grunt-browserify":"^5.3.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^5.0.0","grunt-mocha-istanbul":"^5.0.2","grunt-contrib-connect":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.5.5_1709623320376_0.47441492368428384","host":"s3://npm-registry-packages"}},"6.5.6":{"name":"elliptic","version":"6.5.6","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.5.6","maintainers":[{"name":"anonymous","email":"blackhole@livebox.sh"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"ee5f7c3a00b98a2144ac84d67d01f04d438fa53e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.5.6.tgz","fileCount":17,"integrity":"sha512-mpzdtpeCLuS3BmE3pO3Cpp5bbjlOPY2Q0PgoF+Od1XZrHLYI28Xe3ossCmYCQt11FQKEYd9+PF8jymTvtWJSHQ==","signatures":[{"sig":"MEUCIDSSxmTXewXIQQhoHU3mmffwgpIR5GEjYeOnIIbMUSG2AiEAtChzFZnQFVpg+XoTS9AwW3aZpLA55l+/p9VO699/j7o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118594},"main":"lib/elliptic.js","gitHead":"03e06e135c8e44a2da560fa197d0ba1e1e2759e9","scripts":{"lint":"eslint lib test","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","version":"grunt dist && git add dist/","lint:fix":"npm run lint -- --fix"},"_npmUser":{"name":"anonymous","email":"blackhole@livebox.sh"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"10.8.1","description":"EC cryptography","directories":{},"_nodeVersion":"22.3.0","dependencies":{"bn.js":"^4.11.9","brorand":"^1.1.0","hash.js":"^1.0.0","inherits":"^2.0.4","hmac-drbg":"^1.0.1","minimalistic-assert":"^1.0.1","minimalistic-crypto-utils":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^2.0.2","grunt":"^1.2.1","mocha":"^8.0.1","eslint":"^7.6.0","istanbul":"^0.4.5","coveralls":"^3.1.0","grunt-cli":"^1.3.2","grunt-saucelabs":"^9.0.1","grunt-browserify":"^5.3.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^5.0.0","grunt-mocha-istanbul":"^5.0.2","grunt-contrib-connect":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.5.6_1721184025384_0.4711854081887463","host":"s3://npm-registry-packages"}},"6.5.7":{"name":"elliptic","version":"6.5.7","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.5.7","maintainers":[{"name":"anonymous","email":"blackhole@livebox.sh"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"8ec4da2cb2939926a1b9a73619d768207e647c8b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.5.7.tgz","fileCount":17,"integrity":"sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==","signatures":[{"sig":"MEQCIB6T4vfrco+OVJyd78b2tkVyAQlCDu1z7f1KekcNvxTGAiBIjiVyKAk5G6tQP1GNkaqmMb5z0GuaZU11vkm6QFPa4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":118848},"main":"lib/elliptic.js","gitHead":"3e46a48fdd2ef2f89593e5e058d85530578c9761","scripts":{"lint":"eslint lib test","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","version":"grunt dist && git add dist/","lint:fix":"npm run lint -- --fix"},"_npmUser":{"name":"anonymous","email":"blackhole@livebox.sh"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"10.8.2","description":"EC cryptography","directories":{},"_nodeVersion":"22.5.1","dependencies":{"bn.js":"^4.11.9","brorand":"^1.1.0","hash.js":"^1.0.0","inherits":"^2.0.4","hmac-drbg":"^1.0.1","minimalistic-assert":"^1.0.1","minimalistic-crypto-utils":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^2.0.2","grunt":"^1.2.1","mocha":"^8.0.1","eslint":"^7.6.0","istanbul":"^0.4.5","coveralls":"^3.1.0","grunt-cli":"^1.3.2","grunt-saucelabs":"^9.0.1","grunt-browserify":"^5.3.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^5.0.0","grunt-mocha-istanbul":"^5.0.2","grunt-contrib-connect":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.5.7_1723602257258_0.39725894938483197","host":"s3://npm-registry-packages"}},"6.6.0":{"name":"elliptic","version":"6.6.0","keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"elliptic@6.6.0","maintainers":[{"name":"anonymous","email":"blackhole@livebox.sh"}],"homepage":"https://github.com/indutny/elliptic","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"dist":{"shasum":"5919ec723286c1edf28685aa89261d4761afa210","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.6.0.tgz","fileCount":17,"integrity":"sha512-dpwoQcLc/2WLQvJvLRHKZ+f9FgOdjnq11rurqwekGQygGPsYSK29OMMD2WalatiqQ+XGFDglTNixpPfI+lpaAA==","signatures":[{"sig":"MEYCIQCxtdizY2Y8p7eiK9ko755bOZ3kJJfw4IB8rL5qY2jvHgIhAN2Pru/+uqnX1FM9KGu2cxWLTcjQpeck8hODBCc0GNg6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119506},"main":"lib/elliptic.js","gitHead":"b8a7edd61a0d9bddd0bbf3436a4b476401edbe20","scripts":{"lint":"eslint lib test","test":"npm run lint && npm run unit","unit":"istanbul test _mocha --reporter=spec test/index.js","version":"grunt dist && git add dist/","lint:fix":"npm run lint -- --fix"},"_npmUser":{"name":"anonymous","email":"blackhole@livebox.sh"},"repository":{"url":"git+ssh://git@github.com/indutny/elliptic.git","type":"git"},"_npmVersion":"10.8.2","description":"EC cryptography","directories":{},"_nodeVersion":"22.5.1","dependencies":{"bn.js":"^4.11.9","brorand":"^1.1.0","hash.js":"^1.0.0","inherits":"^2.0.4","hmac-drbg":"^1.0.1","minimalistic-assert":"^1.0.1","minimalistic-crypto-utils":"^1.0.1"},"_hasShrinkwrap":false,"devDependencies":{"brfs":"^2.0.2","grunt":"^1.2.1","mocha":"^8.0.1","eslint":"^7.6.0","istanbul":"^0.4.5","coveralls":"^3.1.0","grunt-cli":"^1.3.2","grunt-saucelabs":"^9.0.1","grunt-browserify":"^5.3.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^5.0.0","grunt-mocha-istanbul":"^5.0.2","grunt-contrib-connect":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/elliptic_6.6.0_1729912443809_0.9196018718679546","host":"s3://npm-registry-packages"}},"6.6.1":{"name":"elliptic","version":"6.6.1","description":"EC cryptography","main":"lib/elliptic.js","scripts":{"lint":"eslint lib test","lint:fix":"npm run lint -- --fix","unit":"istanbul test _mocha --reporter=spec test/index.js","test":"npm run lint && npm run unit","version":"grunt dist && git add dist/"},"repository":{"type":"git","url":"git+ssh://git@github.com/indutny/elliptic.git"},"keywords":["EC","Elliptic","curve","Cryptography"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","bugs":{"url":"https://github.com/indutny/elliptic/issues"},"homepage":"https://github.com/indutny/elliptic","devDependencies":{"brfs":"^2.0.2","coveralls":"^3.1.0","eslint":"^7.6.0","grunt":"^1.2.1","grunt-browserify":"^5.3.0","grunt-cli":"^1.3.2","grunt-contrib-connect":"^3.0.0","grunt-contrib-copy":"^1.0.0","grunt-contrib-uglify":"^5.0.0","grunt-mocha-istanbul":"^5.0.2","grunt-saucelabs":"^9.0.1","istanbul":"^0.4.5","mocha":"^8.0.1"},"dependencies":{"bn.js":"^4.11.9","brorand":"^1.1.0","hash.js":"^1.0.0","hmac-drbg":"^1.0.1","inherits":"^2.0.4","minimalistic-assert":"^1.0.1","minimalistic-crypto-utils":"^1.0.1"},"_id":"elliptic@6.6.1","gitHead":"9b77436a59cc35eccf4ffb848259c8762a492ee7","_nodeVersion":"22.5.1","_npmVersion":"10.8.2","dist":{"integrity":"sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==","shasum":"3b8ffb02670bf69e382c7f65bf524c97c5405c06","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/elliptic/-/elliptic-6.6.1.tgz","fileCount":17,"unpackedSize":120131,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCy8V1DoM/9G53EBvmVntfvaC5nZqaUVQ0g7icurBu5gwIgcTXj5tM0ZPej8zbHzZA/fqR8fqKU2IkNSVw0p+nV6vU="}]},"_npmUser":{"name":"anonymous","email":"blackhole@livebox.sh"},"directories":{},"maintainers":[{"name":"anonymous","email":"blackhole@livebox.sh"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/elliptic_6.6.1_1731469190770_0.11110374868770889"},"_hasShrinkwrap":false}},"name":"elliptic","time":{"created":"2014-04-23T16:15:41.559Z","modified":"2024-11-13T03:39:51.144Z","0.1.0":"2014-04-23T16:15:41.559Z","0.2.0":"2014-04-25T12:25:26.289Z","0.3.0":"2014-04-25T20:23:37.794Z","0.4.0":"2014-04-25T21:15:57.382Z","0.5.0":"2014-04-26T12:05:35.447Z","0.6.0":"2014-04-26T22:58:26.494Z","0.6.1":"2014-04-27T22:34:24.959Z","0.7.0":"2014-04-29T09:37:30.033Z","0.8.0":"2014-05-04T23:11:07.401Z","0.9.0":"2014-05-05T09:45:52.523Z","0.9.1":"2014-05-05T13:12:19.629Z","0.9.2":"2014-05-05T13:17:17.892Z","0.10.0":"2014-05-08T23:45:13.793Z","0.10.1":"2014-05-09T07:32:15.877Z","0.10.2":"2014-05-10T18:19:58.531Z","0.11.0":"2014-05-16T16:55:23.828Z","0.11.1":"2014-05-17T08:37:20.198Z","0.12.0":"2014-05-17T16:19:36.145Z","0.13.1":"2014-05-18T12:28:24.053Z","0.13.2":"2014-05-21T19:21:51.812Z","0.14.0":"2014-05-23T16:11:19.979Z","0.14.1":"2014-05-23T19:36:00.017Z","0.14.2":"2014-05-24T17:17:21.564Z","0.15.0":"2014-05-25T17:45:58.005Z","0.15.1":"2014-05-25T18:03:03.107Z","0.15.2":"2014-05-27T08:43:10.478Z","0.15.3":"2014-05-27T18:54:53.615Z","0.15.4":"2014-05-31T22:57:16.563Z","0.15.5":"2014-05-31T22:58:14.487Z","0.15.6":"2014-06-06T04:59:56.367Z","0.15.7":"2014-06-18T04:45:06.606Z","0.15.8":"2014-08-27T14:06:50.499Z","0.15.9":"2014-09-07T20:52:30.353Z","0.15.10":"2014-09-09T15:21:32.246Z","0.15.11":"2014-09-25T10:25:31.472Z","0.15.12":"2014-11-02T19:42:24.649Z","0.15.13":"2014-11-04T15:53:18.171Z","0.15.14":"2014-11-05T17:05:41.069Z","0.15.15":"2014-11-27T16:03:15.490Z","0.15.16":"2015-01-02T11:42:48.481Z","0.15.17":"2015-01-02T11:45:01.604Z","0.16.0":"2015-01-02T18:03:38.604Z","1.0.0":"2015-01-05T21:00:09.264Z","1.0.1":"2015-01-12T15:02:29.678Z","2.0.0":"2015-01-18T19:42:47.681Z","2.0.1":"2015-01-21T16:04:05.829Z","2.0.2":"2015-02-07T02:07:47.680Z","3.0.0":"2015-02-09T20:44:23.489Z","3.0.1":"2015-02-09T20:44:38.016Z","3.0.2":"2015-02-14T11:41:23.366Z","3.0.3":"2015-02-27T19:06:37.668Z","3.0.4":"2015-06-03T12:03:38.374Z","3.1.0":"2015-06-11T00:06:57.056Z","4.0.0":"2015-06-25T02:58:57.140Z","4.1.0":"2015-07-04T03:25:38.671Z","5.0.0":"2015-07-07T22:56:31.891Z","5.1.0":"2015-07-20T03:04:23.753Z","5.2.0":"2015-10-23T15:49:50.687Z","5.2.1":"2015-10-28T22:12:41.172Z","6.0.0":"2015-10-28T22:14:32.118Z","6.0.1":"2015-11-02T21:06:29.601Z","6.0.2":"2015-11-07T20:24:29.820Z","6.1.0":"2016-01-17T05:57:54.838Z","6.2.0":"2016-01-22T18:31:04.707Z","6.2.1":"2016-01-24T22:26:48.751Z","6.2.2":"2016-01-25T20:16:53.622Z","6.2.3":"2016-01-29T08:00:44.416Z","6.2.4":"2016-05-20T21:48:54.607Z","6.2.5":"2016-05-20T21:52:21.803Z","6.2.6":"2016-05-25T18:41:19.032Z","6.2.7":"2016-05-25T18:43:15.918Z","6.2.8":"2016-06-01T01:53:27.222Z","6.3.0":"2016-06-14T04:17:16.632Z","6.3.1":"2016-06-14T16:23:36.965Z","6.3.2":"2016-09-15T11:27:18.557Z","6.3.3":"2017-02-06T23:13:58.436Z","6.4.0":"2017-02-22T21:27:47.116Z","6.4.1":"2018-08-09T03:58:11.648Z","6.5.0":"2019-06-26T04:03:46.523Z","6.5.1":"2019-09-04T02:34:30.284Z","6.5.2":"2019-11-22T19:07:12.647Z","6.5.3":"2020-06-18T15:32:46.559Z","6.5.4":"2021-02-02T18:22:21.969Z","6.5.5":"2024-03-05T07:22:00.515Z","6.5.6":"2024-07-17T02:40:25.631Z","6.5.7":"2024-08-14T02:24:17.469Z","6.6.0":"2024-10-26T03:14:04.014Z","6.6.1":"2024-11-13T03:39:50.967Z"},"readmeFilename":"README.md","homepage":"https://github.com/indutny/elliptic"}