public enum Algorithm extends Enum<Algorithm>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
static Algorithm |
fromName(String name) |
String |
getName() |
int |
getSaltLength() |
static Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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
public String algorithm
public static Algorithm[] values()
for (Algorithm c : Algorithm.values()) System.out.println(c);
public static Algorithm valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getName()
public int getSaltLength()
Copyright © 2021. All rights reserved.