CodeIgniter 中的 sha1?
CodeIgniter sha1 和普通 PHP sha1 有什么区别? 例如:
$codeigniter_hashed = $this -> encrypt -> sha1( "test" );
两者
$normal_hashed = sha1("test");
都会返回相同的值。 CodeIgniter 在哪里使用 encryption_key
?
What is difference in CodeIgniter sha1 and normal PHP sha1?
For example:
$codeigniter_hashed = $this -> encrypt -> sha1( "test" );
And
$normal_hashed = sha1("test");
Both will return same values.
Where does CodeIgniter uses encryption_key
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的 PHP 安装没有安装 sha1,您可以使用 CI 版本。如果您的 PHP 安装已经有它,则无需使用 CI 功能。
来自用户指南:
更多信息:http://codeigniter.com/user_guide/libraries/encryption.html
If your PHP installation doesn't have sha1 installed, you can use the CI version. If your PHP installation already has it, you don't need to use the CI function.
From the user guide:
More info: http://codeigniter.com/user_guide/libraries/encryption.html
很确定您显示的函数是纯 SHA 加密 - 如果您想对数据进行密钥/编码,则仅使用特定的 crypto_key,因此只有您(加密密钥的持有者)才能解密它。
Pretty sure the function you show is a pure SHA encrypt - you only use a specific encryption_key if you want to key/encode the data so only you (the holder of the encryption key), will be able to decrypt it.
加密密钥保存在 config/config.php
作为
the encryption key is saved at config/config.php
as