| Package | Description |
|---|---|
| com.entrust.toolkit.security.arithmetic.groups.ellipticCurve |
Contains legacy classes for working with the mathematical structures
that underlie elliptic curve cryptography; use classes from
com.entrust.toolkit.security.crypto.ec instead. |
| com.entrust.toolkit.security.provider |
Contains Entrust's JCA cryptographic service provider (CSP)
implementation and initialization mechanism, various cryptographic
algorithms, and various cryptographic key and parameter representations.
|
| Modifier and Type | Method and Description |
|---|---|
abstract EllipticCurve |
ECPoint.getCurve()
Deprecated.
Returns the curve linked to the calling point.
|
EllipticCurve |
ECPointGFp.getCurve()
Deprecated.
Returns the elliptic curve corresponding to the calling point.
|
EllipticCurve |
PolynomeECPoint.getCurve()
Deprecated.
Returns the curve to which the calling point belongs.
|
| Modifier and Type | Method and Description |
|---|---|
static ECPoint |
ECPointFactory.getInstance(ASN1Object object,
EllipticCurve curve)
Deprecated.
Parses an ASN.1 object to return an instance of
ECPoint. |
static ECPoint |
ECPointFactory.getInstance(EllipticCurve curve)
Deprecated.
Returns the point at infinity corresponding to the given curve.
|
static ECPoint |
ECPointFactory.getInstance(FieldElement x,
FieldElement y,
EllipticCurve curve)
Deprecated.
Returns an instance of the
ECPoint class given two field
elements and an elliptic curve as arguments. |
| Constructor and Description |
|---|
ECPointGFp(EllipticCurve curve)
Deprecated.
Produces the point at infinity.
|
ECPointGFp(FieldElement x,
FieldElement y,
EllipticCurve curve)
Deprecated.
Creates an instance of the
ECPointGFp given two field
elements and a curve as arguments. |
PolynomeECPoint(EllipticCurve curve)
Deprecated.
Creates the point at infinity on the elliptic curve
curve. |
PolynomeECPoint(Polynomial x,
Polynomial y,
EllipticCurve curve)
Deprecated.
Creates a point on the specified elliptic curve.
|
| Modifier and Type | Method and Description |
|---|---|
EllipticCurve |
ECParameters.getCurve()
Deprecated.
Returns the elliptic curve.
|