simonhamp / laravel-nova-csv-import

The best CSV import component for Laravel Nova
https://novapackages.com/packages/simonhamp/laravel-nova-csv-import
MIT License
166 stars 76 forks source link

Hash bcrypt #66

Closed kerbs-ns closed 1 year ago

kerbs-ns commented 1 year ago

Laravel as default uses bcrypt. it seems it is missing from modifiers hash_algos() is not present

simonhamp commented 1 year ago

bcrypt and other 'slow' hashing algorithms (e.g. argon2) aren't part of the hash_algos() function output because they're part of the distinct Password Hashing extension

See instead password_algos()

bcrypt is represented in the array from this function as 2y: Screenshot 2023-06-14 at 12 47 38