summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/math/field/Polynomial.java
blob: e5ccd61cf508f12b6447dc3c35bbc78d1d12741e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.bouncycastle.math.field;

public interface Polynomial
{
    int getDegree();

//    BigInteger[] getCoefficients();

    int[] getExponentsPresent();

//    Term[] getNonZeroTerms();
}