标签:小结 xxxx class 使用 html 字符 com pass target
laravel5文档介绍
//对 A 密码使用Bcrypt 加密 $password = Hash::make(‘mima‘); //你也可直接使用 bcrypt 的 function $password = bcrypt(‘mima‘); //对加密的 A 密码进行验证 if (Hash::check(‘mima‘, $hashedPassword)) { // The passwords match... } //检查 A 密码是否需要重新加密 if (Hash::needsRehash($hashed)) { $hashed = Hash::make(‘secret‘); }
目前常用的不可逆加密算法有以下几种:
通常推荐使用 bcrypt 或 PBKDF2 这两种算法来对密码进行加密
无论是bcrypt还是PBKDF2都有各自的忠实拥护者。另外bcrypt不支持超过55个字符的密码短语。
技术还是需要不断地积累,不然只会用前三种。T.T,之后有空继续增加详细解说。
http://www.cnblogs.com/xxxxxxx/p/5381673.html
标签:小结 xxxx class 使用 html 字符 com pass target
原文地址:http://www.cnblogs.com/fps2tao/p/7787773.html