Class EdECPrivateKeySpec
java.lang.Object
java.security.spec.EdECPrivateKeySpec
- All Implemented Interfaces:
KeySpec
public final class EdECPrivateKeySpec extends Object implements KeySpec
A class representing elliptic curve private keys as defined in RFC 8032: Edwards-Curve Digital Signature Algorithm (EdDSA), including the curve and other algorithm parameters. The private key is a bit string represented using a byte array. This class only supports bit string lengths that are a multiple of 8.
- Since:
- 15
Constructor Summary
Constructor | Description |
---|---|
EdECPrivateKeySpec |
Construct a private key spec using the supplied parameters and bit string. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
byte[] |
getBytes() |
Get the byte array representing the private key. |
NamedParameterSpec |
getParams() |
Get the algorithm parameters that define the curve and other settings. |
Constructor Details
EdECPrivateKeySpec
public EdECPrivateKeySpec(NamedParameterSpec params, byte[] bytes)
Construct a private key spec using the supplied parameters and bit string.
- Parameters:
-
params
- the algorithm parameters. -
bytes
- the key as a byte array. This array is copied to protect against subsequent modification. - Throws:
-
NullPointerException
- ifparams
orbytes
is null.
Method Details
getParams
public NamedParameterSpec getParams()
Get the algorithm parameters that define the curve and other settings.
- Returns:
- the algorithm parameters.
getBytes
public byte[] getBytes()
Get the byte array representing the private key. A new copy of the array is returned each time this method is called.
- Returns:
- the private key as a byte array.
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/security/spec/EdECPrivateKeySpec.html