public enum EncryptAlgorithm extends Enum<EncryptAlgorithm>
| 枚举常量和说明 |
|---|
AES |
BASE64 |
MD5_16 |
MD5_32 |
NONE |
PBEWithHMACSHA512AndAES_256 |
PBEWithMD5AndDES |
PBEWithMD5AndTripleDES |
PBEWithSHA1AndDESede |
PBEWithSHA1AndRC2_40 |
RSA |
SM2 |
SM3 |
SM4 |
public static final EncryptAlgorithm NONE
public static final EncryptAlgorithm MD5_32
public static final EncryptAlgorithm MD5_16
public static final EncryptAlgorithm BASE64
public static final EncryptAlgorithm AES
public static final EncryptAlgorithm RSA
public static final EncryptAlgorithm SM2
public static final EncryptAlgorithm SM3
public static final EncryptAlgorithm SM4
public static final EncryptAlgorithm PBEWithMD5AndDES
public static final EncryptAlgorithm PBEWithMD5AndTripleDES
public static final EncryptAlgorithm PBEWithHMACSHA512AndAES_256
public static final EncryptAlgorithm PBEWithSHA1AndDESede
public static final EncryptAlgorithm PBEWithSHA1AndRC2_40
public static EncryptAlgorithm[] values()
for (EncryptAlgorithm c : EncryptAlgorithm.values()) System.out.println(c);
public static EncryptAlgorithm valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2024. All rights reserved.