diff options
author | David Hook <david.hook@keyfactor.com> | 2022-10-15 12:43:58 +1100 |
---|---|---|
committer | David Hook <david.hook@keyfactor.com> | 2022-10-15 12:43:58 +1100 |
commit | 175b85120d517f93e00a8f57c9bb194009435feb (patch) | |
tree | 3c4d592e65671d11cfed52d75585760e54059413 /crypto/src/math | |
parent | conflict resolution (diff) | |
parent | Replace BikePolynomial with new BikeRing (diff) | |
download | BouncyCastle.NET-ed25519-175b85120d517f93e00a8f57c9bb194009435feb.tar.xz |
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'crypto/src/math')
-rw-r--r-- | crypto/src/math/raw/Interleave.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/math/raw/Interleave.cs b/crypto/src/math/raw/Interleave.cs index c7c8eb4da..02aa79551 100644 --- a/crypto/src/math/raw/Interleave.cs +++ b/crypto/src/math/raw/Interleave.cs @@ -98,7 +98,7 @@ namespace Org.BouncyCastle.Math.Raw internal static void Expand64To128(ulong[] xs, int xsOff, int xsLen, ulong[] zs, int zsOff) { - int xsPos = xsLen, zsPos = zsOff + xsLen << 1; + int xsPos = xsLen, zsPos = zsOff + (xsLen << 1); while (--xsPos >= 0) { zsPos -= 2; |