KeyCurveName Class
- java.
lang. Object - com.
azure. core. util. ExpandableStringEnum<T> - com.
azure. security. keyvault. keys. models. KeyCurveName
- com.
- com.
public final class KeyCurveName
extends ExpandableStringEnum<KeyCurveName>
Elliptic curve name.
Field Summary
Modifier and Type | Field and Description |
---|---|
static final
Key |
P_256
The NIST P-256 elliptic curve, AKA SECG curve SECP256R1. |
static final
Key |
P_256K
The SECG SECP256K1 elliptic curve. |
static final
Key |
P_384
The NIST P-384 elliptic curve, AKA SECG curve SECP384R1. |
static final
Key |
P_521
The NIST P-521 elliptic curve, AKA SECG curve SECP521R1. |
Constructor Summary
Constructor | Description |
---|---|
KeyCurveName() |
Deprecated
Use the fromString(String name) factory method.
Creates a new instance of Key |
Method Summary
Modifier and Type | Method and Description |
---|---|
static
Key |
fromString(String name)
Creates or finds a Key |
static
Collection<Key |
values()
Gets known Key |
Methods inherited from ExpandableStringEnum
Methods inherited from java.lang.Object
Field Details
P_256
public static final KeyCurveName P_256
The NIST P-256 elliptic curve, AKA SECG curve SECP256R1.
P_256K
public static final KeyCurveName P_256K
The SECG SECP256K1 elliptic curve.
P_384
public static final KeyCurveName P_384
The NIST P-384 elliptic curve, AKA SECG curve SECP384R1.
P_521
public static final KeyCurveName P_521
The NIST P-521 elliptic curve, AKA SECG curve SECP521R1.
Constructor Details
KeyCurveName
@Deprecated
public KeyCurveName()
Deprecated
Creates a new instance of KeyCurveName value.
Method Details
fromString
public static KeyCurveName fromString(String name)
Creates or finds a KeyCurveName from its string representation.
Parameters:
Returns:
values
public static Collection
Gets known KeyCurveName values.
Returns:
Applies to
Azure SDK for Java