IFiniteField.cs 327 B

123456789101112131415
  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 IFiniteField
  7. {
  8. BigInteger Characteristic { get; }
  9. int Dimension { get; }
  10. }
  11. }
  12. #pragma warning restore
  13. #endif