diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-03-13 22:54:23 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2014-03-13 22:54:23 +0700 |
commit | 104b98cc2797c4613151b95dc87218eca7f32c98 (patch) | |
tree | f0e6d13b80c03fbcea305195071b63c85534249f /crypto/src/math/ec/ECPointMap.cs | |
parent | Fix bug in DoFinal introduced by last change (diff) | |
download | BouncyCastle.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.cs | 9 |
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); + } +} |