使用哈希 SHA-512 在数据库中使用加密密码验证表单中的密码我正在尝试做的是专门用于更改密码表单。
我可以验证表单和数据库中的密码是否未加密...但是我无法验证输入的密码是否等于数据库密码,因为输入的密码仍然是正常形式,并且数据库中的密码是加密的密码。
我想使用jQuery验证功能......但坚持如何通过在提交前用数据库加密输入的密码来解决。
使用哈希 SHA-512 在数据库中使用加密密码验证表单中的密码我正在尝试做的是专门用于更改密码表单。
我可以验证表单和数据库中的密码是否未加密...但是我无法验证输入的密码是否等于数据库密码,因为输入的密码仍然是正常形式,并且数据库中的密码是加密的密码。
我想使用jQuery验证功能......但坚持如何通过在提交前用数据库加密输入的密码来解决。
function Validate(data)
{
if(data==true)
{
//submit the form
}
else
{
//dont submit the form. Throw an error/alert
return false;
}
}
//when the form is submitted
$("#yourForm").submit(function()
{
var p=$("#oldPassword").val();
$.post("validate.php",{oldpass:p},Validate);
});
PHP 部分 (validate.php)
<?php
$oldpassword=$_POST['oldpass'];
//encrypt $oldpassword to md5 or anything as per your requirement
//and compare it with the encrypted password available in the database
if($oldpassword==$dbpass)
{
$status=true;
}
else
{
$status=false;
}
echo $status;
?>
function Validate(data)
that is absolutely not what he was asking for ... have you even read his question? Most likely not.