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/spongycastle/math/ec/ECConstants.java')
-rw-r--r--core/src/main/java/org/spongycastle/math/ec/ECConstants.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/src/main/java/org/spongycastle/math/ec/ECConstants.java b/core/src/main/java/org/spongycastle/math/ec/ECConstants.java
new file mode 100644
index 00000000..c2b2a09a
--- /dev/null
+++ b/core/src/main/java/org/spongycastle/math/ec/ECConstants.java
@@ -0,0 +1,12 @@
+package org.spongycastle.math.ec;
+
+import java.math.BigInteger;
+
+public interface ECConstants
+{
+ public static final BigInteger ZERO = BigInteger.valueOf(0);
+ public static final BigInteger ONE = BigInteger.valueOf(1);
+ public static final BigInteger TWO = BigInteger.valueOf(2);
+ public static final BigInteger THREE = BigInteger.valueOf(3);
+ public static final BigInteger FOUR = BigInteger.valueOf(4);
+}