PHP PBKDF2密码哈希码

时间:2012-07-16 13:55:06

标签: php passwords

我刚刚开始使用pbkdf2。

我在这里找到了这段代码:http://crackstation.net/hashing-security.htm#phpsourcecode这是免费的,但我的问题是:

在db?

中存储pbkdf2密码的语法是什么?

我的意思是对于md5你只需输入md5($ _ POST [' Pass'])就完成了。

用这种方法怎么做?我是否在我的页面中包含代码并以某种方式调用它?

谢谢

1 个答案:

答案 0 :(得分:-1)

pbkdf2基本上和md5一样,所以要哈希密码:

$encoded_password=create_hash($_POST['Pass']);