summary refs log tree commit diff
path: root/crypto/src/math/ec/ECPointMap.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-03-13 22:54:23 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-03-13 22:54:23 +0700
commit104b98cc2797c4613151b95dc87218eca7f32c98 (patch)
treef0e6d13b80c03fbcea305195071b63c85534249f /crypto/src/math/ec/ECPointMap.cs
parentFix bug in DoFinal introduced by last change (diff)
downloadBouncyCastle.NET-ed25519-104b98cc2797c4613151b95dc87218eca7f32c98.tar.xz
Port GLV implementation from Java
Diffstat (limited to 'crypto/src/math/ec/ECPointMap.cs')
-rw-r--r--crypto/src/math/ec/ECPointMap.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/crypto/src/math/ec/ECPointMap.cs b/crypto/src/math/ec/ECPointMap.cs
new file mode 100644
index 000000000..e78c80065
--- /dev/null
+++ b/crypto/src/math/ec/ECPointMap.cs
@@ -0,0 +1,9 @@
+using System;
+
+namespace Org.BouncyCastle.Math.EC
+{
+    public interface ECPointMap
+    {
+        ECPoint Map(ECPoint p);
+    }
+}