EdDSAParameterSpec

public class EdDSAParameterSpec
extends Object implements AlgorithmParameterSpec

java.lang.Object
   ↳ java.security.spec.EdDSAParameterSpec


A class used to specify EdDSA signature and verification parameters. All algorithm modes in RFC 8032: Edwards-Curve Digital Signature Algorithm (EdDSA) can be specified using combinations of the settings in this class.

  • If prehash is true, then the mode is Ed25519ph or Ed448ph
  • Otherwise, if a context is present, the mode is Ed25519ctx or Ed448
  • Otherwise, the mode is Ed25519 or Ed448

Summary

Public constructors

EdDSAParameterSpec(boolean prehash)

Construct an EdDSAParameterSpec by specifying whether the prehash mode is used.

EdDSAParameterSpec(boolean prehash, byte[] context)

Construct an EdDSAParameterSpec by specifying a context and whether the prehash mode is used.

Public methods

Optional<byte[]> getContext()

Get the context that the signature will use.

boolean isPrehash()

Get whether the prehash mode is specified.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

EdDSAParameterSpec

Added in API level 35
public EdDSAParameterSpec (boolean prehash)

Construct an EdDSAParameterSpec by specifying whether the prehash mode is used. No context is provided so this constructor specifies a mode in which the context is null. Note that this mode may be different than the mode in which an empty array is used as the context.

Parameters
prehash boolean: whether the prehash mode is specified.

EdDSAParameterSpec

Added in API level 35
public EdDSAParameterSpec (boolean prehash, 
                byte[] context)

Construct an EdDSAParameterSpec by specifying a context and whether the prehash mode is used. The context may not be null, but it may be an empty array. The mode used when the context is an empty array may not be the same as the mode used when the context is absent.

Parameters
prehash boolean: whether the prehash mode is specified.

context byte: the context is copied and bound to the signature.

Throws
NullPointerException if context is null.
InvalidParameterException if context length is greater than 255.

Public methods

getContext

Added in API level 35
public Optional<byte[]> getContext ()

Get the context that the signature will use.

Returns
Optional<byte[]> Optional contains a copy of the context or empty if context is null.

isPrehash

Added in API level 35
public boolean isPrehash ()

Get whether the prehash mode is specified.

Returns
boolean whether the prehash mode is specified.