...
|
...
|
@@ -530,6 +530,9 @@ public abstract class AlipayServiceAbstract extends AbstractPayService { |
|
|
*/
|
|
|
public boolean rsaSignVerify(Map<String, String> paramsMap) {
|
|
|
String preSignStr = getSignString(paramsMap);
|
|
|
|
|
|
logger.info("method rsaSignVerify in preSignStr is {}, sign is {}, RsaAlipubKey is {}", preSignStr, paramsMap.get("sign"), getRsaAlipubKey());
|
|
|
|
|
|
return RSAUtils.verify(preSignStr, paramsMap.get("sign"), getRsaAlipubKey(), AlipayConfig.input_charset);
|
|
|
}
|
|
|
|
...
|
...
|
|