Skip to main content

公钥使用

获取公钥(BizConfig/read/publicKey)

  • 不需要headers中传token

  • 输入:无

  • 输出:

名称字段类型可选说明
编码codestringN
创建日期createtimedateN
名称namestringN
说明remarkstringY
类型typenumberN
公钥valuestringN使用的publicKey

公钥加密

安装jsencrypt

npm install jsencrypt

使用jsencrypt加密

    import JsEncrypt from 'jsencrypt';
let encrypt = new JsEncrypt();
let publicKey = '通过API获取的publicKey';
encrypt.setPublicKey(publicKey);
// 需要加密的数据
var data = {account:'138***1233',password:'Dx@34****234'};
// 加密后的数据
data = {account: encrypt.encrypt(data.account),
password: encrypt.encrypt(data.password)};