IExtensionField.cs 276 B

12345678910111213141516
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. namespace Org.BouncyCastle.Math.Field
  4. {
  5. public interface IExtensionField
  6. : IFiniteField
  7. {
  8. IFiniteField Subfield { get; }
  9. int Degree { get; }
  10. }
  11. }
  12. #endif