summary refs log tree commit diff
path: root/crypto/src/math/ec/custom/sec/Curve25519Field.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2014-03-04 11:12:43 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2014-03-04 11:12:43 +0700
commitecf5397a6edbe46248ef74a782e7443e4f5341c5 (patch)
treeadd85103823cd9edef723854e8215f396ca6123e /crypto/src/math/ec/custom/sec/Curve25519Field.cs
parentRefactoring in the Nat* classes and some new method variations (diff)
downloadBouncyCastle.NET-ed25519-ecf5397a6edbe46248ef74a782e7443e4f5341c5.tar.xz
Just use shift methods from Nat class evverywhere
Diffstat (limited to 'crypto/src/math/ec/custom/sec/Curve25519Field.cs')
-rw-r--r--crypto/src/math/ec/custom/sec/Curve25519Field.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/custom/sec/Curve25519Field.cs b/crypto/src/math/ec/custom/sec/Curve25519Field.cs
index a11659a60..c272cbc38 100644
--- a/crypto/src/math/ec/custom/sec/Curve25519Field.cs
+++ b/crypto/src/math/ec/custom/sec/Curve25519Field.cs
@@ -147,7 +147,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec
 
         public static void Twice(uint[] x, uint[] z)
         {
-            Nat256.ShiftUpBit(x, 0, z);
+            Nat.ShiftUpBit(8, x, 0, z);
             if (Nat256.Gte(z, P))
             {
                 Nat256.AddWord(PInv, z, 0);