Bouncy Castle Cryptography 1.26

org.bouncycastle.jce.spec
Class ECNamedCurveParameterSpec

java.lang.Object
  extended by java.security.spec.ECParameterSpec
      extended by org.bouncycastle.jce.spec.ECNamedCurveParameterSpec
All Implemented Interfaces:
java.security.spec.AlgorithmParameterSpec

public class ECNamedCurveParameterSpec
extends java.security.spec.ECParameterSpec

specification signifying that the curve parameters can also be refered to by name.


Constructor Summary
ECNamedCurveParameterSpec(java.lang.String name, ECCurve curve, ECPoint G, java.math.BigInteger n)
           
ECNamedCurveParameterSpec(java.lang.String name, ECCurve curve, ECPoint G, java.math.BigInteger n, java.math.BigInteger h)
           
ECNamedCurveParameterSpec(java.lang.String name, ECCurve curve, ECPoint G, java.math.BigInteger n, java.math.BigInteger h, byte[] seed)
           
ECNamedCurveParameterSpec(java.lang.String name, java.security.spec.EllipticCurve curve, java.security.spec.ECPoint G, java.math.BigInteger n)
           
ECNamedCurveParameterSpec(java.lang.String name, java.security.spec.EllipticCurve curve, java.security.spec.ECPoint G, java.math.BigInteger n, java.math.BigInteger h)
           
 
Method Summary
 java.lang.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
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ECNamedCurveParameterSpec

public ECNamedCurveParameterSpec(java.lang.String name,
                                 ECCurve curve,
                                 ECPoint G,
                                 java.math.BigInteger n)

ECNamedCurveParameterSpec

public ECNamedCurveParameterSpec(java.lang.String name,
                                 java.security.spec.EllipticCurve curve,
                                 java.security.spec.ECPoint G,
                                 java.math.BigInteger n)

ECNamedCurveParameterSpec

public ECNamedCurveParameterSpec(java.lang.String name,
                                 ECCurve curve,
                                 ECPoint G,
                                 java.math.BigInteger n,
                                 java.math.BigInteger h)

ECNamedCurveParameterSpec

public ECNamedCurveParameterSpec(java.lang.String name,
                                 java.security.spec.EllipticCurve curve,
                                 java.security.spec.ECPoint G,
                                 java.math.BigInteger n,
                                 java.math.BigInteger h)

ECNamedCurveParameterSpec

public ECNamedCurveParameterSpec(java.lang.String name,
                                 ECCurve curve,
                                 ECPoint G,
                                 java.math.BigInteger n,
                                 java.math.BigInteger h,
                                 byte[] seed)
Method Detail

getName

public java.lang.String getName()
return the name of the curve the EC domain parameters belong to.


Bouncy Castle Cryptography 1.26