Package org.bouncycastle.math.ec
Interface ECMultiplier
- All Known Implementing Classes:
AbstractECMultiplier
,FixedPointCombMultiplier
,GLVMultiplier
,WNafL2RMultiplier
,WTauNafMultiplier
public interface ECMultiplier
Interface for classes encapsulating a point multiplication algorithm
for
ECPoint
s.-
Method Summary
Modifier and TypeMethodDescriptionmultiply
(ECPoint p, BigInteger k) Multiplies theECPoint p
byk
, i.e.
-
Method Details
-
multiply
Multiplies theECPoint p
byk
, i.e.p
is addedk
times to itself.- Parameters:
p
- TheECPoint
to be multiplied.k
- The factor by whichp
is multiplied.- Returns:
p
multiplied byk
.
-