uniapp/vue使用jsencrypt加密

uniapp

  • npm下载jsencrypt
  • 把jsencrypt文件放到components下
  • 在下载下来的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
};
  • 新建jsencrypt.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原型上。
  • 在需要的地方引入
import { RSAencrypt } from '../../common/jsencrypy.js';
let jiami = RSAencrypt(pas);

vue

  • 不用去替换源码里的window和navigator,使用方法和上面一样

你可能感兴趣的:(uniapp/vue使用jsencrypt加密)