Package org.gudy.bouncycastle.math.ec
Interface ECMultiplier
- All Known Implementing Classes:
FpNafMultiplier
interface ECMultiplier
Interface for classes encapsulating a point multiplication algorithm
for
ECPoint
s.-
Method Summary
Modifier and TypeMethodDescriptionmultiply
(ECPoint p, BigInteger k, PreCompInfo preCompInfo) 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
i multiplied.- Returns:
p
multiplied byk
.
-