public enum Algorithm extends Enum<Algorithm>
| Enum Constant and Description |
|---|
HS256
HMAC using SHA-256
|
HS384
HMAC using SHA-384
|
HS512
HMAC using SHA-512
|
none
No digital signature or MAC performed.
|
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 |
|---|---|
String |
getName() |
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 HS256
public static final Algorithm HS384
public static final Algorithm HS512
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()
Copyright © 2017. All rights reserved.