1package org.bouncycastle.math.ec;
2
3import java.math.BigInteger;
4
5public interface ECConstants
6{
7    public static final BigInteger ZERO = BigInteger.valueOf(0);
8    public static final BigInteger ONE = BigInteger.valueOf(1);
9    public static final BigInteger TWO = BigInteger.valueOf(2);
10    public static final BigInteger THREE = BigInteger.valueOf(3);
11    public static final BigInteger FOUR = BigInteger.valueOf(4);
12}
13