流程:

前端:md5,rsa,base64
后端:base64,rsa,得到md5

安装相关依赖:

npm i jsencrypt
npm i js-md5
npm i js-base64

全局引入:

import JsEncrypt from 'jsencrypt/bin/jsencrypt';
import md5 from 'js-md5';
let base64 = require('js-base64').Base64;

Vue.prototype.$jsEncrypt = JsEncrypt;
Vue.prototype.$md5 = md5;
Vue.prototype.$base64 = base64;

使用:

let jse = new this.$jsEncrypt();
jse.setPublicKey(pubKey); // 加入rsa public key
let password = jse.encrypt(this.$md5(password)); // 将password加密

注意:

因为此处需要前后端统一做base64处理,所以一定要看jsencrypt的源码,检查在encrypt之后是否有base64处理
Logo

前往低代码交流专区

更多推荐