summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-02-08 20:23:21 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-02-08 20:23:21 +0700
commit1db914cf08673f8da9436f48634fb8bc539bb322 (patch)
treeab4235e1e1f985e329134648d873fcaaeca0a241
parentSpeed up BasicGcmMultiplier (diff)
downloadBouncyCastle.NET-ed25519-1db914cf08673f8da9436f48634fb8bc539bb322.tar.xz
Formatting
-rw-r--r--crypto/src/crypto/modes/gcm/GcmUtilities.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/modes/gcm/GcmUtilities.cs b/crypto/src/crypto/modes/gcm/GcmUtilities.cs
index dbea6771c..1a2e0bc1e 100644
--- a/crypto/src/crypto/modes/gcm/GcmUtilities.cs
+++ b/crypto/src/crypto/modes/gcm/GcmUtilities.cs
@@ -157,7 +157,7 @@ namespace Org.BouncyCastle.Crypto.Modes.Gcm
             ulong z3 = h3;
 
             z1 ^= z3 ^ (z3 >> 1) ^ (z3 >> 2) ^ (z3 >> 7);
-            //          z2 ^=      (z3 << 63) ^ (z3 << 62) ^ (z3 << 57);
+//          z2 ^= (z3 << 63) ^ (z3 << 62) ^ (z3 << 57);
             z2 ^= (z3 << 62) ^ (z3 << 57);
 
             z0 ^= z2 ^ (z2 >> 1) ^ (z2 >> 2) ^ (z2 >> 7);