IPolynomial.cs 346 B

12345678910111213141516171819
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. namespace Org.BouncyCastle.Math.Field
  4. {
  5. public interface IPolynomial
  6. {
  7. int Degree { get; }
  8. //BigInteger[] GetCoefficients();
  9. int[] GetExponentsPresent();
  10. //Term[] GetNonZeroTerms();
  11. }
  12. }
  13. #endif