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); }