日期:2014-05-16 浏览次数:20350 次
这里大家可以去了解下官网的api,里面有一个加密模块crypto,具体如何使用大家自己就去查看!
var crypto = require('crypto'); var hash = crypto.createHash("md5"); hash.update(new Buffer("huangdanhua", "binary")); var encode = hash.digest('hex'); console.log(encode); 有多种加密方法,上述只是使用md5进行加密!详细可以查看官网api