public static enum CryptUtils.Algorithm extends Enum<CryptUtils.Algorithm>
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getAlgorithm() |
String |
getRemark() |
int |
getType() |
static CryptUtils.Algorithm |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static CryptUtils.Algorithm[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final CryptUtils.Algorithm DES
public static final CryptUtils.Algorithm TRIPLE_DES
public static final CryptUtils.Algorithm AES
public static final CryptUtils.Algorithm RC4
public static final CryptUtils.Algorithm BLOWFISH
public static final CryptUtils.Algorithm RSA
public static final CryptUtils.Algorithm MD5
public static final CryptUtils.Algorithm SHA1
public static final CryptUtils.Algorithm SHA256
public static final CryptUtils.Algorithm DSA
public static final CryptUtils.Algorithm MD5_RSA
public static final CryptUtils.Algorithm SHA1_RSA
public static CryptUtils.Algorithm[] values()
for (CryptUtils.Algorithm c : CryptUtils.Algorithm.values()) System.out.println(c);
public static CryptUtils.Algorithm valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int getType()
public String getAlgorithm()
public String getRemark()
Copyright © 2023. All rights reserved.