0
我正在寫一段php代碼,但是並沒有給出我想要的輸出;hash_pbkdf2不給出輸出
function passhash($unhashPass){
if(CRYPT_BLOWFISH != 1) {
throw new Exception("bcrypt not supported in this installation.);
}
$salt = "test123";
$password = hash_pbkdf2 ("sha256", $unhashPass, $salt, 1, 20);
echo $password;
return $password;
}
當我把回聲語句unhashpass或鹽它的工作原理哈希之前,但它確實沒有什麼之後,整個PHP腳本只是給了我一個白色的屏幕。 有人可以幫助我:)?
乾杯
是的,但網站運行在服務器上,所以我不能改變任何東西到PHP版本,但我會嘗試使用外部文件。謝謝 ! – tortilla 2013-03-20 12:22:35
@ user2156757 - 兼容包可能是早期PHP版本的最佳解決方案。 – martinstoeckli 2013-03-20 12:34:19
這些只是外部庫我可以放在htmldocs中嗎?我可能會尋找其中一個:) – tortilla 2013-03-21 10:47:59