js 修改
This commit is contained in:
parent
7f87c0be66
commit
7d12697445
|
|
@ -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@";
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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){
|
||||
|
|
|
|||
|
|
@ -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] : '';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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] : '';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue