Enum EllipticCurve
- java.lang.Object
-
- java.lang.Enum<EllipticCurve>
-
- org.pgpainless.key.generation.type.ecc.EllipticCurve
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EllipticCurve>
public enum EllipticCurve extends java.lang.Enum<EllipticCurve>
Elliptic curves for use withECDH/ECDSA. For curve25519 related curve definitions seeXDHSpecandEdDSACurve.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _BRAINPOOLP256R1_BRAINPOOLP384R1_BRAINPOOLP512R1_P256_P384_P521_SECP256K1
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBitStrength()java.lang.StringgetName()static EllipticCurvevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EllipticCurve[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_P256
public static final EllipticCurve _P256
-
_P384
public static final EllipticCurve _P384
-
_P521
public static final EllipticCurve _P521
-
_SECP256K1
public static final EllipticCurve _SECP256K1
-
_BRAINPOOLP256R1
public static final EllipticCurve _BRAINPOOLP256R1
-
_BRAINPOOLP384R1
public static final EllipticCurve _BRAINPOOLP384R1
-
_BRAINPOOLP512R1
public static final EllipticCurve _BRAINPOOLP512R1
-
-
Method Detail
-
values
public static EllipticCurve[] 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 (EllipticCurve c : EllipticCurve.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EllipticCurve valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getName
public java.lang.String getName()
-
getBitStrength
public int getBitStrength()
-
-