summary refs log tree commit diff
path: root/crypto/src/math/ec/endo/ECEndomorphism.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/math/ec/endo/ECEndomorphism.cs')
-rw-r--r--crypto/src/math/ec/endo/ECEndomorphism.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/crypto/src/math/ec/endo/ECEndomorphism.cs b/crypto/src/math/ec/endo/ECEndomorphism.cs
new file mode 100644
index 000000000..dfb321368
--- /dev/null
+++ b/crypto/src/math/ec/endo/ECEndomorphism.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace Org.BouncyCastle.Math.EC.Endo
+{
+    public interface ECEndomorphism
+    {
+        ECPointMap PointMap { get; }
+
+        bool HasEfficientPointMap { get; }
+    }
+}