Package org.gudy.bouncycastle.math.ec
Interface ECMultiplier
-
- All Known Implementing Classes:
FpNafMultiplier
interface ECMultiplier
Interface for classes encapsulating a point multiplication algorithm forECPoint
s.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ECPoint
multiply(ECPoint p, java.math.BigInteger k, PreCompInfo preCompInfo)
Multiplies theECPoint p
byk
, i.e.
-
-
-
Method Detail
-
multiply
ECPoint multiply(ECPoint p, java.math.BigInteger k, PreCompInfo preCompInfo)
Multiplies theECPoint p
byk
, i.e.p
is addedk
times to itself.- Parameters:
p
- TheECPoint
to be multiplied.k
- The factor by whichp
i multiplied.- Returns:
p
multiplied byk
.
-
-