Vue项目中使用RSA加密

1、安装 jsencrypt
 npm install jsencrypt
2、在 main.js 引入 jsencrypt
 import JsEncrypt from 'jsencrypt'
 Vue.prototype.jsEncrypt = JsEncrypt
3、在项目中使用
var en=new JSEncrypt();
en.setPublicKey(publicKey);
let password=en.encrypt(password)

公众号:
Vue项目中使用RSA加密_第1张图片
微信:
Vue项目中使用RSA加密_第2张图片

你可能感兴趣的:(Vue项目中使用RSA加密)