Uses of Class
org.gudy.bouncycastle.math.ec.ECCurve
-
Packages that use ECCurve Package Description org.gudy.bouncycastle.asn1.x9 Support classes useful for encoding and supporting X9.62 elliptic curve.org.gudy.bouncycastle.crypto.params Classes for parameter objects for ciphers and generators.org.gudy.bouncycastle.jce.spec org.gudy.bouncycastle.math.ec -
-
Uses of ECCurve in org.gudy.bouncycastle.asn1.x9
Fields in org.gudy.bouncycastle.asn1.x9 declared as ECCurve Modifier and Type Field Description (package private) static ECCurve
X962NamedCurves. cFp192v1
(package private) static ECCurve
X962NamedCurves. cFp192v2
(package private) static ECCurve
X962NamedCurves. cFp192v3
(package private) static ECCurve
X962NamedCurves. cFp239v1
(package private) static ECCurve
X962NamedCurves. cFp239v2
(package private) static ECCurve
X962NamedCurves. cFp239v3
(package private) static ECCurve
X962NamedCurves. cFp256v1
private ECCurve
X9Curve. curve
private ECCurve
X9ECParameters. curve
Methods in org.gudy.bouncycastle.asn1.x9 that return ECCurve Modifier and Type Method Description ECCurve
X9Curve. getCurve()
ECCurve
X9ECParameters. getCurve()
Methods in org.gudy.bouncycastle.asn1.x9 with parameters of type ECCurve Modifier and Type Method Description int
X9IntegerConverter. getByteLength(ECCurve c)
Constructors in org.gudy.bouncycastle.asn1.x9 with parameters of type ECCurve Constructor Description 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 org.gudy.bouncycastle.crypto.params
Fields in org.gudy.bouncycastle.crypto.params declared as ECCurve Modifier and Type Field Description (package private) ECCurve
ECDomainParameters. curve
Methods in org.gudy.bouncycastle.crypto.params that return ECCurve Modifier and Type Method Description ECCurve
ECDomainParameters. getCurve()
Constructors in org.gudy.bouncycastle.crypto.params with parameters of type ECCurve Constructor Description ECDomainParameters(ECCurve curve, ECPoint G, java.math.BigInteger n)
ECDomainParameters(ECCurve curve, ECPoint G, java.math.BigInteger n, java.math.BigInteger h)
ECDomainParameters(ECCurve curve, ECPoint G, java.math.BigInteger n, java.math.BigInteger h, byte[] seed)
-
Uses of ECCurve in org.gudy.bouncycastle.jce.spec
Fields in org.gudy.bouncycastle.jce.spec declared as ECCurve Modifier and Type Field Description private ECCurve
ECParameterSpec. curve
Methods in org.gudy.bouncycastle.jce.spec that return ECCurve Modifier and Type Method Description ECCurve
ECParameterSpec. getCurve()
return the curve along which the base point lies.Constructors in org.gudy.bouncycastle.jce.spec with parameters of type ECCurve Constructor Description 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)
ECParameterSpec(ECCurve curve, ECPoint G, java.math.BigInteger n)
ECParameterSpec(ECCurve curve, ECPoint G, java.math.BigInteger n, java.math.BigInteger h)
ECParameterSpec(ECCurve curve, ECPoint G, java.math.BigInteger n, java.math.BigInteger h, byte[] seed)
-
Uses of ECCurve in org.gudy.bouncycastle.math.ec
Subclasses of ECCurve in org.gudy.bouncycastle.math.ec Modifier and Type Class Description static class
ECCurve.F2m
Elliptic curves over F2m.static class
ECCurve.Fp
Elliptic curve over FpFields in org.gudy.bouncycastle.math.ec declared as ECCurve Modifier and Type Field Description (package private) ECCurve
ECPoint. curve
Methods in org.gudy.bouncycastle.math.ec that return ECCurve Modifier and Type Method Description ECCurve
ECPoint. getCurve()
Constructors in org.gudy.bouncycastle.math.ec with parameters of type ECCurve Constructor Description ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y)
F2m(ECCurve curve)
Deprecated.use ECCurve.getInfinity() Constructor for point at infinityF2m(ECCurve curve, ECFieldElement x, ECFieldElement y)
F2m(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression)
Fp(ECCurve curve, ECFieldElement x, ECFieldElement y)
Create a point which encodes with point compression.Fp(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression)
Create a point that encodes with or without point compresion.
-