FileDocCategorySizeDatePackage
ECNamedCurveParameterSpec.javaAPI DocAzureus 3.0.3.41093Tue Jun 08 05:12:56 BST 2004org.bouncycastle.jce.spec

ECNamedCurveParameterSpec

public class ECNamedCurveParameterSpec extends ECParameterSpec
specification signifying that the curve parameters can also be refered to by name.

Fields Summary
private String
name
Constructors Summary
public ECNamedCurveParameterSpec(String name, org.bouncycastle.math.ec.ECCurve curve, org.bouncycastle.math.ec.ECPoint G, BigInteger n)

        super(curve, G, n);

        this.name = name;
	
public ECNamedCurveParameterSpec(String name, org.bouncycastle.math.ec.ECCurve curve, org.bouncycastle.math.ec.ECPoint G, BigInteger n, BigInteger h)

        super(curve, G, n, h);

        this.name = name;
	
public ECNamedCurveParameterSpec(String name, org.bouncycastle.math.ec.ECCurve curve, org.bouncycastle.math.ec.ECPoint G, BigInteger n, BigInteger h, byte[] seed)

        super(curve, G, n, h, seed);

        this.name = name;
	
Methods Summary
public java.lang.StringgetName()
return the name of the curve the EC domain parameters belong to.

		return name;