js 修改

This commit is contained in:
cwchen 2025-04-14 10:44:52 +08:00
parent 7f87c0be66
commit 7d12697445
4 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ public class AESCBCUtils {
/**
* AES要求密钥长度为128位或192位或256位java默认限制AES密钥长度最多128位
*/
public static String sKey = "zhst@bonus@zhst@bonus@1234567890";
public static String sKey = "zhst@bonus@zhst@";

View File

@ -16,7 +16,7 @@
//# sourceMappingURL=aes.min.js.map
!function(e,n){"object"==typeof exports?module.exports=exports=n(require("./core.min")):"function"==typeof define&&define.amd?define(["./core.min"],n):n(e.CryptoJS)}(this,function(e){return e.enc.Utf8});
//# sourceMappingURL=enc-utf8.min.js.map
var cbc_key = CryptoJS.enc.Utf8.parse("zhst@bonus@zhst@bonus@1234567890");
var cbc_key = CryptoJS.enc.Utf8.parse("zhst@bonus@zhst@");
var cbc_iv = CryptoJS.enc.Utf8.parse("1234567812345678");
function encryptCBC(word){
if(!aqEnnable){

View File

@ -156,7 +156,7 @@ function initImgData(list) {
if (item.sourceType === '9') {
return item.title;
} else {
return item.sourceTypeName.split('-')[1];
return item.sourceTypeName ? item.sourceTypeName.split('-')[1] : '';
}
}

View File

@ -150,7 +150,7 @@ function initImgData(list) {
if (item.sourceType === '9') {
return item.title;
} else {
return item.sourceTypeName.split('-')[1];
return item.sourceTypeName ? item.sourceTypeName.split('-')[1] : '';
}
}