diff options
Diffstat (limited to 'crypto/src/math/ec/custom/sec/SecT163R2Point.cs')
-rw-r--r-- | crypto/src/math/ec/custom/sec/SecT163R2Point.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/math/ec/custom/sec/SecT163R2Point.cs b/crypto/src/math/ec/custom/sec/SecT163R2Point.cs index 69e249739..a207e6fba 100644 --- a/crypto/src/math/ec/custom/sec/SecT163R2Point.cs +++ b/crypto/src/math/ec/custom/sec/SecT163R2Point.cs @@ -186,7 +186,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec ECFieldElement X1 = this.RawXCoord; if (X1.IsZero) { - // A point with X == 0 is it's own Additive inverse + // A point with X == 0 is its own additive inverse return curve.Infinity; } @@ -226,7 +226,7 @@ namespace Org.BouncyCastle.Math.EC.Custom.Sec ECFieldElement X1 = this.RawXCoord; if (X1.IsZero) { - // A point with X == 0 is it's own Additive inverse + // A point with X == 0 is its own additive inverse return b; } |