Commit 93558e53 authored by maqing's avatar maqing

System.out.println删除

parent 28bfc30f
...@@ -265,7 +265,6 @@ public class TaskController { ...@@ -265,7 +265,6 @@ public class TaskController {
} }
ChAprReport newChAprReport = new ChAprReport(); ChAprReport newChAprReport = new ChAprReport();
Integer userId = TokenParsingUtil.TokenParsing(token, "userId"); Integer userId = TokenParsingUtil.TokenParsing(token, "userId");
System.out.println(chAprReport.getPublicityUser());
if(chAprReport.getPublicityUser() == null){ if(chAprReport.getPublicityUser() == null){
newChAprReport.setPublicityUser(userId);//当前登录人 newChAprReport.setPublicityUser(userId);//当前登录人
newChAprReport.setPublicityTime(new Date()); newChAprReport.setPublicityTime(new Date());
......
...@@ -87,7 +87,6 @@ public class CsoftSecurityUtil { ...@@ -87,7 +87,6 @@ public class CsoftSecurityUtil {
String sign = sha256(receivedMap); String sign = sha256(receivedMap);
if (!sign.equals(inputSign)) { if (!sign.equals(inputSign)) {
// sign校验不通过,说明双方发送出的数据和对方收到的数据不一致 // sign校验不通过,说明双方发送出的数据和对方收到的数据不一致
System.out.println("input sign: " + inputSign + ", calculated sign: " + sign);
return null; return null;
} }
...@@ -99,7 +98,6 @@ public class CsoftSecurityUtil { ...@@ -99,7 +98,6 @@ public class CsoftSecurityUtil {
// 解密data数据 // 解密data数据
String data = decryptAES(key, salt, receivedMap.get("data")); String data = decryptAES(key, salt, receivedMap.get("data"));
System.out.println("接收到的data内容:" + data);
return data; return data;
} }
...@@ -131,7 +129,6 @@ public class CsoftSecurityUtil { ...@@ -131,7 +129,6 @@ public class CsoftSecurityUtil {
String salt = encryptRSA(externalPublicKey, aesIVWithBase64); String salt = encryptRSA(externalPublicKey, aesIVWithBase64);
// 组织业务数据信息,并用上面生成的对称加密的密钥和IV进行加密 // 组织业务数据信息,并用上面生成的对称加密的密钥和IV进行加密
System.out.println("发送的data内容:" + sendData.toJSONString());
String cipherData = encryptAES(aesKeyWithBase64, aesIVWithBase64, sendData.toJSONString()); String cipherData = encryptAES(aesKeyWithBase64, aesIVWithBase64, sendData.toJSONString());
// 组织请求的key、value对 // 组织请求的key、value对
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment