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/ECPoint.java')
-rw-r--r--core/src/main/java/org/bouncycastle/math/ec/ECPoint.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/main/java/org/bouncycastle/math/ec/ECPoint.java b/core/src/main/java/org/bouncycastle/math/ec/ECPoint.java
index f4c1d80d..ec320f00 100644
--- a/core/src/main/java/org/bouncycastle/math/ec/ECPoint.java
+++ b/core/src/main/java/org/bouncycastle/math/ec/ECPoint.java
@@ -534,7 +534,7 @@ public abstract class ECPoint
ECFieldElement X = this.x, Y = this.y, A = curve.getA(), B = curve.getB();
ECFieldElement lhs = Y.square();
- switch (getCurveCoordinateSystem())
+ switch (this.getCurveCoordinateSystem())
{
case ECCurve.COORD_AFFINE:
break;
@@ -579,7 +579,7 @@ public abstract class ECPoint
}
// Add -b
- return add(b.negate());
+ return this.add(b.negate());
}
}
@@ -1347,7 +1347,7 @@ public abstract class ECPoint
protected boolean satisfiesCurveEquation()
{
- ECCurve curve = getCurve();
+ ECCurve curve = this.getCurve();
ECFieldElement X = this.x, A = curve.getA(), B = curve.getB();
int coord = curve.getCoordinateSystem();