您的位置:首页 > Web前端 > Node.js

nodejs加密解密

2015-08-26 11:39 483 查看
nodejs是通集成在内核中的crypto模块来完成加密解密。

常用加密解密模块化代码:

/**
* Created by linli on 2015/8/25.
*/
var crypto = require('crypto');

//加密
exports.cipher = function(algorithm, key, buf) {
var encrypted = "";
var cip = crypto.createCipher(algorithm, key);
encrypted += cip.update(buf, 'binary', 'hex');
encrypted += cip.final('hex');
return encrypted
};

//解密
exports.decipher = function(algorithm, key, encrypted) {
var decrypted = "";
var decipher = crypto.createDecipher(algorithm, key);
decrypted += decipher.update(encrypted, 'hex', 'binary');
decrypted += decipher.final('binary');
return decrypted
};


此处,只针对可逆加密。

更详细内容请访问:http://blog.fens.me/nodejs-crypto/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: