Files
NodeBB/bcrypt.js

43 lines
879 B
JavaScript
Raw Normal View History

2014-08-12 21:41:23 -04:00
'use strict';
2014-10-07 19:49:18 -04:00
var bcrypt = require('bcryptjs'),
2014-11-18 22:55:44 -05:00
async = require('async');
2014-08-12 21:41:23 -04:00
2014-11-18 22:55:44 -05:00
process.on('message', function(msg) {
if (msg.type === 'hash') {
hashPassword(msg.password, msg.rounds);
} else if (msg.type === 'compare') {
compare(msg.password, msg.hash);
}
});
function hashPassword(password, rounds) {
async.waterfall([
function(next) {
bcrypt.genSalt(parseInt(rounds, 10), next);
},
function(salt, next) {
bcrypt.hash(password, salt, next);
}
], function(err, hash) {
if (err) {
2014-11-18 23:23:35 -05:00
process.send({err: err.message});
return process.disconnect();
2014-11-18 22:55:44 -05:00
}
process.send({result: hash});
process.disconnect();
});
}
function compare(password, hash) {
bcrypt.compare(password, hash, function(err, res) {
if (err) {
2014-11-18 23:23:35 -05:00
process.send({err: err.message});
return process.disconnect();
2014-11-18 22:55:44 -05:00
}
process.send({result: res});
process.disconnect();
});
2014-08-12 21:41:23 -04:00
}