public enum Algorithm extends Enum<Algorithm>
| 枚举常量和说明 |
|---|
ES256
ECDSA using P-256 and SHA-256
OID: 1.2.840.10045.3.1.7
- prime256v1 / secp256r1
|
ES384
ECDSA using P-384 and SHA-384
OID: 1.3.132.0.34
- secp384r1 / secp384r1
|
ES512
ECDSA using P-521 and SHA-512
OID: 1.3.132.0.35
- prime521v1 / secp521r1
|
HS256
HMAC using SHA-256
|
HS384
HMAC using SHA-384
|
HS512
HMAC using SHA-512
|
NONE
No digital signature or MAC performed.
|
PS256
RSASSA-PSS using SHA-256 and MGF1 with SHA-256
- SHA256withRSAandMGF1
|
PS384
RSASSA-PSS using SHA-384 and MGF1 with SHA-384
- SHA384withRSAandMGF1
|
PS512
RSASSA-PSS using SHA-512 and MGF1 with SHA-512
- SHA512withRSAandMGF1
|
RS256
RSASSA-PKCS1-v1_5 using SHA-256
|
RS384
RSASSA-PKCS1-v1_5 using SHA-384
|
RS512
RSASSA-PKCS1-v1_5 using SHA-512
|
| 限定符和类型 | 方法和说明 |
|---|---|
static Algorithm |
fromName(String name) |
String |
getName() |
int |
getSaltLength() |
static Algorithm |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static Algorithm[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final Algorithm ES256
public static final Algorithm ES384
public static final Algorithm ES512
public static final Algorithm HS256
public static final Algorithm HS384
public static final Algorithm HS512
public static final Algorithm PS256
public static final Algorithm PS384
public static final Algorithm PS512
public static final Algorithm RS256
public static final Algorithm RS384
public static final Algorithm RS512
public static final Algorithm NONE
private String algorithm
public static Algorithm[] values()
for (Algorithm c : Algorithm.values()) System.out.println(c);
public static Algorithm valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getName()
public int getSaltLength()
Copyright © 2023. All rights reserved.