Creates a parameter specification for EC parameter
generation using a standard (or predefined) name
stdName in order to generate the corresponding
(precomputed) elliptic curve domain parameters.
Creates a parameter specification for EC parameter
generation using a standard (or predefined) name
stdName in order to generate the corresponding
(precomputed) elliptic curve domain parameters. For the
list of supported names, please consult the documentation
of provider whose implementation will be used.
Parameters
stdName
the standard name of the to-be-generated EC
domain parameters.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[],["The `ECGenParameterSpec` class defines parameters for generating elliptic curve (EC) domain parameters. It allows specification using a standard name (`stdName`) via its constructor, `ECGenParameterSpec(String stdName)`. This creates a parameter specification for generating precomputed EC domain parameters. The `getName()` method retrieves the standard name associated with these parameters. This class is immutable and used for generating EC parameters. It can throw a `NullPointerException` if `stdName` is null.\n"]]