public enum SupportedEllipticCurve extends Enum<SupportedEllipticCurve>
Enum Constant and Description |
---|
ED25519
The Ed25519 curve used for EdDSA signatures.
|
P256
NIST P-256.
|
P384
NIST P-384.
|
P521
NIST P-521.
|
X25519
Curve25519 when used for ECDH-ES key agreement (X25519).
|
X448
Curve448 when used for ECDH-ES key agreement (X448).
|
Modifier and Type | Method and Description |
---|---|
static SupportedEllipticCurve |
forKey(Key key)
Determines the standard curve that matches the given (private or public) key.
|
static SupportedEllipticCurve |
forKey(Key key,
KeyUse use)
Determines the standard curve that matches the given (private or public) key.
|
static SupportedEllipticCurve |
forName(String curveName)
Returns the curve parameters for the given standard curve name (crv claim in a JWK).
|
static SupportedEllipticCurve |
forSignature(byte[] signature)
Determines the supported curve parameters for the given ECDSA signature.
|
static SupportedEllipticCurve |
forSignature(byte[] signature,
JwsAlgorithmType type)
Determines the supported curve parameters for the given signature.
|
KeyType |
getJwkType()
Returns the type of JWK that is used for this elliptic curve.
|
JwsAlgorithm |
getJwsAlgorithm()
Returns the JwsAlgorithm that corresponds to this elliptic curve.
|
String |
getKeyAgreementAlgorithm()
Determines the Java KeyAgreement algorithm to use for this curve.
|
String |
getKeyGenerationAlgorithm()
Determines the Java KeyPairGenerator algorithm to use for this curve.
|
AlgorithmParameterSpec |
getParameters()
Returns the parameters for the given elliptic curve.
|
int |
getSignatureSize()
Returns the size of the signature produced by this curve in octets.
|
String |
getStandardName()
Return the name of the curve as used for the "crv" claim in a JWK.
|
boolean |
isXDHCurve()
Determines whether this curve is intended for use with X-Diffie-Hellman (XDH) key agreement (X25519 or X448).
|
String |
toString() |
boolean |
validate(PublicKey publicKey)
Validates that the given public key is on this curve.
|
static SupportedEllipticCurve |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportedEllipticCurve[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedEllipticCurve P256
public static final SupportedEllipticCurve P384
public static final SupportedEllipticCurve P521
public static final SupportedEllipticCurve X25519
public static final SupportedEllipticCurve X448
public static final SupportedEllipticCurve ED25519
public static SupportedEllipticCurve[] values()
for (SupportedEllipticCurve c : SupportedEllipticCurve.values()) System.out.println(c);
public static SupportedEllipticCurve valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic AlgorithmParameterSpec getParameters()
public String getStandardName()
public int getSignatureSize()
public JwsAlgorithm getJwsAlgorithm()
public String toString()
toString
in class Enum<SupportedEllipticCurve>
public static SupportedEllipticCurve forName(String curveName)
curveName
- the curve name.IllegalArgumentException
- if the curve name is not supported.public static SupportedEllipticCurve forKey(Key key, KeyUse use)
key
- the private or public key to determine the curve for.use
- the intended use of the curve.IllegalArgumentException
- if the key does not match any supported curve parameters.public static SupportedEllipticCurve forKey(Key key)
key
- the private or public key to determine the curve for.IllegalArgumentException
- if the key does not match any supported curve parameters.public static SupportedEllipticCurve forSignature(byte[] signature, JwsAlgorithmType type)
signature
- the signature to match.type
- the type of signature.IllegalArgumentException
- if the signature does not match any supported curve parameters.public static SupportedEllipticCurve forSignature(byte[] signature)
signature
- the signature to match.IllegalArgumentException
- if the signature does not match any supported curve parameters.public KeyType getJwkType()
public boolean validate(PublicKey publicKey)
publicKey
- the public key to validate.public String getKeyAgreementAlgorithm()
public String getKeyGenerationAlgorithm()
public boolean isXDHCurve()
Copyright © 2010-2018, ForgeRock All Rights Reserved.