nodejs与javascript中的aes加密

Posted 我叫阿良❤善良的良

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs与javascript中的aes加密相关的知识,希望对你有一定的参考价值。

 
// var CryptoJS = require("crypto-js");
// var key = CryptoJS.enc.Utf8.parse("8NONwyJtHesysWpM");
var crypto = require(\'crypto\');
var key = new Buffer(\'7y05R9qwKaIKgIHh4vAw19X1zuknR21Y\', \'binary\');
var iv = "";
var cryto_aes = module.exports = {};
 
//加密
cryto_aes.Encrypt = function(data){
 
  iv = iv || "";
  var clearEncoding = \'utf8\';
  var cipherEncoding = \'base64\';
  var cipherChunks = [];
  var cipher = crypto.createCipheriv(\'aes-256-ecb\', key, iv);
  cipher.setAutoPadding(true);
  cipherChunks.push(cipher.update(data, clearEncoding, cipherEncoding));
  cipherChunks.push(cipher.final(cipherEncoding));
  return cipherChunks.join(\'\');
}

 

//解密
cryto_aes.Decrypt = function(data){
 
  if (!data) {
    return "";
  }
  iv = iv || "";
  var clearEncoding = \'utf8\';
  var cipherEncoding = \'base64\';
  var cipherChunks = [];
  var decipher = crypto.createDecipheriv(\'aes-256-ecb\', key, iv);
  decipher.setAutoPadding(true);
  cipherChunks.push(decipher.update(data, cipherEncoding, clearEncoding));
  cipherChunks.push(decipher.final(clearEncoding));
  return cipherChunks.join(\'\');
 
}
 
 
参考:http://www.cnblogs.com/vipstone/p/5514886.html
参照上述方法时注意 iv 和 key的设置  可能会报Invalid IV length 错  解决方法 就是 设置成我粘贴的代码中的格式。
 

 

以上是关于nodejs与javascript中的aes加密的主要内容,如果未能解决你的问题,请参考以下文章

nodejs中aes-128-cbc加密和解密

php中的AES加密,然后用Javascript(cryptojs)解密

javascript与php使用aes进行加密/解密

Nodejs与Java通用AES加解密

JavaScript SubtleCrypto 生成 176 位 AES 密钥而不是 128 位?

Javascript AES加密[关闭]