Converting plain password to Laravel encrypted password

心不动则不痛 提交于 2019-12-12 03:44:15

问题


I have a table called "users" where I have username and password from my users.

The passwords are in plain text. Now I've created a new site with Laravel 5.4 and Auth.

So if a user wants to loggin into my site I need to convert my password plain text to the new password encrypted.

How can I get the "salt" from my Auth and also a tools to get the encrypted password from my plain password and "salt". The reason is because I created a new column in my users table so I want to put there the password encrypted using a query.

Thanks for helping!


回答1:


Laravel uses bcrypt() to hash passwords. Assuming you have the plain text passwords stored in users.password, you just need to loop through and bcrpyt() them.

\App\User::get()->each(function ($user) {
    $user->password = bcrypt($user->password);
    $user->save();
});

The above code will overwrite the plain text value stored in users.password with the hashed value. After you do this, user's should be able to log in with Laravel's auth. Additionally, you will not be able to retrieve the user's plain text password. This is good, and is the whole point of hashing passwords.



来源:https://stackoverflow.com/questions/42598578/converting-plain-password-to-laravel-encrypted-password

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!