markhofstetter/pbkdf2hasher

enable pbkdf2 hashing of laravel password to be compatible with pythons werkzeug

dev-master 2020-01-02 10:23 UTC

This package is not auto-updated.

Last update: 2024-05-17 07:43:35 UTC


README

install package

in laravels "config/hashing.php"

set driver to

'driver' => 'pbkdf2',

in app/config.php add

'providers' => [ ... MarkHofstetter\Pbkdf2Hasher\Pbkdf2HasherServiceProvider::class,

];