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

FiniteField.java « field « 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: 25801c315d39670f782780d9de102d212d8b49c0 (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.math.field;

import java.math.BigInteger;

public interface FiniteField
{
    BigInteger getCharacteristic();

    int getDimension();
}