Uses of Class
com.digt.trusted.math.ec.ECCurve

Packages that use ECCurve
com.digt.trusted.asn1.x9 Support classes useful for encoding and supporting X9.62 elliptic curve. 
com.digt.trusted.math.ec   
 

Uses of ECCurve in com.digt.trusted.asn1.x9
 

Methods in com.digt.trusted.asn1.x9 that return ECCurve
 ECCurve X9Curve.getCurve()
           
 ECCurve X9ECParameters.getCurve()
           
 

Constructors in com.digt.trusted.asn1.x9 with parameters of type ECCurve
X9Curve(ECCurve curve)
           
X9Curve(ECCurve curve, byte[] seed)
           
X9ECParameters(ECCurve curve, ECPoint g, java.math.BigInteger n)
           
X9ECParameters(ECCurve curve, ECPoint g, java.math.BigInteger n, java.math.BigInteger h)
           
X9ECParameters(ECCurve curve, ECPoint g, java.math.BigInteger n, java.math.BigInteger h, byte[] seed)
           
X9ECPoint(ECCurve c, ASN1OctetString s)
           
 

Uses of ECCurve in com.digt.trusted.math.ec
 

Subclasses of ECCurve in com.digt.trusted.math.ec
static class ECCurve.F2m
          Elliptic curves over F2m
static class ECCurve.Fp
          Elliptic curve over Fp
 

Methods in com.digt.trusted.math.ec that return ECCurve
 ECCurve ECPoint.getCurve()
           
 

Constructors in com.digt.trusted.math.ec with parameters of type ECCurve
ECPoint.F2m(ECCurve curve, ECFieldElement x, ECFieldElement y)
           
ECPoint.Fp(ECCurve curve, ECFieldElement x, ECFieldElement y)
          Create a point which encodes with point compression.
ECPoint.Fp(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression)
          Create a point that encodes with or without point compresion.
ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y)