summary refs log tree commit diff
path: root/crypto/src/math/raw/Nat224.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2020-09-11 11:54:39 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2020-09-11 11:54:39 +0700
commit5e4ffd78e073bf15b255c1465fa211a13105b65c (patch)
tree7d3d23488573a45cb31dd3477ee9995b49523f2c /crypto/src/math/raw/Nat224.cs
parentFurther Divsteps30 improvement (diff)
downloadBouncyCastle.NET-ed25519-5e4ffd78e073bf15b255c1465fa211a13105b65c.tar.xz
Fixed loop count for BigInteger conversion
- remove length-specific variants of FromBigInteger
Diffstat (limited to 'crypto/src/math/raw/Nat224.cs')
-rw-r--r--crypto/src/math/raw/Nat224.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/crypto/src/math/raw/Nat224.cs b/crypto/src/math/raw/Nat224.cs
index 565abcb9c..1aabd3f17 100644
--- a/crypto/src/math/raw/Nat224.cs
+++ b/crypto/src/math/raw/Nat224.cs
@@ -261,21 +261,6 @@ namespace Org.BouncyCastle.Math.Raw
             return true;
         }
 
-        public static uint[] FromBigInteger(BigInteger x)
-        {
-            if (x.SignValue < 0 || x.BitLength > 224)
-                throw new ArgumentException();
-
-            uint[] z = Create();
-            int i = 0;
-            while (x.SignValue != 0)
-            {
-                z[i++] = (uint)x.IntValue;
-                x = x.ShiftRight(32);
-            }
-            return z;
-        }
-
         public static uint GetBit(uint[] x, int bit)
         {
             if (bit == 0)