Uses of Interface
org.bouncycastle.math.ec.PreCompInfo
-
Packages that use PreCompInfo Package Description org.bouncycastle.math.ec Low-level API for performing calculations on elliptic curves, in particular point addition, point doubling, and efficient scalar multiplication. -
-
Uses of PreCompInfo in org.bouncycastle.math.ec
Classes in org.bouncycastle.math.ec that implement PreCompInfo Modifier and Type Class Description class
FixedPointPreCompInfo
Class holding precomputation data for fixed-point multiplications.class
WNafPreCompInfo
Class holding precomputation data for the WNAF (Window Non-Adjacent Form) algorithm.class
WTauNafPreCompInfo
Class holding precomputation data for the WTNAF (Windowτ
-adic Non-Adjacent Form) algorithm.Fields in org.bouncycastle.math.ec with type parameters of type PreCompInfo Modifier and Type Field Description protected java.util.Map<java.lang.String,PreCompInfo>
ECPoint. preCompTable
Methods in org.bouncycastle.math.ec that return PreCompInfo Modifier and Type Method Description PreCompInfo
ECCurve. getPreCompInfo(ECPoint point, java.lang.String name)
PreCompInfo
ECCurve. precompute(ECPoint point, java.lang.String name, PreCompCallback callback)
Compute aPreCompInfo
for a point on this curve, under a given name.PreCompInfo
PreCompCallback. precompute(PreCompInfo existing)
Methods in org.bouncycastle.math.ec with parameters of type PreCompInfo Modifier and Type Method Description static FixedPointPreCompInfo
FixedPointUtil. getFixedPointPreCompInfo(PreCompInfo preCompInfo)
static WNafPreCompInfo
WNafUtil. getWNafPreCompInfo(PreCompInfo preCompInfo)
PreCompInfo
PreCompCallback. precompute(PreCompInfo existing)
-