public final class XECUtils extends Object
Modifier and Type | Method and Description |
---|---|
static SupportedEllipticCurve |
curve(Key key)
Returns the curve that this XECKey is for.
|
static boolean |
isXDHSupported()
Indicates whether XDH (Diffie-Hellman using the X25519/X448 curves) is supported by this JDK.
|
static boolean |
isXecKey(Key key)
Determines whether the given key is a XECKey.
|
static AlgorithmParameterSpec |
namedCurveParams(Key key)
Returns the NamedCurveParameters for this key.
|
static AlgorithmParameterSpec |
namedCurveParams(String namedCurve,
AlgorithmParameterSpec defaultSpec)
Tries to construct a NamedParameterSpec for a given curve name (currently either "X25519" or "X448").
|
static byte[] |
privateScalarValue(PrivateKey privateKey)
Returns the private scalar value for the given XECPrivateKey.
|
static byte[] |
publicUCoordinate(PublicKey publicKey)
Returns the little-endian bytes of the public u-coordinate of the given XECPublicKey.
|
static PrivateKey |
xecPrivateKey(SupportedEllipticCurve curve,
byte[] privateValue)
Converts a private scalar byte value into a XECPrivateKey on the given curve.
|
static PublicKey |
xecPublicKey(SupportedEllipticCurve curve,
BigInteger uCoord)
Converts a public u-coordinate into a XECPublicKey on the given curve.
|
public static boolean isXDHSupported()
public static boolean isXecKey(Key key)
key
- the key.public static PrivateKey xecPrivateKey(SupportedEllipticCurve curve, byte[] privateValue)
curve
- the curve. Must be either X25519 or X448.privateValue
- the private scalar value.UnsupportedOperationException
- if XDH support is not available.IllegalArgumentException
- if the curve is not X25519 or X448 or if there is a problem with the scalar.public static PublicKey xecPublicKey(SupportedEllipticCurve curve, BigInteger uCoord)
curve
- the curve. Must be either X25519 or X448.uCoord
- the public u coordinate value.UnsupportedOperationException
- if XDH support is not available.IllegalArgumentException
- if the curve is not X25519 or X448 or there is a problem with the u-coordinate.public static byte[] publicUCoordinate(PublicKey publicKey)
publicKey
- the public key.IllegalStateException
- if XDH support is not available.IllegalArgumentException
- if the key is not a XECPublicKey.public static byte[] privateScalarValue(PrivateKey privateKey)
privateKey
- the private key.IllegalStateException
- if XDH support is not available.IllegalArgumentException
- if the key is not a XECPrivateKey.public static SupportedEllipticCurve curve(Key key)
key
- the key. Must be a XECKey.IllegalStateException
- if XDH support is not available.IllegalArgumentException
- if the key is not a XECKey.public static AlgorithmParameterSpec namedCurveParams(Key key)
key
- the key. Must be a XECKey.IllegalArgumentException
- if the key is not a XECKey.IllegalStateException
- if XDH support is not available.public static AlgorithmParameterSpec namedCurveParams(String namedCurve, AlgorithmParameterSpec defaultSpec)
namedCurve
- the named curve.defaultSpec
- the default parameter spec to use if XDH is not available.Copyright © 2010-2018, ForgeRock All Rights Reserved.