| Package | Description |
|---|---|
| com.entrust.toolkit.security.arithmetic.fields |
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.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. |
| Modifier and Type | Class and Description |
|---|---|
class |
GFpElement
Deprecated.
since 8.0; use Entrust's new EC architecture
com.entrust.toolkit.security.crypto.ec instead |
class |
Polynomial
Deprecated.
since 8.0; use Entrust's new EC architecture
com.entrust.toolkit.security.crypto.ec instead |
| Modifier and Type | Method and Description |
|---|---|
FieldElement |
FieldElement.add(FieldElement operand)
Deprecated.
Adds
operand to the calling element and returns the result. |
FieldElement |
GFpElement.add(FieldElement element)
Deprecated.
Returns the field element that is the result of adding
this to the given summand element. |
FieldElement |
Polynomial.add(FieldElement b)
Deprecated.
Adds th e argument,
b, to the calling element and returns
the result. |
FieldElement |
FieldElement.exponentiate(java.math.BigInteger exponent)
Deprecated.
Multiplies the calling element
exponent by itself and
returns the result. |
FieldElement |
GFpElement.exponentiate(java.math.BigInteger a)
Deprecated.
Exponentiates this with the given value.
|
FieldElement |
Polynomial.exponentiate(java.math.BigInteger b)
Deprecated.
Multiplies the calling by itself
b times and returns
the result. |
static FieldElement |
FieldElementFactory.getInstance(ASN1Object object,
Field field)
Deprecated.
Returns a field element as an instance of the
FieldElement
interface. |
static FieldElement |
FieldElementFactory.getInstance(byte[] value,
Field field)
Deprecated.
Returns a field element as an instance of the
FieldElement
interface. |
FieldElement |
Field.getOneElement()
Deprecated.
Returns the One Element.
|
FieldElement |
GFp.getOneElement()
Deprecated.
Returns the One Element.
|
FieldElement |
PolynomialField.getOneElement()
Deprecated.
Returns the neutral element (or identity element) with respect to multiplication.
|
FieldElement |
Field.getZeroElement()
Deprecated.
Returns the Zero Element.
|
FieldElement |
GFp.getZeroElement()
Deprecated.
Returns the Zero Element.
|
FieldElement |
PolynomialField.getZeroElement()
Deprecated.
Returns the neutral element (or identity element) with respect to addition.
|
FieldElement |
FieldElement.multiplicativeInverse()
Deprecated.
Returns the multiplicative inverse of this element in its field.
|
FieldElement |
GFpElement.multiplicativeInverse()
Deprecated.
Returns the multiplicative inverse element of
this. |
FieldElement |
Polynomial.multiplicativeInverse()
Deprecated.
Returns the multiplicative inverse of the calling element.
|
FieldElement |
FieldElement.multiply(FieldElement operand)
Deprecated.
Multiplies
operand by the calling element and returns
the result. |
FieldElement |
GFpElement.multiply(FieldElement element)
Deprecated.
Returns the field element that is the result of multiplying
element to this. |
FieldElement |
Polynomial.multiply(FieldElement b)
Deprecated.
Multiplies the argument,
b, by the calling element and
returns the result. |
FieldElement |
FieldElement.subtract(FieldElement operand)
Deprecated.
Subtracts
operand from the calling element and returns
the result. |
FieldElement |
GFpElement.subtract(FieldElement element)
Deprecated.
Returns the field element that is the result of subtracting
element from this. |
FieldElement |
Polynomial.subtract(FieldElement b)
Deprecated.
Subtracts the argument,
b, from the calling element and
returns the result. |
| Modifier and Type | Method and Description |
|---|---|
FieldElement |
FieldElement.add(FieldElement operand)
Deprecated.
Adds
operand to the calling element and returns the result. |
FieldElement |
GFpElement.add(FieldElement element)
Deprecated.
Returns the field element that is the result of adding
this to the given summand element. |
FieldElement |
Polynomial.add(FieldElement b)
Deprecated.
Adds th e argument,
b, to the calling element and returns
the result. |
FieldElement |
FieldElement.multiply(FieldElement operand)
Deprecated.
Multiplies
operand by the calling element and returns
the result. |
FieldElement |
GFpElement.multiply(FieldElement element)
Deprecated.
Returns the field element that is the result of multiplying
element to this. |
FieldElement |
Polynomial.multiply(FieldElement b)
Deprecated.
Multiplies the argument,
b, by the calling element and
returns the result. |
FieldElement |
FieldElement.subtract(FieldElement operand)
Deprecated.
Subtracts
operand from the calling element and returns
the result. |
FieldElement |
GFpElement.subtract(FieldElement element)
Deprecated.
Returns the field element that is the result of subtracting
element from this. |
FieldElement |
Polynomial.subtract(FieldElement b)
Deprecated.
Subtracts the argument,
b, from the calling element and
returns the result. |
| Modifier and Type | Method and Description |
|---|---|
FieldElement |
EllipticCurve.getA()
Deprecated.
Returns the value of the coefficient
a of the elliptic
curve as defined in X9.62. |
FieldElement |
EllipticCurve.getB()
Deprecated.
Returns the value of the coefficient
b of the elliptic
curve as defined in X9.62. |
abstract FieldElement |
ECPoint.getXCoordinate()
Deprecated.
Returns the x-coordinate of the calling point.
|
FieldElement |
ECPointGFp.getXCoordinate()
Deprecated.
Returns the x-coordinate of the calling point.
|
FieldElement |
PolynomeECPoint.getXCoordinate()
Deprecated.
Returns the x coordinate of the calling point.
|
abstract FieldElement |
ECPoint.getYCoordinate()
Deprecated.
Returns the y-coordinate of the calling point.
|
FieldElement |
ECPointGFp.getYCoordinate()
Deprecated.
Returns the y-coordinate of the calling point.
|
FieldElement |
PolynomeECPoint.getYCoordinate()
Deprecated.
Returns the y coordinate of the calling point.
|
| Modifier and Type | Method and Description |
|---|---|
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(FieldElement x,
FieldElement y,
EllipticCurve curve)
Deprecated.
Creates an instance of the
ECPointGFp given two field
elements and a curve as arguments. |
EllipticCurve(FieldElement a,
FieldElement b,
java.math.BigInteger seed)
Deprecated.
Instantiates an
EllipticCurve object given two field
elements and a seed as arguments. |