Home | History | Annotate | Download | only in ec
      1 package org.bouncycastle.math.ec;
      2 
      3 import java.math.BigInteger;
      4 
      5 public 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     public static final BigInteger EIGHT = BigInteger.valueOf(8);
     13 }
     14