温馨提示×

前端怎么对接口数据进行加密

九三
825
2021-01-18 16:33:40
栏目: 网络安全

前端怎么对接口数据进行加密

在前端中使用AES对接口数据进行加密的方法

前端代码如下:

var aesUtil = {

//获取key,

genKey : function (length = 16) {

let random = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

let str = "";

for (let i = 0; i < length; i++) {

str = str + random.charAt(Math.random() * random.length)

}

return str;

},

//加密

encrypt : function (plaintext,key) {

if (plaintext instanceof Object) {

//JSON.stringify

plaintext = JSON.stringify(plaintext)

}

let encrypted = CryptoJS.AES.encrypt(CryptoJS.enc.Utf8.parse(plaintext), CryptoJS.enc.Utf8.parse(key), {mode:CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7});

return encrypted.toString();

}

};

0