0 Star 0 Fork 17

goeccn/NodeBB

forked from gitlabcc/NodeBB 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bcrypt.js 674 Bytes
一键复制 编辑 原始数据 按行查看 历史
Peter Jaszkowiak 提交于 2017-02-18 12:30 . ESlint object-curly-spacing
'use strict';
var bcrypt = require('bcryptjs');
var 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();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yhplike/NodeBB.git
git@gitee.com:yhplike/NodeBB.git
yhplike
NodeBB
NodeBB
master

搜索帮助