9 lines
135 B
C#
9 lines
135 B
C#
namespace Org.BouncyCastle.Math.Field;
|
|
|
|
public interface IFiniteField
|
|
{
|
|
BigInteger Characteristic { get; }
|
|
|
|
int Dimension { get; }
|
|
}
|