@ -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);