Package de.mhus.lib.core.crypt
Enum MBouncy.ECC_SPEC
- java.lang.Object
-
- java.lang.Enum<MBouncy.ECC_SPEC>
-
- de.mhus.lib.core.crypt.MBouncy.ECC_SPEC
-
- All Implemented Interfaces:
Serializable,Comparable<MBouncy.ECC_SPEC>
- Enclosing class:
- MBouncy
public static enum MBouncy.ECC_SPEC extends Enum<MBouncy.ECC_SPEC>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PRIME192V1PRIME192V2PRIME192V3PRIME239V1PRIME239V2PRIME239V3PRIME256V1SECP192K1SECP192R1SECP244K1SECP244R1SECP256K1SECP256R1SECP384R1SECP521R1
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MBouncy.ECC_SPECvalueOf(String name)Returns the enum constant of this type with the specified name.static MBouncy.ECC_SPEC[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRIME192V1
public static final MBouncy.ECC_SPEC PRIME192V1
-
PRIME192V2
public static final MBouncy.ECC_SPEC PRIME192V2
-
PRIME192V3
public static final MBouncy.ECC_SPEC PRIME192V3
-
PRIME239V1
public static final MBouncy.ECC_SPEC PRIME239V1
-
PRIME239V2
public static final MBouncy.ECC_SPEC PRIME239V2
-
PRIME239V3
public static final MBouncy.ECC_SPEC PRIME239V3
-
PRIME256V1
public static final MBouncy.ECC_SPEC PRIME256V1
-
SECP192K1
public static final MBouncy.ECC_SPEC SECP192K1
-
SECP192R1
public static final MBouncy.ECC_SPEC SECP192R1
-
SECP244K1
public static final MBouncy.ECC_SPEC SECP244K1
-
SECP244R1
public static final MBouncy.ECC_SPEC SECP244R1
-
SECP256K1
public static final MBouncy.ECC_SPEC SECP256K1
-
SECP256R1
public static final MBouncy.ECC_SPEC SECP256R1
-
SECP384R1
public static final MBouncy.ECC_SPEC SECP384R1
-
SECP521R1
public static final MBouncy.ECC_SPEC SECP521R1
-
-
Method Detail
-
values
public static MBouncy.ECC_SPEC[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MBouncy.ECC_SPEC c : MBouncy.ECC_SPEC.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MBouncy.ECC_SPEC valueOf(String name)
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
-
-