01: package org.bouncycastle.math.ec;
02:
03: import java.math.BigInteger;
04:
05: public interface ECConstants {
06: public static final BigInteger ZERO = BigInteger.valueOf(0);
07: public static final BigInteger ONE = BigInteger.valueOf(1);
08: public static final BigInteger TWO = BigInteger.valueOf(2);
09: public static final BigInteger THREE = BigInteger.valueOf(3);
10: public static final BigInteger FOUR = BigInteger.valueOf(4);
11: }
|