Bcrypt 无法工作,Bcrypt.compareSync 总是 return false
Bcrypt unable to work, Bcrypt.compareSync always return false
我面临的问题是,当代码在其他计算机上使用时,bcrypt.comparesync 可以 return 为真。但是,无论所比较的文本相同还是不同,它在我的计算机上总是 returns false。这是我面临的某种错误吗,因为我的代码过去曾经工作但突然停止工作。为什么会这样?
我的代码:
const bCrypt = require('bcrypt');
var WebToken = require('jsonwebtoken');
var SecretKey = "Somesecretkey";
class ProfilesDB
{
getLoginCredentials(request, respond){
var username = request.body.username;
var password = request.body.password;
var sql = "SELECT password FROM restaurant_review.profile WHERE username = ?";
var profileValues = [username,password];
db.query(sql, profileValues, function(error, result)
{
if(error)
{
throw error;
}
else
{
//console.log(result[0].password);
const hash = result[0].password;
var flag = bCrypt.compareSync(profileValues[1],hash);
if (flag)
{
var token = WebToken.sign(username,SecretKey);
respond.json({result:token});
}
else
{
respond.json({result:"Invaild"});
}
}
});
}
getAllProfiles(request, respond)
{
var sql = "SELECT * FROM restaurant_review.profile";
db.query(sql, function(error, results){
if(error)
{
throw error;
}
else
{
respond.json(results);
}
});
}
addProfile(request, respond)
{
//Creating a new profile class, calls for a new profile, to create a new "profile"
var profileObject = new Profile(null, request.body.firstName,
request.body.lastName, request.body.username, request.body.password,
request.body.email);
//To encrypt the password
profileObject.password = bCrypt.hashSync(profileObject.password,10);
//Question mark is used as a place holder.
var sql = "INSERT INTO restaurant_review.profile (firstName, lastName, username, password, email) Values(?,?,?,?,?)";
var profileValues = [profileObject.getFirstName(),
profileObject.getLastName(), profileObject.getUsername(),
profileObject.getPassword(), profileObject.getEmail()];
db.query(sql, profileValues, function(error, result){
if(error)
{
throw error;
}
else
{
respond.json(result);
}
});
}
enter image description here
如果它在其他计算机上有效但在您的计算机上无效,那么它可能来自 bcrypt 包之外的其他东西,例如,数据库未配置 属性,等等。可能是您数据库中的密码字段 table 对字符数有限制,哈希密码超过这个数字?检查 table 中的密码字段类型,并确保它不是类似 varchar(x) 的 x 值较小的类型。
我面临的问题是,当代码在其他计算机上使用时,bcrypt.comparesync 可以 return 为真。但是,无论所比较的文本相同还是不同,它在我的计算机上总是 returns false。这是我面临的某种错误吗,因为我的代码过去曾经工作但突然停止工作。为什么会这样?
我的代码:
const bCrypt = require('bcrypt');
var WebToken = require('jsonwebtoken');
var SecretKey = "Somesecretkey";
class ProfilesDB
{
getLoginCredentials(request, respond){
var username = request.body.username;
var password = request.body.password;
var sql = "SELECT password FROM restaurant_review.profile WHERE username = ?";
var profileValues = [username,password];
db.query(sql, profileValues, function(error, result)
{
if(error)
{
throw error;
}
else
{
//console.log(result[0].password);
const hash = result[0].password;
var flag = bCrypt.compareSync(profileValues[1],hash);
if (flag)
{
var token = WebToken.sign(username,SecretKey);
respond.json({result:token});
}
else
{
respond.json({result:"Invaild"});
}
}
});
}
getAllProfiles(request, respond)
{
var sql = "SELECT * FROM restaurant_review.profile";
db.query(sql, function(error, results){
if(error)
{
throw error;
}
else
{
respond.json(results);
}
});
}
addProfile(request, respond)
{
//Creating a new profile class, calls for a new profile, to create a new "profile"
var profileObject = new Profile(null, request.body.firstName,
request.body.lastName, request.body.username, request.body.password,
request.body.email);
//To encrypt the password
profileObject.password = bCrypt.hashSync(profileObject.password,10);
//Question mark is used as a place holder.
var sql = "INSERT INTO restaurant_review.profile (firstName, lastName, username, password, email) Values(?,?,?,?,?)";
var profileValues = [profileObject.getFirstName(),
profileObject.getLastName(), profileObject.getUsername(),
profileObject.getPassword(), profileObject.getEmail()];
db.query(sql, profileValues, function(error, result){
if(error)
{
throw error;
}
else
{
respond.json(result);
}
});
}
enter image description here
如果它在其他计算机上有效但在您的计算机上无效,那么它可能来自 bcrypt 包之外的其他东西,例如,数据库未配置 属性,等等。可能是您数据库中的密码字段 table 对字符数有限制,哈希密码超过这个数字?检查 table 中的密码字段类型,并确保它不是类似 varchar(x) 的 x 值较小的类型。