如何直接在 table 列中像 Laravel 哈希那样加密密码
how to encrypt password like Laravel Hashing directly in table column
我是 Laravel 的新手。如何直接在table列中进行密码加密,如Laravel散列,如md5(不使用代码,我想直接编辑列值)
enter image description here
enter image description here
您可以创建一个简单的 php 代码并使用 password_hash function, or just use online password_hash
tool like this. The value will be valid hashed password that can be used, since Hash::make
in Laravel uses password_hash
too (Laravel Framework Source)。
因此,正如上一个答案中所建议的那样,您可以使用在线工具对列进行哈希处理然后进行编辑(如果我理解正确的话),否则,您可以使用 php artisan tinker
来执行 Hash::make(something)
并获得预期的哈希值
我是 Laravel 的新手。如何直接在table列中进行密码加密,如Laravel散列,如md5(不使用代码,我想直接编辑列值)
enter image description here
enter image description here
您可以创建一个简单的 php 代码并使用 password_hash function, or just use online password_hash
tool like this. The value will be valid hashed password that can be used, since Hash::make
in Laravel uses password_hash
too (Laravel Framework Source)。
因此,正如上一个答案中所建议的那样,您可以使用在线工具对列进行哈希处理然后进行编辑(如果我理解正确的话),否则,您可以使用 php artisan tinker
来执行 Hash::make(something)
并获得预期的哈希值