使用 SHA-256 进行 CodeIgniter 哈希
CodeIgniter 使用 MD5 或 SHA1 进行哈希处理:
$str = do_hash($str); // SHA1
$str = do_hash($str, 'md5'); // MD5
但是,我的项目需要 SHA-256。我该如何解决这个问题?
CodeIgniter uses MD5 or SHA1 for its hashing:
$str = do_hash($str); // SHA1
$str = do_hash($str, 'md5'); // MD5
But, my project requires SHA-256. How would I resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不能直接调用php自己的hash()吗?
Can you not just call php's own hash()?