FileDocCategorySizeDatePackage
ECGenParameterSpec.javaAPI DocJava SE 5 API1474Fri Aug 26 14:57:18 BST 2005java.security.spec

ECGenParameterSpec

public class ECGenParameterSpec extends Object implements AlgorithmParameterSpec
This immutable class specifies the set of parameters used for generating elliptic curve (EC) domain parameters.
see
AlgorithmParameterSpec
author
Valerie Peng
version
1.3, 12/19/03
since
1.5

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.

param
stdName the standard name of the to-be-generated EC domain parameters.
exception
NullPointerException if stdName is null.

	if (stdName == null) {
	    throw new NullPointerException("stdName is null");
        }
	this.name = stdName;
    
Methods Summary
public java.lang.StringgetName()
Returns the standard or predefined name of the to-be-generated EC domain parameters.

return
the standard or predefined name.

	return name;