FileDocCategorySizeDatePackage
ECGenParameterSpec.javaAPI DocAndroid 1.5 API1964Wed May 06 22:41:06 BST 2009java.security.spec

ECGenParameterSpec

public class ECGenParameterSpec extends Object implements AlgorithmParameterSpec
The parameter specification used to generate elliptic curve domain parameters.
since
Android 1.0

Fields Summary
private final String
name
Constructors Summary
public ECGenParameterSpec(String name)
Creates a new {@code ECGenParameterSpec} with the specified standard or predefined name of the to-be-generated domain parameter.

param
name the name of the elliptic curve domain parameter.
since
Android 1.0

        this.name = name;
        if (this.name == null) {
            throw new NullPointerException(Messages.getString("security.83", "name")); //$NON-NLS-1$ //$NON-NLS-2$
        }
    
Methods Summary
public java.lang.StringgetName()
Returns the name (standard or predefined) of the to-be-generated elliptic curve domain parameter.

return
the name
since
Android 1.0

        return name;