17 lines
292 B
C#
17 lines
292 B
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
|
|
using System;
|
|
|
|
namespace Org.BouncyCastle.Math.Field
|
|
{
|
|
public interface IExtensionField
|
|
: IFiniteField
|
|
{
|
|
IFiniteField Subfield { get; }
|
|
|
|
int Degree { get; }
|
|
}
|
|
}
|
|
|
|
#endif
|