blob: a5dd319c3be7a039725e1ff2f836df96afc0a49f [file] [log] [blame]
package org.bouncycastle.jce.spec;
import java.security.spec.AlgorithmParameterSpec;
/**
* Named curve generation spec
* <p>
* If you are using JDK 1.5 you should be looking at ECGenParameterSpec.
*/
public class ECNamedCurveGenParameterSpec
implements AlgorithmParameterSpec
{
private String name;
public ECNamedCurveGenParameterSpec(
String name)
{
this.name = name;
}
/**
* return the name of the curve the EC domain parameters belong to.
*/
public String getName()
{
return name;
}
}