Package org.gudy.bouncycastle.math.ec
Class ZTauElement
java.lang.Object
org.gudy.bouncycastle.math.ec.ZTauElement
Class representing an element of
Z[τ]
. Let
λ
be an element of Z[τ]
. Then
λ
is given as λ = u + vτ
. The
components u
and v
may be used directly, there
are no accessor methods.
Immutable class.-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal BigInteger
The "real" part ofλ
.final BigInteger
The "τ
-adic" part ofλ
. -
Constructor Summary
ConstructorsConstructorDescriptionZTauElement
(BigInteger u, BigInteger v) Constructor for an elementλ
ofZ[τ]
. -
Method Summary
-
Field Details
-
u
The "real" part ofλ
. -
v
The "τ
-adic" part ofλ
.
-
-
Constructor Details
-
ZTauElement
Constructor for an elementλ
ofZ[τ]
.- Parameters:
u
- The "real" part ofλ
.v
- The "τ
-adic" part ofλ
.
-