加密
//cipher加密算法
function cipher(str){
try{
const crypto = require('crypto');
/**
* --创建 Cipher 实例。 不能使用 new 关键字直接地创建 Cipher 对象
* --crypto.createCipher,@param1 算法,@param2 密文,@param3 向量--可为""或省略
*/
const cipher = crypto.createCipher('aes128', '冷月心');
/**
* update方法
* @param1 加密的数据
* @param2 数据编码格式,一般为utf8
* @param3 输出格式,一般为 'base64' 或者 'hex',缺省返回Buffer
*/
let encrypted = cipher.update(str, 'utf8', 'hex');
/**
* final方法,返回加密后结果
* @param 返回值的字符编码 ,一般为 'base64' 或者 'hex',缺省返回Buffer
* -- 一旦 cipher.final() 方法被调用, Cipher 对象就不能再用于加密数据。
* -- 如果试图再次调用 cipher.final(),将会抛出一个错误。
*/
encrypted += cipher.final('hex');
return encrypted;
}catch(e){
console.log('加密失败');
return e.message ;
}
}
const result=cipher('清风明月晓星尘') ;
console.log(result)//fa0bb8ac7f40bfdc925bd24ae2aacc04ac89740c0bd6dfe51213d9e66a8e0360
解密
function decipher(encrypted){
try{
const crypto = require('crypto');
const decipher = crypto.createDecipher('aes128', '冷月心')
let decrypted = decipher.update(encrypted, 'hex', 'utf8');
decrypted += decipher.final('utf8');
return decrypted;
}catch(e){
console.log('解密失败');
return e.message;
}
}
const result=decipher('fa0bb8ac7f40bfdc925bd24ae2aacc04ac89740c0bd6dfe51213d9e66a8e0360');
console.log(result)//清风明月晓星尘