15 lines
282 B
C#
15 lines
282 B
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
|
|
using System;
|
|
|
|
namespace Org.BouncyCastle.Math.Field
|
|
{
|
|
public interface IPolynomialExtensionField
|
|
: IExtensionField
|
|
{
|
|
IPolynomial MinimalPolynomial { get; }
|
|
}
|
|
}
|
|
|
|
#endif
|