我想问你使用这个类将用户的密码存储在数据库中是否安全。
https://www.codeigniter.com/user_guide/libraries/encryption.html
我生成了一些随机字符串(32 个字符)作为加密密钥。
对于加密,我会使用$this->encrypt->encode($pwd)
The only thing I would like to know if it is safe or I should use md5 or sha1 or something different.
谢谢