summary refs log tree commit diff
path: root/crypto/src/math/ec/ECCurve.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-01-27 11:40:00 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-01-27 11:40:00 +0700
commitb27039585917e3c0651de353faef68fe6bbc68d9 (patch)
tree0cdad9b0772f6e7ae061ba24ed0514b71b8e358b /crypto/src/math/ec/ECCurve.cs
parentUse custom curve if available (diff)
downloadBouncyCastle.NET-ed25519-b27039585917e3c0651de353faef68fe6bbc68d9.tar.xz
Port of latest EC multipliers from Java
Diffstat (limited to 'crypto/src/math/ec/ECCurve.cs')
-rw-r--r--crypto/src/math/ec/ECCurve.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/ECCurve.cs b/crypto/src/math/ec/ECCurve.cs
index fb12f0475..ed413597a 100644
--- a/crypto/src/math/ec/ECCurve.cs
+++ b/crypto/src/math/ec/ECCurve.cs
@@ -107,7 +107,7 @@ namespace Org.BouncyCastle.Math.EC
 
         protected virtual ECMultiplier CreateDefaultMultiplier()
         {
-            return new WNafMultiplier();
+            return new WNafL2RMultiplier();
         }
 
         public virtual bool SupportsCoordinateSystem(int coord)