| org.bouncycastle.math.ec.ECMultiplier
All known Subclasses: org.bouncycastle.math.ec.WTauNafMultiplier, org.bouncycastle.math.ec.WNafMultiplier, org.bouncycastle.math.ec.FpNafMultiplier, org.bouncycastle.math.ec.ReferenceMultiplier,
ECMultiplier | interface ECMultiplier (Code) | | Interface for classes encapsulating a point multiplication algorithm
for ECPoint s.
|
Method Summary | |
ECPoint | multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo) Multiplies the ECPoint p by k , i.e.
p is added k times to itself.
Parameters: p - The ECPoint to be multiplied. Parameters: k - The factor by which p i multiplied. |
multiply | ECPoint multiply(ECPoint p, BigInteger k, PreCompInfo preCompInfo)(Code) | | Multiplies the ECPoint p by k , i.e.
p is added k times to itself.
Parameters: p - The ECPoint to be multiplied. Parameters: k - The factor by which p i multiplied. p multiplied by k . |
|
|