0 Star 0 Fork 17

千载/NodeBB

forked from gitlabcc/NodeBB 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
bcrypt.js 662 Bytes
一键复制 编辑 原始数据 按行查看 历史
Barış Soner Uşaklı 提交于 2015-03-17 13:09 . shorter bcrypt
'use strict';
var bcrypt = require('bcryptjs'),
async = require('async');
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);
}
});
function hashPassword(password, rounds) {
async.waterfall([
function(next) {
bcrypt.genSalt(parseInt(rounds, 10), next);
},
function(salt, next) {
bcrypt.hash(password, salt, next);
}
], done);
}
function done(err, result) {
if (err) {
process.send({err: err.message});
return process.disconnect();
}
process.send({result: result});
process.disconnect();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Shivan/NodeBB.git
git@gitee.com:Shivan/NodeBB.git
Shivan
NodeBB
NodeBB
master

搜索帮助