|
@@ -64,7 +64,7 @@ public class TENotifyController {
|
|
|
Optional.ofNullable(t).orElseThrow(() -> new BusinessException("腾讯云回调时间为空"));
|
|
|
|
|
|
String localSign = MD5Util.encoder(callbackPwd + String.valueOf(t));
|
|
|
- if (!Objects.equals(sign, localSign)) {
|
|
|
+ if (!MD5Util.verify(sign, localSign)) {
|
|
|
throw new BusinessException("腾讯云签名不匹配");
|
|
|
}
|
|
|
|