diff options
Diffstat (limited to 'crypto/src/math/ec/custom/sec/Nat192.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/Nat192.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/crypto/src/math/ec/custom/sec/Nat192.cs b/crypto/src/math/ec/custom/sec/Nat192.cs index 0ecbc06de..87dbcec84 100644 --- a/crypto/src/math/ec/custom/sec/Nat192.cs +++ b/crypto/src/math/ec/custom/sec/Nat192.cs @@ -235,19 +235,6 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec return true; } - public static bool GteExt(uint[] xx, uint[] yy) - { - for (int i = 11; i >= 0; --i) - { - uint xx_i = xx[i], yy_i = yy[i]; - if (xx_i < yy_i) - return false; - if (xx_i > yy_i) - return true; - } - return true; - } - public static bool IsOne(uint[] x) { if (x[0] != 1) @@ -276,18 +263,6 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec return true; } - public static bool IsZeroExt(uint[] xx) - { - for (int i = 0; i < 12; ++i) - { - if (xx[i] != 0) - { - return false; - } - } - return true; - } - public static void Mul(uint[] x, uint[] y, uint[] zz) { ulong y_0 = y[0]; |