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.java271 ECPoint[] preCompP = negK ? infoP.getPreCompNeg() : infoP.getPreComp(); in implShamirsTrickWNaf()
279 return implShamirsTrickWNaf(preCompP, preCompNegP, wnafP, preCompQ, preCompNegQ, wnafQ); in implShamirsTrickWNaf()
295 ECPoint[] preCompP = negK ? infoP.getPreCompNeg() : infoP.getPreComp();
303 return implShamirsTrickWNaf(preCompP, preCompNegP, wnafP, preCompQ, preCompNegQ, wnafQ);
306 …private static ECPoint implShamirsTrickWNaf(ECPoint[] preCompP, ECPoint[] preCompNegP, byte[] wnaf…
311 ECCurve curve = preCompP[0].getCurve();
332 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()