1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/math/ec/Nat.cs b/crypto/src/math/ec/Nat.cs
index 1ddcb1609..e20304dd6 100644
--- a/crypto/src/math/ec/Nat.cs
+++ b/crypto/src/math/ec/Nat.cs
@@ -153,7 +153,7 @@ namespace Org.BouncyCastle.Math.EC
if (x_i > y_i)
return true;
}
- return false;
+ return true;
}
public static bool GteExt(int len, uint[] xx, uint[] yy)
@@ -167,7 +167,7 @@ namespace Org.BouncyCastle.Math.EC
if (xx_i > yy_i)
return true;
}
- return false;
+ return true;
}
public static uint Inc(int len, uint[] z, int zOff)
|