aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/bouncycastle/math/ec/ECConstants.java
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2013-04-12 06:57:21 -0700
committerKenny Root <kenny@the-b.org>2013-04-12 06:57:21 -0700
commit82da776132927427339c6c801e955f75c70e4435 (patch)
treee7431dc664ed8e2c7e413fac47bc69bf173f7a86 /src/org/bouncycastle/math/ec/ECConstants.java
parentf7beb3b827f0eb6d03d8ff3589782a0df14fd2f5 (diff)
downloadconnectbot-82da776132927427339c6c801e955f75c70e4435.tar.gz
connectbot-82da776132927427339c6c801e955f75c70e4435.tar.bz2
connectbot-82da776132927427339c6c801e955f75c70e4435.zip
Add missing EC math files
Diffstat (limited to 'src/org/bouncycastle/math/ec/ECConstants.java')
-rw-r--r--src/org/bouncycastle/math/ec/ECConstants.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/org/bouncycastle/math/ec/ECConstants.java b/src/org/bouncycastle/math/ec/ECConstants.java
new file mode 100644
index 0000000..864f746
--- /dev/null
+++ b/src/org/bouncycastle/math/ec/ECConstants.java
@@ -0,0 +1,12 @@
+package org.bouncycastle.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);
+}