diff options
Diffstat (limited to 'crypto/src/math/ec/rfc8032/Wnaf.cs')
-rw-r--r-- | crypto/src/math/ec/rfc8032/Wnaf.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/ec/rfc8032/Wnaf.cs b/crypto/src/math/ec/rfc8032/Wnaf.cs index cc6e3704f..1b7d1465d 100644 --- a/crypto/src/math/ec/rfc8032/Wnaf.cs +++ b/crypto/src/math/ec/rfc8032/Wnaf.cs @@ -59,7 +59,7 @@ namespace Org.BouncyCastle.Math.EC.Rfc8032 } } - Debug.Assert(sign == n[n.Length - 1] >> 31); + Debug.Assert((int)sign == (int)n[n.Length - 1] >> 31); } } } |