当前位置: 首页 > 工具软件 > Cryptico.js > 使用案例 >

jsencrypt加解密 &&cryptico

蓬琦
2023-12-01

   npm install --save jsencrypt

import {JSEncrypt} from 'jsencrypt';

//导入公钥
if ( publicKey.indexOf('-----') < 0 ) {
publicKey = "-----BEGIN PUBLIC KEY-----" + publicKey + "-----END PUBLIC KEY-----";
}
var encrypt = new JSEncrypt();
encrypt.setPublicKey(publicKey);

if( password instanceof Array ){
password = password.join('|');
}

data = encrypt.encrypt(password)
或者
data = encodeURIComponent( encrypt.encrypt(password) )


引入cryptico.js
shaKey和pubKey为后台返回
res = res || {
"shaKey": "",
"pubKey": ""
};

cryptico.setPublicKeyString(res);


加密密码
cryptico.encrypt(pwd);

转载于:https://www.cnblogs.com/shuihanxiao/p/9909210.html

 类似资料: