Home
last modified time | relevance | path

Searched refs:preCompP (Results 1 – 2 of 2) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECAlgorithms.java262 ECPoint[] preCompP = negK ? infoP.getPreCompNeg() : infoP.getPreComp(); in implShamirsTrickWNaf()
270 return implShamirsTrickWNaf(preCompP, preCompNegP, wnafP, preCompQ, preCompNegQ, wnafQ); in implShamirsTrickWNaf()
286 ECPoint[] preCompP = negK ? infoP.getPreCompNeg() : infoP.getPreComp();
294 return implShamirsTrickWNaf(preCompP, preCompNegP, wnafP, preCompQ, preCompNegQ, wnafQ);
297 …private static ECPoint implShamirsTrickWNaf(ECPoint[] preCompP, ECPoint[] preCompNegP, byte[] wnaf…
302 ECCurve curve = preCompP[0].getCurve();
323 ECPoint[] tableP = wiP < 0 ? preCompNegP : preCompP;
DWNafUtil.java362 ECPoint[] preCompP = wnafPreCompP.getPreComp(); in mapPointWithPrecomp() local
363 ECPoint[] preCompQ = new ECPoint[preCompP.length]; in mapPointWithPrecomp()
364 for (int i = 0; i < preCompP.length; ++i) in mapPointWithPrecomp()
366 preCompQ[i] = pointMap.map(preCompP[i]); in mapPointWithPrecomp()