summary refs log tree commit diff
path: root/crypto/src/math/field/IFiniteField.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/math/field/IFiniteField.cs')
-rw-r--r--crypto/src/math/field/IFiniteField.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/crypto/src/math/field/IFiniteField.cs b/crypto/src/math/field/IFiniteField.cs
new file mode 100644
index 000000000..b618be74b
--- /dev/null
+++ b/crypto/src/math/field/IFiniteField.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace Org.BouncyCastle.Math.Field
+{
+    public interface IFiniteField
+    {
+        BigInteger Characteristic { get; }
+
+        int Dimension { get; }
+    }
+}