ECGenParameterSpecpublic class ECGenParameterSpec extends Object implements AlgorithmParameterSpecThis immutable class specifies the set of parameters used for
generating elliptic curve (EC) domain parameters. |
Fields Summary |
---|
private String | name |
Constructors Summary |
---|
public ECGenParameterSpec(String stdName)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.
if (stdName == null) {
throw new NullPointerException("stdName is null");
}
this.name = stdName;
|
Methods Summary |
---|
public java.lang.String | getName()Returns the standard or predefined name of the
to-be-generated EC domain parameters.
return name;
|
|