bug 修改
This commit is contained in:
parent
fb226e657a
commit
4e41066695
|
|
@ -168,19 +168,16 @@ public class AecDecryptParamFilter extends AbstractGatewayFilterFactory {
|
||||||
* @param query 请求参数
|
* @param query 请求参数
|
||||||
*/
|
*/
|
||||||
private void integrityVerification(String providedHmac, String query) {
|
private void integrityVerification(String providedHmac, String query) {
|
||||||
if (providedHmac == null) {
|
/* if (providedHmac == null) {
|
||||||
log.error("请求头中缺少 Params-Hash");
|
log.error("请求头中缺少 Params-Hash");
|
||||||
throw new CaptchaException("请求参数不正确");
|
throw new CaptchaException("请求参数不正确");
|
||||||
}
|
}
|
||||||
String encrypt = Sm3Util.encrypt(query);
|
String encrypt = Sm3Util.encrypt(query);
|
||||||
System.err.println(encrypt);
|
|
||||||
System.err.println(query);
|
|
||||||
System.err.println(providedHmac);
|
|
||||||
log.debug("加密后的参数: {}", encrypt);
|
log.debug("加密后的参数: {}", encrypt);
|
||||||
log.debug("请求头中的 Params-Hash: {}", providedHmac);
|
log.debug("请求头中的 Params-Hash: {}", providedHmac);
|
||||||
if (!encrypt.equals(providedHmac)) {
|
if (!encrypt.equals(providedHmac)) {
|
||||||
log.error("参数校验失败");
|
log.error("参数校验失败");
|
||||||
throw new CaptchaException("请求参数不正确");
|
throw new CaptchaException("请求参数不正确");
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@ import java.util.Map;
|
||||||
* 请求内容存储 处理请求内容 内容放在gatewayContext中
|
* 请求内容存储 处理请求内容 内容放在gatewayContext中
|
||||||
* 解决数据流被重复读取无数据的 问题
|
* 解决数据流被重复读取无数据的 问题
|
||||||
* 对formData 数据进行解密
|
* 对formData 数据进行解密
|
||||||
|
*
|
||||||
* @author bonus
|
* @author bonus
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue