diff options
Diffstat (limited to 'crypto/src/math/ec/custom/sec/Nat192.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/Nat192.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/math/ec/custom/sec/Nat192.cs b/crypto/src/math/ec/custom/sec/Nat192.cs index 22f79c9d3..b2f29221c 100644 --- a/crypto/src/math/ec/custom/sec/Nat192.cs +++ b/crypto/src/math/ec/custom/sec/Nat192.cs @@ -180,7 +180,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec if (x_i > y_i) return true; } - return false; + return true; } public static bool GteExt(uint[] xx, uint[] yy) @@ -193,7 +193,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec if (xx_i > yy_i) return true; } - return false; + return true; } public static uint Inc(uint[] z, int zOff) |