public enum RSASignAlgorithms extends Enum<RSASignAlgorithms>
| 枚举常量和说明 |
|---|
MD5withRSA |
SHA1withRSA |
SHA256withRSA |
SHA384withRSA |
SHA512withRSA |
public static final RSASignAlgorithms MD5withRSA
public static final RSASignAlgorithms SHA1withRSA
public static final RSASignAlgorithms SHA256withRSA
public static final RSASignAlgorithms SHA384withRSA
public static final RSASignAlgorithms SHA512withRSA
public static RSASignAlgorithms[] values()
for (RSASignAlgorithms c : RSASignAlgorithms.values()) System.out.println(c);
public static RSASignAlgorithms valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.