gpt4 book ai didi

PHP-hash_pbkdf2 函数

转载 作者:可可西里 更新时间:2023-11-01 13:11:23 26 4
gpt4 key购买 nike

我正在尝试使用此 php 函数执行一个散列密码的函数:http://be.php.net/manual/en/function.hash-pbkdf2.php .

代码如下:

$hash_algo = "sha256";
$password = "password";
$salt = "salt";
$iterations = 1;
$length = 1;
$raw_output = false;

$hash = hash_pbkdf2($hash_algo, $password, $salt, $iterations ,$length ,$raw_output);

echo $hash;

我收到此错误: fatal error :调用未定义的函数 hash_pbkdf2()。

函数怎么可以未定义???

PS:我的变量的所有值都是为了测试功能而设置的。显然盐不会是“盐”等

最佳答案

编辑:从 PHP 5.5.0 开始,此函数现已捆绑到核心库中。


此函数在核心 PHP 中不可用(无论如何)。它是不久前提出的,到目前为止你只能以 patch 的形式获得它。 .

您可以使用 crypthash反而。crypt 实际上是在 hash_pbkdf2 documentation 中建议的:

Caution
The PBKDF2 method can be used for hashing passwords for storage (it is NIST approved for that use). However, it should be noted that CRYPT_BLOWFISH is better suited for password storage and should be used instead via crypt().

关于PHP-hash_pbkdf2 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11965708/

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