public enum AlgorithmEmployed extends java.lang.Enum<AlgorithmEmployed>
| Enum Constant and Description |
|---|
PRIME256V1
Supported prime256v1 algorithm curve
|
SECP256K1
Supported SECP256k1 algorithm curve
|
SECP256R1
Supported SECP256r1 (prime256v1) algorithm curve
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getString()
Gets string value of AlgorithmEmployed's enum
|
static AlgorithmEmployed |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmEmployed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmEmployed SECP256R1
public static final AlgorithmEmployed SECP256K1
public static final AlgorithmEmployed PRIME256V1
public static AlgorithmEmployed[] values()
for (AlgorithmEmployed c : AlgorithmEmployed.values()) System.out.println(c);
public static AlgorithmEmployed valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getString()