Enum VaultEcdsaKeyAlgorithm
java.lang.Object
java.lang.Enum<VaultEcdsaKeyAlgorithm>
org.honton.chas.jca.vault.provider.keygen.ecdsa.VaultEcdsaKeyAlgorithm
- All Implemented Interfaces:
Serializable,Comparable<VaultEcdsaKeyAlgorithm>,AlgorithmParameterSpec,VaultParameterSpec
public enum VaultEcdsaKeyAlgorithm
extends Enum<VaultEcdsaKeyAlgorithm>
implements VaultParameterSpec
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbooleanmatches(ECParameterSpec spec) static VaultEcdsaKeyAlgorithmReturns the enum constant of this type with the specified name.static VaultEcdsaKeyAlgorithm[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface org.honton.chas.jca.vault.provider.keygen.VaultParameterSpec
getKeyType
-
Enum Constant Details
-
ECDSA_P256
-
ECDSA_P384
-
ECDSA_P521
-
-
Field Details
-
curve
-
g
-
n
-
h
public final int h
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
matches
-