我对散列密码有一个奇怪的问题。我在这个网站(运行 php 的 Windows)上的另一个服务器(运行 php 的 Linux)上使用了来自另一个网站的相同脚本。登录不起作用,存储的散列密码与输入的密码不匹配,我已经回复检查但他们没有。据我所知,代码(两者都相同)适用于 Linux 但不适用于 Windows,这可能吗?
这是代码(在两个网站上都是相同的,所以应该不是问题)
<?PHP
// get user data
$strUsername = isset($_POST['email']) ? trim(strip_tags($_POST['email'])) : null;
$strPassword = isset($_POST['password']) ? trim(strip_tags($_POST['password'])) : null;
$DBH = new PDO('database details...');
$SQL = "SELECT inj_user_email,inj_user_password,inj_user_password_salt,inj_user_id FROM inj_user WHERE inj_user_email = :username;";
if ( $strUsername == '' || $strPassword = '' )
{
$missing = 'Please enter an email address and password';
}
else
{
$STH = $DBH->prepare($SQL);
$STH->bindParam(':username', $strUsername);
$STH->execute();
$row = $STH->fetch();
if ($STH->rowCount() > 0) {
$verify_password = hash('sha512' , $strPassword.$row['inj_user_password_salt']);
echo $verify_password.'<br>'.$row['inj_user_password'];
if (strcmp($verify_password , $row['inj_user_password']) == 0)
{
session_start();
session_regenerate_id(true);
$_SESSION['user1'] = $row['inj_user_id'];
header('Location: ../screen/');
}
else
{
$missing='Incorrect password';
echo $missing;
exit;
}
}
else
{
$missing ='Email address not found';
}
}
header('Location: ../?missing='.$missing);
?>
谢谢你。