Bcrypt.compareSync 总是返回 false
Bcrypt.compareSync always returning false
你好,我正在尝试使用 sequelize 创建我的第一个登录,我正在努力处理散列和比较散列,但它总是 returns 错误。
自从我学习以来,我认为我在哈希或比较上做错了什么。我正在使用 SQL 数据库
这是我的登录代码,我正在使用快速会话和续集:
'processLogin': (req, res) => {
db.User.findOne({
where: {
email: req.body.email
}
})
.then(async user => {
var eSession = req.session.userLogin
let checkPass = await bcrypt.compare(req.body.password, user.password)
console.log(checkPass);
if(checkPass){
eSession = user;
res.send("Success");
}else{
res.render('login', {errors: [{
msg: "Incorrect password"
}]});
}
if(user == undefined){
res.render('login', {errors: [{
msg: "User not found, please Register"
}]});}
})
}
这里是我对寄存器中的密码进行哈希处理的地方:
'save': async (req, res) => {
var a = [req.body.fullname, req.body.email, req.body.number, bcrypt.hashSync(req.body.password, 10), bcrypt.hashSync(req.body.repassword, 10)];
let errors = validationResult(req);
if(errors.isEmpty()){
db.User.create({
full_name: a[0],
email: a[1],
phone_number: a[2],
password: await bcrypt.hash(a[3], 10),
confirm_password: await bcrypt.hash(a[4], 10)
})
.then(users => {
res.send("succes!!");
})
}else{
res.render('register', { errors: errors.errors })
}
}
}
安装同步为什么不尝试异步并等待它被散列或解密。
在异步函数中散列密码。
let hashedPassword = await hash(password, 10);
以及用于比较密码的内部异步函数
let checkPass = await compare(password, foundUser.password);
你好,我正在尝试使用 sequelize 创建我的第一个登录,我正在努力处理散列和比较散列,但它总是 returns 错误。 自从我学习以来,我认为我在哈希或比较上做错了什么。我正在使用 SQL 数据库
这是我的登录代码,我正在使用快速会话和续集:
'processLogin': (req, res) => {
db.User.findOne({
where: {
email: req.body.email
}
})
.then(async user => {
var eSession = req.session.userLogin
let checkPass = await bcrypt.compare(req.body.password, user.password)
console.log(checkPass);
if(checkPass){
eSession = user;
res.send("Success");
}else{
res.render('login', {errors: [{
msg: "Incorrect password"
}]});
}
if(user == undefined){
res.render('login', {errors: [{
msg: "User not found, please Register"
}]});}
})
}
这里是我对寄存器中的密码进行哈希处理的地方:
'save': async (req, res) => {
var a = [req.body.fullname, req.body.email, req.body.number, bcrypt.hashSync(req.body.password, 10), bcrypt.hashSync(req.body.repassword, 10)];
let errors = validationResult(req);
if(errors.isEmpty()){
db.User.create({
full_name: a[0],
email: a[1],
phone_number: a[2],
password: await bcrypt.hash(a[3], 10),
confirm_password: await bcrypt.hash(a[4], 10)
})
.then(users => {
res.send("succes!!");
})
}else{
res.render('register', { errors: errors.errors })
}
}
}
安装同步为什么不尝试异步并等待它被散列或解密。
在异步函数中散列密码。
let hashedPassword = await hash(password, 10);
以及用于比较密码的内部异步函数
let checkPass = await compare(password, foundUser.password);