提交 0b5b3ce0 authored 作者:  狄熙卜's avatar 狄熙卜

优化 狄熙卜

上级 32f44c5d
......@@ -83,7 +83,6 @@ public class GmSm4CryptExecutor implements CryptExecutor {
} else if (!needDecrypt(encrytString, cryptProperties)) {
return encrytString;
}else{
try {
String separatorChars = CryptUtil.getSeparatorChars(encrytString);
if (StringUtils.isNotEmpty(cryptProperties.getSeparator()) && !StringUtils.equalsIgnoreCase(separatorChars, cryptProperties.getSeparator())) {
separatorChars = cryptProperties.getSeparator();
......@@ -104,10 +103,6 @@ public class GmSm4CryptExecutor implements CryptExecutor {
return StringUtils.substring(decryptParam.toString(), 0, decryptParam.length() - 1);
}
} catch (Exception var10) {
var10.printStackTrace();
return encrytString;
}
}
}
......
......@@ -283,7 +283,7 @@ public class GmSm4Util {
}
}
public static String decryptEcb(String cipherText, CryptProperties cryptProperties) throws Exception {
public static String decryptEcb(String cipherText, CryptProperties cryptProperties) {
if (StringUtils.isBlank(cipherText)) {
return cipherText;
} else {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论