Package org.bouncycastle.math.ec
Interface ECMultiplier
-
- All Known Implementing Classes:
AbstractECMultiplier,FixedPointCombMultiplier,GLVMultiplier,WNafL2RMultiplier,WTauNafMultiplier
public interface ECMultiplierInterface for classes encapsulating a point multiplication algorithm forECPoints.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ECPointmultiply(ECPoint p, BigInteger k)Multiplies theECPoint pbyk, i.e.
-
-
-
Method Detail
-
multiply
ECPoint multiply(ECPoint p, BigInteger k)
Multiplies theECPoint pbyk, i.e.pis addedktimes to itself.- Parameters:
p- TheECPointto be multiplied.k- The factor by whichpis multiplied.- Returns:
pmultiplied byk.
-
-