Home | History | Annotate | Download | only in field
      1 package org.bouncycastle.math.field;
      2 
      3 public interface Polynomial
      4 {
      5     int getDegree();
      6 
      7 //    BigInteger[] getCoefficients();
      8 
      9     int[] getExponentsPresent();
     10 
     11 //    Term[] getNonZeroTerms();
     12 }
     13