marcus-campos/laravel-md5-hash

Laravel 5 package to use unsecured MD5 for password hash. For use in legacy systems.

v1.0.0 2018-07-26 11:57 UTC

This package is auto-updated.

Last update: 2024-04-11 13:40:42 UTC


README

This package is used to replace Laravel's default hash to support legacy systems that used MD5 for password hash.

Please use it with your own risk, since MD5 is not recommended to be used as password hash.

Installation

Using Composer, just run this command below.

composer require marcus-campos/laravel-md5-hash

Configuration

After installed, open config/app.php and find this line.

Illuminate\Hashing\HashServiceProvider::class

Comment or remove that line and add this line to override Laravel's hash handling.

L5MD5Hash\Md5Hash\HashServiceProvider::class

Usage

Now you can use built in hash function using this command.

Hash::make('password'); // return 5f4dcc3b5aa765d61d8327deb882cf99
bcrypt('password'); // return 5f4dcc3b5aa765d61d8327deb882cf99

Tanks

Matriphe

Contact

Marcus Campos - campos.v.marcus@gmail.com

License

The MIT License (MIT). Please see License File for more information.