Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/org/bouncycastle/math/ec/ECAlgorithms.java')
-rw-r--r--core/src/main/java/org/bouncycastle/math/ec/ECAlgorithms.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/org/bouncycastle/math/ec/ECAlgorithms.java b/core/src/main/java/org/bouncycastle/math/ec/ECAlgorithms.java
index aaec5276..6d2a60b2 100644
--- a/core/src/main/java/org/bouncycastle/math/ec/ECAlgorithms.java
+++ b/core/src/main/java/org/bouncycastle/math/ec/ECAlgorithms.java
@@ -200,7 +200,7 @@ public class ECAlgorithms
return implShamirsTrickWNaf(preCompP, preCompNegP, wnafP, preCompQ, preCompNegQ, wnafQ);
}
- static ECPoint implShamirsTrickWNaf(ECPoint P, BigInteger k, ECPointMap mapQ, BigInteger l)
+ static ECPoint implShamirsTrickWNaf(ECPoint P, BigInteger k, ECPointMap pointMapQ, BigInteger l)
{
boolean negK = k.signum() < 0, negL = l.signum() < 0;
@@ -209,7 +209,7 @@ public class ECAlgorithms
int width = Math.max(2, Math.min(16, WNafUtil.getWindowSize(Math.max(k.bitLength(), l.bitLength()))));
- ECPoint Q = WNafUtil.mapPointWithPrecomp(P, width, true, mapQ);
+ ECPoint Q = WNafUtil.mapPointWithPrecomp(P, width, true, pointMapQ);
WNafPreCompInfo infoP = WNafUtil.getWNafPreCompInfo(P);
WNafPreCompInfo infoQ = WNafUtil.getWNafPreCompInfo(Q);