matriphe / laravel-md5-hash
Laravel package to use unsecured MD5 for password hash
Installs: 3 475
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 4
Open Issues: 2
Requires
- laravel/framework: 6.*|7.*|8.*|9.*
Requires (Dev)
- orchestra/testbench: 4.*|5.*|6.*|7.*
README
This package is used to replace Laravel default hash to support the old system that used MD5 for password hash.
Warning Please use it at your own risk, since MD5 is not recommended to be used as a password hash.
Installation
Using Composer, just run this command below.
composer require matriphe/laravel-md5-hash
For Laravel < 6, please use version 1.1.1 and follow the configuration instruction.
composer require matriphe/laravel-md5-hash:1.1.1
Configuration
This package uses auto-discovery. Once it got installed, it will automatically replace the hash function to use MD5.
Usage
Now you can use the built-in hash function using this command.
Hash::make('password'); // return 5f4dcc3b5aa765d61d8327deb882cf99 bcrypt('password'); // return 5f4dcc3b5aa765d61d8327deb882cf99
Contribution
All contributions are welcomed. Please create a pull request or merge request, and make sure all checks are passed ✅ before merging.
If the check failed on checking PHP style, please
run php-cs-fixer
to fix it.
Using Docker
docker run -it --rm -v $(pwd):/app -w /app oskarstark/php-cs-fixer-ga fix
Local Dev
vendor/bin/php-cs-fixer fix
License
The MIT License (MIT). Please see License File for more information.