| 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 | Class and Description |
|---|---|
class |
ECPointGFp
Deprecated.
since 8.0; use Entrust's new EC architecture
com.entrust.toolkit.security.crypto.ec instead |
class |
PolynomeECPoint
Deprecated.
since 8.0; use Entrust's new EC architecture
com.entrust.toolkit.security.crypto.ec instead |
| Modifier and Type | Method and Description |
|---|---|
abstract ECPoint |
ECPoint.add(ECPoint point)
Deprecated.
Returns the sum of this point and the given point on
the curve.
|
ECPoint |
ECPointGFp.add(ECPoint point)
Deprecated.
Returns the sum of the calling point and the given point on the curve.
|
ECPoint |
PolynomeECPoint.add(ECPoint p)
Deprecated.
Returns the sum of the calling point and the argument,
p. |
abstract ECPoint |
ECPoint.doublePoint()
Deprecated.
Returns the double point (two times the calling point) on the curve.
|
ECPoint |
ECPointGFp.doublePoint()
Deprecated.
Returns the double point of this point on the curve.
|
ECPoint |
PolynomeECPoint.doublePoint()
Deprecated.
Returns the calling point added to itself.
|
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. |
ECPoint |
EllipticCurve.getPointOfInfinity()
Deprecated.
Returns the point at infinity.
|
ECPoint |
ECPoint.multiply(java.math.BigInteger a)
Deprecated.
Returns the scalar product of the calling point and the given number on
the curve.
|
ECPoint |
PolynomeECPoint.multiply(java.math.BigInteger a)
Deprecated.
Returns the result of the scalar multiplication of the calling point by
a. |
| Modifier and Type | Method and Description |
|---|---|
abstract ECPoint |
ECPoint.add(ECPoint point)
Deprecated.
Returns the sum of this point and the given point on
the curve.
|
ECPoint |
ECPointGFp.add(ECPoint point)
Deprecated.
Returns the sum of the calling point and the given point on the curve.
|
ECPoint |
PolynomeECPoint.add(ECPoint p)
Deprecated.
Returns the sum of the calling point and the argument,
p. |
| Modifier and Type | Method and Description |
|---|---|
ECPoint |
ECParameters.getBase()
Deprecated.
Returns the base point.
|
ECPoint |
ECDSAPublicKey.getECPublicPoint()
Deprecated.
Returns the public value, the point on the curve.
|
| Constructor and Description |
|---|
ECDSAPublicKey(ECParameters params,
ECPoint point)
Deprecated.
Default public constructor that takes the parameter and the curve point
as arguments.
|
ECParameters(ECPoint base,
java.math.BigInteger order,
java.math.BigInteger cofactor)
Deprecated.
Constructor that requires an elliptic curve point, the order
of the curve, and the co-factor (can be
null)
as arguments. |