summary refs log tree commit diff
path: root/crypto/src/math/field/IFiniteField.cs
blob: b618be74b1f03d75a75f235ac0a7274e019dad09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Org.BouncyCastle.Math.Field
{
    public interface IFiniteField
    {
        BigInteger Characteristic { get; }

        int Dimension { get; }
    }
}