Showing
1 changed file
with
3 additions
and
0 deletions
@@ -530,6 +530,9 @@ public abstract class AlipayServiceAbstract extends AbstractPayService { | @@ -530,6 +530,9 @@ public abstract class AlipayServiceAbstract extends AbstractPayService { | ||
530 | */ | 530 | */ |
531 | public boolean rsaSignVerify(Map<String, String> paramsMap) { | 531 | public boolean rsaSignVerify(Map<String, String> paramsMap) { |
532 | String preSignStr = getSignString(paramsMap); | 532 | String preSignStr = getSignString(paramsMap); |
533 | + | ||
534 | + logger.info("method rsaSignVerify in preSignStr is {}, sign is {}, RsaAlipubKey is {}", preSignStr, paramsMap.get("sign"), getRsaAlipubKey()); | ||
535 | + | ||
533 | return RSAUtils.verify(preSignStr, paramsMap.get("sign"), getRsaAlipubKey(), AlipayConfig.input_charset); | 536 | return RSAUtils.verify(preSignStr, paramsMap.get("sign"), getRsaAlipubKey(), AlipayConfig.input_charset); |
534 | } | 537 | } |
535 | 538 |
-
Please register or login to post a comment