最近我尝试在CodeIgniter中插入密码,如下所示,
$this->load->library('PasswordHash',array(8, FALSE));
$psw = '1234';
$hash = $this->PasswordHash->HashPassword($psw);
但是我遇到了一个错误说"无法加载请求的类:passwordhash"。请帮助我,或者最好的方法是什么。
答案 0 :(得分:0)
使用此
$this->load->library('phpass');
更多参考:https://github.com/jenssegers/CodeIgniter-Phpass-Library
OR
使用MD5()
或sha1()
php函数获取哈希值。