summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2018-04-08 17:52:30 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2018-04-08 17:52:30 +0700
commitfacf7ac4d40fe1f83fc832f6556c919f04d4e125 (patch)
treebadb0f6ae793471780bc91e414ea795ad28bf6c3
parentPort of BLAKE2B/2S digests from bc-java (diff)
parentMerge branch 'patch-1' of https://github.com/ZZMarquis/bc-csharp into ZZMarqu... (diff)
downloadBouncyCastle.NET-ed25519-facf7ac4d40fe1f83fc832f6556c919f04d4e125.tar.xz
Merge branch 'ZZMarquis-patch-1'
-rw-r--r--crypto/src/crypto/engines/SM2Engine.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/engines/SM2Engine.cs b/crypto/src/crypto/engines/SM2Engine.cs
index e5f12bbbb..90a5e4d6f 100644
--- a/crypto/src/crypto/engines/SM2Engine.cs
+++ b/crypto/src/crypto/engines/SM2Engine.cs
@@ -139,7 +139,7 @@ namespace Org.BouncyCastle.Crypto.Engines
             int check = 0;
             for (int i = 0; i != c3.Length; i++)
             {
-                check |= c3[i] ^ input[c1.Length + c2.Length + i];
+                check |= c3[i] ^ input[inOff + c1.Length + c2.Length + i];
             }
 
             Arrays.Fill(c1, 0);