aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/math/ec/ECConstants.java
blob: c2b2a09a48f1dcb7f62191b5ebc9121fd982db11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.spongycastle.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);
}