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:
authorPeter Dettman <peter.dettman@bouncycastle.org>2013-09-28 17:17:31 +0400
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-09-28 17:17:31 +0400
commit974b1a6ac1696b759dd0fbd4c31e83995f6e07a2 (patch)
treea90de859dd6f348be3b9ff42a08bb6ac834f8a02 /core/src/main/java/org/bouncycastle/math
parent7ed13c20382d16ab89eb6da4ecab26fb8de2fd24 (diff)
Enable lambda-projective support though there are still some problems
with the test cases
Diffstat (limited to 'core/src/main/java/org/bouncycastle/math')
-rw-r--r--core/src/main/java/org/bouncycastle/math/ec/ECCurve.java2
1 files changed, 1 insertions, 1 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 0bbf16d2..dcb41f5c 100644
--- a/core/src/main/java/org/bouncycastle/math/ec/ECCurve.java
+++ b/core/src/main/java/org/bouncycastle/math/ec/ECCurve.java
@@ -685,7 +685,7 @@ public abstract class ECCurve
switch (coord)
{
case COORD_AFFINE:
-// case COORD_LAMBDA_PROJECTIVE:
+ case COORD_LAMBDA_PROJECTIVE:
return true;
default:
return false;