yangys
2025-05-26 2ba2c339acf41fd7bb2a49f0ce186fd664a80cb5
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
package com.qianwen.license.keystore;
 
public class X509CertificateConstants {
    /**
     * 密钥算法
     */
    public static final String KEY_ALGORITHM = "RSA";//RSA DSA
    /**
     * 签名算法
     */
    public static final String SIGN_ALGORITHM = "SHA256withRSA";// SHA256withDSA  SHA256withRSA
    /**
     * 私钥类型
     */
    public static final String PRIVATE_KEY_TYPE = "PRIVATE KEY";
    /**
     * 公钥类型
     */
    public static final String PUBLIC_KEY_TYPE = "PUBLIC KEY";
    /**
     * 证书类型
     */
    public static final String CERTIFICATE_TYPE = "CERTIFICATE";
 
}