IPolynomial.cs 397 B

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