Class ZTauElement

java.lang.Object
org.gudy.bouncycastle.math.ec.ZTauElement

class ZTauElement extends Object
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 Details

    • u

      public final BigInteger u
      The "real" part of λ.
    • v

      public final BigInteger v
      The "τ-adic" part of λ.
  • Constructor Details

    • ZTauElement

      public ZTauElement(BigInteger u, BigInteger v)
      Constructor for an element λ of Z[τ].
      Parameters:
      u - The "real" part of λ.
      v - The "τ-adic" part of λ.