Package org.bouncycastle.math.ec
Class FixedPointPreCompInfo
- java.lang.Object
-
- org.bouncycastle.math.ec.FixedPointPreCompInfo
-
- All Implemented Interfaces:
PreCompInfo
public class FixedPointPreCompInfo extends Object implements PreCompInfo
Class holding precomputation data for fixed-point multiplications.
-
-
Constructor Summary
Constructors Constructor Description FixedPointPreCompInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ECPoint[]getPreComp()intgetWidth()voidsetPreComp(ECPoint[] preComp)voidsetWidth(int width)
-
-
-
Field Detail
-
preComp
protected ECPoint[] preComp
Array holding the precomputedECPoints used for a fixed point multiplication.
-
width
protected int width
The width used for the precomputation. If a larger width precomputation is already available this may be larger than was requested, so calling code should refer to the actual width.
-
-