From c483d6f1abfa09ac54d79971183f56fc4324380a Mon Sep 17 00:00:00 2001 From: leung Date: Thu, 31 Oct 2024 15:55:00 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20#3392=E3=80=90=E5=BE=AE=E4=BF=A1?= =?UTF-8?q?=E6=94=AF=E4=BB=98=E3=80=91=E4=BF=AE=E5=A4=8DV3=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E7=AB=AF=E5=88=9D=E5=A7=8B=E5=8C=96=E6=97=B6p12?= =?UTF-8?q?=E8=AF=81=E4=B9=A6=E5=8A=A0=E8=BD=BD=E5=A4=B1=E8=B4=A5=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../binarywang/wxpay/config/WxPayConfig.java | 29 +++++-------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/config/WxPayConfig.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/config/WxPayConfig.java index 83a4b042c..3bc868d07 100644 --- a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/config/WxPayConfig.java +++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/config/WxPayConfig.java @@ -270,6 +270,7 @@ public class WxPayConfig { if (objects != null) { merchantPrivateKey = (PrivateKey) objects[0]; certificate = (X509Certificate) objects[1]; + this.certSerialNo = certificate.getSerialNumber().toString(16).toUpperCase(); } try { if (merchantPrivateKey == null) { @@ -405,30 +406,12 @@ public class WxPayConfig { } } - /** - * 从配置路径 加载p12证书文件流 - * - * @return 文件流 - */ - private InputStream loadP12InputStream() { - try (InputStream inputStream = this.loadConfigInputStream(this.keyString, this.getKeyPath(), - this.keyContent, "p12证书");) { - return inputStream; - } catch (Exception e) { - return null; - } - } - /** * 分解p12证书文件 * * @return */ private Object[] p12ToPem() { - InputStream inputStream = this.loadP12InputStream(); - if (inputStream == null) { - return null; - } String key = getMchId(); if (StringUtils.isBlank(key)) { return null; @@ -436,7 +419,11 @@ public class WxPayConfig { // 分解p12证书文件 PrivateKey privateKey = null; X509Certificate x509Certificate = null; - try { + try (InputStream inputStream = this.loadConfigInputStream(this.keyString, this.getKeyPath(), + this.keyContent, "p12证书");){ + if (inputStream == null) { + return null; + } KeyStore keyStore = KeyStore.getInstance("PKCS12"); keyStore.load(inputStream, key.toCharArray()); @@ -446,8 +433,8 @@ public class WxPayConfig { Certificate certificate = keyStore.getCertificate(alias); x509Certificate = (X509Certificate) certificate; return new Object[]{privateKey, x509Certificate}; - } catch (Exception ignored) { - + } catch (Exception e) { + e.printStackTrace(); } return null;