微信所有的支付结果都是加密处理的,他和订单支付成功的异步通知不一样。
他的基本返回是:
SUCCESS
我们需要对req_info解码才能看到退款的明文
解码后会得到明文:
解密步骤如下:
(1)对加密串A做base64解码,得到加密串B
(2)对商户key做md5,得到32位小写key* ( key设置路径:微信商户平台(pay.weixin.qq.com)-->账户设置-->API安全-->密钥设置 )
(3)用key*对加密串B做AES-256-ECB解密(PKCS7Padding)
秘钥如果是服务商模式,请使用服务商的秘钥,否则使用商户的秘钥。
我们提供下java版的解密方法:public static String getRefundDecrypt(String reqInfoSecret, String key) {
String result = "";
try {
Security.addProvider(new BouncyCastleProvider());
sun.misc.BASE64Decoder decoder = new sun.misc.BASE64Decoder();
byte[] bt = decoder.decodeBuffer(reqInfoSecret);
String b = new String(bt);
String md5key = MD5(key).toLowerCase();
System.out.println(md5key);
SecretKey secretKey = new SecretKeySpec(md5key.getBytes(), "AES");
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS7Padding", "BC");
cipher.init(Cipher.DECRYPT_MODE, secretKey);
byte[] resultbt = cipher.doFinal(bt);
result = new String(resultbt);
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
OK 代码好了,实测有效