赞
踩
1.先安装crypto-js包
npm install crypto-js
2.创建一个js文件
import crypto from 'crypto' //引入crypto //const crypto = require('crypto');//nodejs引入 const key = crypto.pbkdf2Sync("string1", "string2", 2, 16, 'sha1')//生成加密解密密匙的函数 // string1和string2是自定义的作为密匙的字符串 // 2 是设置迭代次数的,次数越高生成的密匙越安全 // 16 是设置字节长度的(16或32之类的) // sha1 指定模式 const algorithm = 'aes-128-cbc'//指定算法 const VIPARA = '1269571869323222'//初始化向量,可以空 const UTF_8 = 'utf-8'//输入的编码格式 const cipherEncoding = 'base64'//输出的编码格式 // 加密 function getAes(content){ const cipher = crypto.createCipheriv(algorithm, key, VIPARA)//生成一个cipher对象 let encStr = cipher.update(content, UTF_8, cipherEncoding); //content 是要加密的内容 encStr += cipher.final(cipherEncoding) return encStr }; // 解密 function jieAes(text){ try { const decipher = crypto.createDecipheriv(algorithm, key, VIPARA)//生成decipher对象 let decstr = decipher.update(text, cipherEncoding, UTF_8) decstr += decipher.final(UTF_8) // text是要解密的内容 return decstr } catch (error) { //自定义输出解密错误信息 return '-1' } }; export default {getAes,jieAes} //module.exports= {getAes,jieAes} //nodejs模块导出crypto-js库提供了多种加密方式,这里使用PBKDF2加密,可以指定生成固定的密钥长度,如果要使用哈希或对称加密,可以查看这篇文章crypto 简单了解
3.加密传入的对象为字符串,传入数值类型会报错,解密的时候如果传入的对象解析不出来也会报错,这里使用try catch来抛出错误,可以根据抛出的错误来判断是否解析成功
4.在其他页面,或组件中使用方法
import base64 from '@/utils/base64.js' //vue导入,nodejs使用require导入 let password = base64.getAes('123456..') console.log(password) console.log(base64.jieAes(password))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。