|
@@ -359,6 +359,8 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
if (StringUtils.isEmpty(params)) {
|
|
|
throw new BusinessException(ErrorCode.PARAM_REQUIRED);
|
|
|
}
|
|
|
+ params = params.replaceAll("%2B", "+");
|
|
|
+ params = params.replaceAll(" ", "+");
|
|
|
Base64 base64 = new Base64();
|
|
|
String cipher = params;
|
|
|
// 私钥解密过程
|
|
@@ -414,6 +416,8 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
if (StringUtils.isEmpty(params)) {
|
|
|
throw new BusinessException(ErrorCode.PARAM_REQUIRED);
|
|
|
}
|
|
|
+ params = params.replaceAll("%2B", "+");
|
|
|
+ params = params.replaceAll(" ", "+");
|
|
|
Base64 base64 = new Base64();
|
|
|
String cipher = params;
|
|
|
// 私钥解密过程
|