IFiniteField.cs 257 B

123456789101112131415
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. namespace Org.BouncyCastle.Math.Field
  4. {
  5. public interface IFiniteField
  6. {
  7. BigInteger Characteristic { get; }
  8. int Dimension { get; }
  9. }
  10. }
  11. #endif