Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ECConstants.java « ec « math « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}