Class ECGenParameterSpec
java.lang.Object
java.security.spec.NamedParameterSpec
java.security.spec.ECGenParameterSpec
- All Implemented Interfaces:
AlgorithmParameterSpec
This immutable class specifies the set of parameters used for
generating elliptic curve (EC) domain parameters.
- Since:
- 1.5
- See Also:
-
Field Summary
Fields declared in class NamedParameterSpec
ED25519, ED448, ML_DSA_44, ML_DSA_65, ML_DSA_87, ML_KEM_1024, ML_KEM_512, ML_KEM_768, X25519, X448Modifier and TypeFieldDescriptionstatic final NamedParameterSpecThe Ed25519 parametersstatic final NamedParameterSpecThe Ed448 parametersstatic final NamedParameterSpecThe ML-DSA-44 parametersstatic final NamedParameterSpecThe ML-DSA-65 parametersstatic final NamedParameterSpecThe ML-DSA-87 parametersstatic final NamedParameterSpecThe ML-KEM-1024 parametersstatic final NamedParameterSpecThe ML-KEM-512 parametersstatic final NamedParameterSpecThe ML-KEM-768 parametersstatic final NamedParameterSpecThe X25519 parametersstatic final NamedParameterSpecThe X448 parameters -
Constructor Summary
ConstructorsConstructorDescriptionECGenParameterSpec(String stdName) Creates a parameter specification for EC parameter generation using a standard (or predefined) namestdNamein order to generate the corresponding (precomputed) elliptic curve domain parameters. -
Method Summary
Methods declared in class NamedParameterSpec
getNameMethods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(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 voidwait(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.
-
Constructor Details
-
ECGenParameterSpec
Creates a parameter specification for EC parameter generation using a standard (or predefined) namestdNamein order to generate the corresponding (precomputed) elliptic curve domain parameters. For the list of supported names, please consult the documentation of the provider whose implementation will be used.- Parameters:
stdName- the standard name of the to-be-generated EC domain parameters. See the ECGenParameterSpec section in the Java Security Standard Algorithm Names Specification for information about standard names.- Throws:
NullPointerException- ifstdNameis null.- External Specifications
-