Command line bcrypt hash generator. Useful for computing bcrypt hashes while developing.
- Add this package to your
composer.jsonfile, in therequire-devsection
{
"require-dev": {
"robertmarsal/bcrypt-generator": "dev-master"
}
}- Run
composer update
This will install the script into vendor/bin/bcrypt_generator.php
Execute the CLI script providing some/all of the following options :
--help | -h Get usage information.
--text | -t Text to get hashed.
For example calling the script using the -t option:
php vendor/bin/bcrypt_generator.php -t adminWill output something like:
$2y$14$foQAf3JxtdeRCwYVXiH6DOJqPb1fnqD79NZOsj.2q3lIxMNYCVgXKIf you use this with a real password add a space before the php call to avoid
the command showing in your shell's history.