gpt4 book ai didi

php - CodeIgniter 中的 sha1?

转载 作者:可可西里 更新时间:2023-11-01 00:36:29 27 4
gpt4 key购买 nike

CodeIgniter sha1 和普通 PHP sha1 有什么区别?例如:

$codeigniter_hashed = $this -> encrypt -> sha1( "test" );

$normal_hashed = sha1("test");

两者都将返回相同的值。CodeIgniter 在哪里使用 encryption_key

最佳答案

如果您的 PHP 安装没有安装 sha1,您可以使用 CI 版本。如果您的 PHP 安装已经有它,则不需要使用 CI 功能。

来自用户指南:

$this->encrypt->sha1();

SHA1 encoding function. Provide a string and it will return a 160 bit one way hash. Note: SHA1, just like MD5 is non-decodable. Example: $hash =
$this->encrypt->sha1('Some string');

Many PHP installations have SHA1 support by default so if all you need is to encode a hash it's simpler to use the native function: $hash =
sha1('Some string');

If your server does not support SHA1 you can use the provided function.

更多信息:http://codeigniter.com/user_guide/libraries/encryption.html

关于php - CodeIgniter 中的 sha1?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6356912/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com