fhx
2023-05-12 7381f42dbec55951a0db5125d30886d1bdcad6a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package com.hx.util.rsa;
 
import com.hx.util.StringUtils;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
import org.bouncycastle.asn1.pkcs.PrivateKeyInfo;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
 
import java.security.KeyFactory;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.X509EncodedKeySpec;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
 
 
/**
 * RSA签名验签类
 */
public class RSASignature{
 
    /**
     * 签名算法
     */
    public static final String SIGN_ALGORITHMS = "SHA1WithRSA";
 
    /**
     * RSA签名
     * @param content 待签名数据
     * @param privateKey 商户私钥
     * @param encode 字符集编码
     * @return 签名值
     */
    public static String createSign(String content, String privateKey, String encode) {
        try {
            PKCS8EncodedKeySpec priPKCS8 = new PKCS8EncodedKeySpec( Base64.decode(privateKey) );
 
            KeyFactory keyf = KeyFactory.getInstance("RSA");
            PrivateKey priKey = keyf.generatePrivate(priPKCS8);
 
            java.security.Signature signature = java.security.Signature.getInstance(SIGN_ALGORITHMS);
 
            signature.initSign(priKey);
            signature.update( content.getBytes(encode));
 
            byte[] signed = signature.sign();
 
            return Base64.encode(signed);
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
 
        return null;
    }
 
    /**
     * RSA签名Pkcs1ToPkcs8
     * @param rawKey 商户私钥
     * @return 签名值
     */
    public static String formatPkcs1ToPkcs8(String rawKey) {
        if (!StringUtils.isEmpty(rawKey)) {
            try {
                //将BASE64编码的私钥字符串进行解码
                byte[] encodeByte = Base64.decode(rawKey);
                AlgorithmIdentifier algorithmIdentifier = new AlgorithmIdentifier(PKCSObjectIdentifiers.pkcs8ShroudedKeyBag);
                PrivateKeyInfo privKeyInfo = new PrivateKeyInfo(algorithmIdentifier, ASN1ObjectIdentifier.fromByteArray(encodeByte));
                return Base64.encode(privKeyInfo.getEncoded());
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        return null;
    }
    /**
     * RSA签名Pkcs8ToPkcs1
     * @param rawKey 商户私钥
     * @return 签名值
     */
    public static String formatPkcs8ToPkcs1(String rawKey){
        try {
            byte[] encodeByte = Base64.decode(rawKey);
            PrivateKeyInfo pki = PrivateKeyInfo.getInstance(encodeByte);
            ASN1Encodable asn = pki.parsePrivateKey();
            ASN1Primitive primitive = asn.toASN1Primitive();
            return Base64.encode(primitive.getEncoded());
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }
 
    public static String createSign(String content, String privateKey) {
        try{
            PKCS8EncodedKeySpec priPKCS8     = new PKCS8EncodedKeySpec( Base64.decode(privateKey) );
            KeyFactory keyf = KeyFactory.getInstance("RSA");
            PrivateKey priKey = keyf.generatePrivate(priPKCS8);
            java.security.Signature signature = java.security.Signature.getInstance(SIGN_ALGORITHMS);
            signature.initSign(priKey);
            signature.update( content.getBytes());
            byte[] signed = signature.sign();
            return Base64.encode(signed);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }
 
    /**
     * RSA验签名检查
     * @param content 待签名数据
     * @param sign 签名值
     * @param publicKey 分配给开发商公钥
     * @param encode 字符集编码
     * @return 布尔值
     */
    public static boolean doCheck(String content, String sign, String publicKey,String encode) {
        try {
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");
            byte[] encodedKey = Base64.decode(publicKey);
            PublicKey pubKey = keyFactory.generatePublic(new X509EncodedKeySpec(encodedKey));
 
 
            java.security.Signature signature = java.security.Signature
                    .getInstance(SIGN_ALGORITHMS);
 
            signature.initVerify(pubKey);
            signature.update( content.getBytes(encode) );
 
            boolean bverify = signature.verify( Base64.decode(sign) );
            return bverify;
 
        } catch (Exception e) {
            e.printStackTrace();
        }
 
        return false;
    }
 
    public static boolean doCheck(String content, String sign, String publicKey) {
        try {
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");
            byte[] encodedKey = Base64.decode(publicKey);
            PublicKey pubKey = keyFactory.generatePublic(new X509EncodedKeySpec(encodedKey));
 
 
            java.security.Signature signature = java.security.Signature
                    .getInstance(SIGN_ALGORITHMS);
 
            signature.initVerify(pubKey);
            signature.update( content.getBytes() );
 
            boolean bverify = signature.verify( Base64.decode(sign) );
            return bverify;
 
        } catch (Exception e) {
            e.printStackTrace();
        }
 
        return false;
    }
 
    /**
     * ASCII码递增排序(剔除空值)
     * @param params
     * @return
     */
    public static String getSignCheckContent(Map<String, String> params) {
        if (params == null) {
            return null;
        } else {
            StringBuilder content = new StringBuilder();
            List<String> keys = new ArrayList(params.keySet());
            Collections.sort(keys);
 
            for(int i = 0; i < keys.size(); ++i) {
                String key = (String)keys.get(i);
                Object value = params.get(key);
                if(value == null || StringUtils.isEmpty(value.toString())){
                    continue;
                }
                content.append(i == 0 ? "" : "&").append(key).append("=").append(value);
            }
            return content.toString();
        }
    }
 
}