uniapp/vue使用jsencrypt加密
npm下载jsencrypt把jsencrypt文件放到components下新建jsencrypt.js文件import JSEncrypt from '../components/jsencrypt';let publicKey = '自行获取';function RSAencrypt(pas){//实例化jsEncrypt对象let jse = new JSEncrypt();//设置公钥j
·
uniapp
- npm下载jsencrypt
- 在下载下来的jsencrypt.js中加入以下代码全局替换
// 用来替换 navigator
var navigator2 = {
appName: 'Netscape',
userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1'
};
// 用来替换window
var window2 = {
ASN1: null,
Base64: null,
Hex: null,
crypto: null,
href: null
};
- 在新建的js文件里
import JSEncrypt from '../components/jsencrypt';
let publicKey = '自行获取';
//公钥写在前端有可能扫描出来漏洞,可以加密使用之前解密、可以接口获取
function RSAencrypt(pas){
//实例化jsEncrypt对象
let jse = new JSEncrypt();
//设置公钥
jse.setPublicKey(publicKey);
return jse.encrypt(pas);
}
export {RSAencrypt}
//可以在main.js中引入,挂载到vue原型上。
- 在需要的地方引入
1、
import { RSAencrypt } from '../../common/jsencrypy.js';
let jiami = RSAencrypt(pas);
2、挂载到vue原型上,通过this使用
vue
- 不用去替换源码里的window和navigator,使用方法和上面一样
更多推荐
已为社区贡献5条内容
所有评论(0)