summary refs log tree commit diff
path: root/crypto/src/math/ec/ECPointMap.cs
diff options
context:
space:
mode:
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); + } +}