diff options
Diffstat (limited to 'crypto/src/math/raw/Nat224.cs')
-rw-r--r-- | crypto/src/math/raw/Nat224.cs | 15 |
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) |