{"versions":{"1.0.0":{"name":"bcryptjs-cli","version":"1.0.0","description":"Command line interface for bcryptjs","author":{"name":"Ilkka Myller","email":"ilkka.myller@nodefield.com"},"license":"MIT","homepage":"https://github.com/imyller/node-bcryptjs-cli","repository":{"type":"git","url":"git+https://github.com/imyller/node-bcryptjs-cli.git"},"bugs":{"url":"https://github.com/imyller/node-bcryptjs-cli/issues"},"keywords":["bcrypt","cli","hash","password","crypt","crypto","authentication","auth"],"main":"./index.js","dependencies":{"bcryptjs":"latest"},"devDependencies":{"mocha":"~2.5.3","chai":"~3.5.0","string.prototype.startswith":"~0.2.0"},"scripts":{"test":"./node_modules/mocha/bin/mocha test"},"bin":{"bcrypt":"./index.js"},"gitHead":"b07388ebbd493c17f01d528b7cdcc387fa28e014","_id":"bcryptjs-cli@1.0.0","_shasum":"8fbbeb274f504068ce8873a7c6365e0c927d9d98","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"ilkka.myller@nodefield.com"},"dist":{"shasum":"8fbbeb274f504068ce8873a7c6365e0c927d9d98","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/bcryptjs-cli/-/bcryptjs-cli-1.0.0.tgz","size":2564,"integrity":"sha512-Nkxdm2TmxHcy/4IvQ3He34Jws/ezGBIsIhLdAMgy9gHpfDB3/ea6SeDpP/eBPJslm5kUB1euhsjfD/GM7v5xJg=="},"maintainers":[{"name":"anonymous","email":"ilkka.myller@nodefield.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/bcryptjs-cli-1.0.0.tgz_1466674526168_0.7823434700258076"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T07:19:44.337Z","contributors":[]},"1.0.1":{"name":"bcryptjs-cli","version":"1.0.1","description":"Command line interface for bcryptjs","author":{"name":"Ilkka Myller","email":"ilkka.myller@nodefield.com"},"license":"MIT","homepage":"https://github.com/imyller/node-bcryptjs-cli","repository":{"type":"git","url":"git+https://github.com/imyller/node-bcryptjs-cli.git"},"bugs":{"url":"https://github.com/imyller/node-bcryptjs-cli/issues"},"keywords":["bcrypt","cli","hash","password","crypt","crypto","authentication","auth"],"main":"./index.js","dependencies":{"bcryptjs":"latest"},"devDependencies":{"mocha":"~2.5.3","chai":"~3.5.0","string.prototype.startswith":"~0.2.0"},"scripts":{"test":"./node_modules/mocha/bin/mocha test"},"bin":{"bcryptjs":"./index.js"},"gitHead":"07a3d3ba7b0d158c5a687acccfd86a48f4c2feaf","_id":"bcryptjs-cli@1.0.1","_shasum":"cd26fbb69b3819994103b3f38fcdcea3ca462acb","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"anonymous","email":"ilkka.myller@nodefield.com"},"dist":{"shasum":"cd26fbb69b3819994103b3f38fcdcea3ca462acb","tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/bcryptjs-cli/-/bcryptjs-cli-1.0.1.tgz","size":1703,"integrity":"sha512-qaM2O5P204v3N3pL1vOIq0xjJqc+UDf8UjJ4hL14tkxkfeVSwKV01xBUF+uzP646L6+82h48x8N8rzZD0INc0A=="},"maintainers":[{"name":"anonymous","email":"ilkka.myller@nodefield.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/bcryptjs-cli-1.0.1.tgz_1466704645949_0.43133611464872956"},"directories":{},"_cnpmcore_publish_time":"2021-12-23T07:19:45.202Z","contributors":[]}},"dist-tags":{"latest":"1.0.1"},"name":"bcryptjs-cli","time":{"created":"2022-01-27T00:42:28.987Z","modified":"2022-01-27T00:42:28.987Z","1.0.0":"2016-06-23T09:35:28.536Z","1.0.1":"2016-06-23T17:57:28.142Z"},"readme":"node-bcryptjs-cli\n=================\n[![Build Status](https://travis-ci.org/imyller/node-bcryptjs-cli.svg)](https://travis-ci.org/imyller/node-bcryptjs-cli)\n[![npm version](https://badge.fury.io/js/bcryptjs-cli.svg)](http://badge.fury.io/js/bcryptjs-cli)\n\n[![NPM](https://nodei.co/npm/bcryptjs-cli.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/bcryptjs-cli/)\n[![NPM](https://nodei.co/npm-dl/bcryptjs-cli.png?months=6&height=3)](https://nodei.co/npm-dl/bcryptjs-cli/)\n\n> The [`bcryptjs`](https://github.com/dcodeIO/bcrypt.js) command line interface.\n\nInstall this globally and you'll have access to the `bcryptjs` command anywhere on your system.\n\n```\nnpm install -g bcryptjs-cli\n```\n\n## Usage\n\n```\n$ bcryptjs\nusage: bcryptjs <string> [salt rounds]\n```\n\n```\n$ bcryptjs mypassword\n$2a$10$ckDge4zC6brAIMtM9x47zeG56MxG7UuaVzboIP0jkHuJP7d6jIEti\n```\n\n```\n$ bcryptjs mypassword 12\n$2a$12$1L/qFa8UKvJ9uNFoELuiDOh0rDc5ren1QnymTtD7QYpVfp4TVzFum\n```\n\n## Security considerations\n\nBesides incorporating a salt to protect against rainbow table attacks, bcrypt is an adaptive function: over time, the\niteration count can be increased to make it slower, so it remains resistant to brute-force search attacks even with\nincreasing computation power. ([see](http://en.wikipedia.org/wiki/Bcrypt))\n\nThe maximum input length is 72 bytes (note that UTF8 encoded characters use up to 4 bytes) and the length of generated\nhashes is 60 characters.\n\n## Testing\n\n```sh\n$ npm test\n```\n\n## Contributing\n\nYou can find the repository at:\nhttps://github.com/imyller/node-bcryptjs-cli\n\nIssues/Feature Requests can be submitted at:\nhttps://github.com/imyller/node-bcryptjs-cli/issues\n\nI'd really like to hear your feedback, and I'd love to receive your pull-requests!\n\n## Copyright\n\nCopyright 2016 Ilkka Myller. This software is licensed under the MIT License, see `LICENSE` for details.","users":{}}