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/ECCurve.java')
-rw-r--r--core/src/main/java/org/bouncycastle/math/ec/ECCurve.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/org/bouncycastle/math/ec/ECCurve.java b/core/src/main/java/org/bouncycastle/math/ec/ECCurve.java
index 9ddbc993..4bd2fd2a 100644
--- a/core/src/main/java/org/bouncycastle/math/ec/ECCurve.java
+++ b/core/src/main/java/org/bouncycastle/math/ec/ECCurve.java
@@ -454,7 +454,7 @@ public abstract class ECCurve
protected ECPoint decompressPoint(int yTilde, BigInteger X1)
{
- ECFieldElement x = fromBigInteger(X1);
+ ECFieldElement x = this.fromBigInteger(X1);
ECFieldElement rhs = x.square().add(a).multiply(x).add(b);
ECFieldElement y = rhs.sqrt();
@@ -472,7 +472,7 @@ public abstract class ECCurve
y = y.negate();
}
- return createRawPoint(x, y, true);
+ return this.createRawPoint(x, y, true);
}
}