always pass strings to bcrypt compare

v1.18.x
Barış Soner Uşaklı 8 years ago
parent 085d8c2f92
commit 870bb87b08

@ -9,7 +9,7 @@ process.on('message', function (msg) {
if (msg.type === 'hash') {
hashPassword(msg.password, msg.rounds);
} else if (msg.type === 'compare') {
bcrypt.compare(msg.password, msg.hash, done);
bcrypt.compare(String(msg.password || ''), String(msg.hash || ''), done);
}
});

@ -9,6 +9,9 @@
};
module.compare = function (password, hash, callback) {
if (!hash || !password) {
return setImmediate(callback, null, false);
}
forkChild({ type: 'compare', password: password, hash: hash }, callback);
};

Loading…
Cancel
Save