Interface ECMultiplier

All Known Implementing Classes:
AbstractECMultiplier, FixedPointCombMultiplier, GLVMultiplier, WNafL2RMultiplier, WTauNafMultiplier

public interface ECMultiplier
Interface for classes encapsulating a point multiplication algorithm for ECPoints.
  • Method Summary

    Modifier and Type
    Method
    Description
    Multiplies the ECPoint p by k, i.e.
  • Method Details

    • multiply

      ECPoint multiply(ECPoint p, BigInteger k)
      Multiplies the ECPoint p by k, i.e. p is added k times to itself.
      Parameters:
      p - The ECPoint to be multiplied.
      k - The factor by which p is multiplied.
      Returns:
      p multiplied by k.