vue中使用jsencrypt公钥加密密码(非对称加密)
vue项目 使用jsencrypt.js 公钥加密数据(非对称加密)
·
安装包
需求:非对称加密 前端获取后台给的公钥(或者写死一个)对需要加密的账号密码进行加密,后端用私钥对加密的字段进行解密
命令
npm install jsencrypt
npm i jsencrypt
cnpm install jsencrypt
cnpm i jsencrypt
vue 中引入这里我放在了utils文件夹下index.js
import { JSEncrypt } from 'jsencrypt'
/**
* 加密
* @param string 加密的内容
* @returns
*/
let publicKey = '公钥'
let privateKey= '私钥'
export function encryption (string) {
const encrypt = new JSEncrypt()
encrypt.setPublicKey(publicKey)
const encrypted = encrypt.encrypt(string)
return encrypted
}
// 解密(一般不在前端解密,都是后端进行解密)
export function decrypt (string ) {
let decrypt = new JSEncrypt()
decrypt.setPrivateKey(privateKey)
var decryptMsg = decrypt.decrypt(string)
return decryptMsg
}
页面引用
import {encryption,decrypt} from '@/utils'
let paw =encryption('需要加密的字段')
更多推荐
已为社区贡献1条内容
所有评论(0)