【发布时间】:2021-12-27 17:24:07
【问题描述】:
我正在构建一个应用程序,但我正在努力使用护照和 MongoDB 更新密码。 我想检查用户是否输入了他的实际密码,并且在设置新密码之前它是否与数据库中存储的密码相匹配。
这是我目前得到的:
if (req.body.password == req.user.password) {
if (req.body.newPassword.normalize() == req.body.confirmPassword.normalize()) {
// Verifying if the new password matches the confirmation one
// before actually changing the password (This part works)
}
} else {
// Handling if the old password does not match the DB
}
res.redirect('/profile')
我一直在尝试这样的事情:
passport.use(new LocalStrategy(
function(username, password, done) {
User.findOne({
username: req.user.email
}, function(err, user) {
if (err) {
return done(err);
}
if (!user) {
return done(null, false);
}
if (!user.verifyPassword(req.body.password)) {
return done(null, false);
}
return done(null, user);
});
}
仍然没有工作...有什么提示吗? :)
编辑
我一直在使用加密来尝试获取与存储在 MongoDB 中的哈希相同的哈希。要注册新用户,我使用护照。
let hash = crypto.createHmac('sha256', secret)
.update('I love cupcakes') // I have no idea of what this this line does, actually...
.digest('hex');
console.log(hash);
我想在某些时候我应该将数据库存储的盐传递给一个函数,以验证他提交的密码与存储的密码相同,我只是不知道该怎么做......
【问题讨论】:
标签: javascript mongoose passport.js