Class KeyCurveName
java.lang.Object
com.azure.core.util.ExpandableStringEnum<KeyCurveName>
com.azure.security.keyvault.keys.models.KeyCurveName
- All Implemented Interfaces:
com.azure.core.util.ExpandableEnum<String>
Elliptic curve name.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final KeyCurveName
The NIST P-256 elliptic curve, AKA SECG curve SECP256R1.static final KeyCurveName
The SECG SECP256K1 elliptic curve.static final KeyCurveName
The NIST P-384 elliptic curve, AKA SECG curve SECP384R1.static final KeyCurveName
The NIST P-521 elliptic curve, AKA SECG curve SECP521R1. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic KeyCurveName
fromString
(String name) Creates or finds a KeyCurveName from its string representation.static Collection
<KeyCurveName> values()
Gets known KeyCurveName values.Methods inherited from class com.azure.core.util.ExpandableStringEnum
equals, fromString, getValue, hashCode, toString, values
-
Field Details
-
P_256
The NIST P-256 elliptic curve, AKA SECG curve SECP256R1. -
P_384
The NIST P-384 elliptic curve, AKA SECG curve SECP384R1. -
P_521
The NIST P-521 elliptic curve, AKA SECG curve SECP521R1. -
P_256K
The SECG SECP256K1 elliptic curve.
-
-
Constructor Details
-
KeyCurveName
Deprecated.Use thefromString(String)
factory method.Creates a new instance of KeyCurveName value.
-
-
Method Details
-
fromString
Creates or finds a KeyCurveName from its string representation.- Parameters:
name
- a name to look for.- Returns:
- the corresponding KeyCurveName.
-
values
Gets known KeyCurveName values.- Returns:
- known KeyCurveName values.
-
fromString(String)
factory method.