var key = {}; key.key = str.substring(0, 16); key.iv = str.substring(16, 32); key.security = "\u4435\u5320\u4d35"
时间: 2023-02-12 07:52:22 浏览: 144
这段代码定义了一个名为 key 的变量,它是一个对象。代码将 str 字符串的前 16 个字符赋值给 key 对象的 key 属性,将 str 字符串的 16 到 32 个字符赋值给 key 对象的 iv 属性,并将字符串 "\u4435\u5320\u4d35" 赋值给 key 对象的 security 属性。
相关问题
能详细说下这组代码是什么意思吗?代码是:Com_RegisterFile("security.js"); Com_IncludeFile("aes.js"); Com_IncludeFile("base64.js"); var SECURITYKEY = { toHexString: function(str) { var temp = ""; for (i = 0; i < str.length; i++) { temp += str.charCodeAt(i).toString(16) } return temp }, _2: function() { $.ajax({ async: false, dataType: "script", url: Com_Parameter.ResPath + "js/session.jsp?_=" + new Date().getTime() }); var str = ""; if (window.getSessionId) { str = getSessionId() } return str }, supportEncodings: function() { return ["aes", "des"] }, get: function(encodeType) { var str = SECURITYKEY._2(); if (encodeType == null || encodeType == 'aes') { if (str.length < 32) { str += "abcdefghijklmnopqrstuvwxyz1234567890" } str = str.toUpperCase(); var key = {}; key.key = str.substring(0, 16); key.iv = str.substring(16, 32); key.security = "\u4435\u5320\u4d35" } else { if (str.length < 16) { str += "abcdefghijklmnopqrstuvwxyz" } str = str.toUpperCase(); var key = {}; key.key = SECURITYKEY.toHexString(str.substring(0, 8)); key.iv = SECURITYKEY.toHexString(str.substring(8, 16)); key.security = "\u4445\u5320\u4d45" } return key }, getCookie: function(c_name) { if (document.cookie.length > 0) { var cookies = document.cookie.split(";"); for (i = 0; i < cookies.length; i++) { var xc = cookies[i]; var cn = xc.substring(0, xc.indexOf("=")).toUpperCase(); cn = cn.replace(/^\s*/, "").replace(/\s*$/, ""); if (cn == c_name) { return unescape(xc.substring(xc.indexOf("=") + 1, xc.length)) } } } return "" } }; function base64Convert() { return "\u4241\u5345\u3634{" + Base64.encode(arguments[0]) + "}" } function _0(xForm) { if (xForm == null) { xForm = document.forms[0] } if (xForm != null) { if (xForm.encoding == "multipart/form-data") { return true } } return false } function _1(str, xForm, isX) { if (_0(xForm)) { return str } else { var val = str; if (str != null && str.length > 0) str = base64Convert(str); if (val != str) { if (isX == true) { val = "\u4645\u5810\u4d40" + str } else { val = "\u4649\u5820\u4d45" + str } } return val } } function desEncrypt(value, xForm, type) { if (_0(xForm)) { return value } else { var keyObj = {}; if (type == null || "aes" == type.toLowerCase()) { keyObj = SECURITYKEY.get(); value = CryptoJS.AES.encrypt(value, CryptoJS.enc.Utf8.parse(keyObj.key), { iv: CryptoJS.enc.Utf8.parse(keyObj.iv) }).toString() } else { keyObj = SECURITYKEY.get('des'); value = CryptoJS.DES.encrypt(value, CryptoJS.enc.Hex.parse(keyObj.key), { iv: CryptoJS.enc.Hex.parse(keyObj.iv) }) } return keyObj.security + value } } function base64Encode(str, xForm) { return _1(str, xForm) } function base64Encodex(str, xForm) { return _1(str, xForm, true) }
这段代码主要是定义了一个 SECURITYKEY 对象,它有多个函数用来处理加密和解密。
- Com_RegisterFile("security.js") 和 Com_IncludeFile("aes.js") 和 Com_IncludeFile("base64.js") ,这三句话是在引入 security.js、aes.js 和 base64.js 这三个文件。
- SECURITYKEY.toHexString(str),这个函数是将字符串转换为十六进制字符串。
- SECURITYKEY._2(),这个函数是用 ajax 方式加载 session.jsp 文件,并从中获取 sessionId。
- SECURITYKEY.supportEncodings(),这个函数是返回加密类型的数组。
- SECURITYKEY.get(encodeType),这个函数是根据给定的加密类型返回加密的 key 和 iv。
- SECURITYKEY.getCookie(c_name),这个函数是获取指定名称的 cookie 的值。
- base64Convert(),这个函数是将参数编码为 base64。
- _0(xForm) 和 _1(str, xForm, isX),这两个函数的作用没有明确说明。
总之这段代码主要是定义了一个 SECURITYKEY 对象,它有多个函数用来处理加密和解密,并使用了 aes.js 和 base64.js 这两个文件。
补充如下方法使其可以运行。 public static int getKeyStringCount(String str,String key){ //统计key在str中出现的次数 int count=0; int index=0; while((______(1)_____){ //查找key串在str串中是否存在 int new = str.indexOf(key); //new记下每轮循环中key串出现的新位置 str=_____(2)____; //从str取得新的剩余子串 count++; } return count ; //返回统计结果 } }
请参考下面的代码实现:
```
public static int getKeyStringCount(String str, String key) {
// 统计key在str中出现的次数
int count = 0;
int index = 0;
while ((index = str.indexOf(key, index)) != -1) { // 查找key串在str串中是否存在
index += key.length(); // 找到key串后,index移到key串之后,以便继续查找下一个key串
str = str.substring(index); // 从str取得新的剩余子串
count++;
}
return count;
}
```
注:此代码中,indexOf方法的第二个参数表示从哪个位置开始查找字符串,若未找到则返回-1。substring方法表示从原字符串中截取子串。
阅读全文