Package org.bouncycastle.jce.spec
Class ECNamedCurveSpec
- java.lang.Object
-
- java.security.spec.ECParameterSpec
-
- org.bouncycastle.jce.spec.ECNamedCurveSpec
-
- All Implemented Interfaces:
AlgorithmParameterSpec
public class ECNamedCurveSpec extends ECParameterSpec
specification signifying that the curve parameters can also be referred to by name.
-
-
Constructor Summary
Constructors Constructor Description ECNamedCurveSpec(String name, EllipticCurve curve, ECPoint g, BigInteger n)
ECNamedCurveSpec(String name, EllipticCurve curve, ECPoint g, BigInteger n, BigInteger h)
ECNamedCurveSpec(String name, ECCurve curve, ECPoint g, BigInteger n)
ECNamedCurveSpec(String name, ECCurve curve, ECPoint g, BigInteger n, BigInteger h)
ECNamedCurveSpec(String name, ECCurve curve, ECPoint g, BigInteger n, BigInteger h, byte[] seed)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
return the name of the curve the EC domain parameters belong to.-
Methods inherited from class java.security.spec.ECParameterSpec
getCofactor, getCurve, getGenerator, getOrder
-
-
-
-
Constructor Detail
-
ECNamedCurveSpec
public ECNamedCurveSpec(String name, ECCurve curve, ECPoint g, BigInteger n)
-
ECNamedCurveSpec
public ECNamedCurveSpec(String name, EllipticCurve curve, ECPoint g, BigInteger n)
-
ECNamedCurveSpec
public ECNamedCurveSpec(String name, ECCurve curve, ECPoint g, BigInteger n, BigInteger h)
-
ECNamedCurveSpec
public ECNamedCurveSpec(String name, EllipticCurve curve, ECPoint g, BigInteger n, BigInteger h)
-
ECNamedCurveSpec
public ECNamedCurveSpec(String name, ECCurve curve, ECPoint g, BigInteger n, BigInteger h, byte[] seed)
-
-
Method Detail
-
getName
public String getName()
return the name of the curve the EC domain parameters belong to.
-
-