ECNamedCurveParameterSpecpublic 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.String | getName()return the name of the curve the EC domain parameters belong to.
return name;
|
|