作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试使用此 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 的形式获得它。 .
您可以使用 crypt
或 hash
反而。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 thatCRYPT_BLOWFISH
is better suited for password storage and should be used instead viacrypt()
.
关于PHP-hash_pbkdf2 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11965708/
我是一名优秀的程序员,十分优秀!