Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2016-11-10 00:30:52 +0300
committerPádraig Brady <P@draigBrady.com>2016-11-10 00:34:46 +0300
commit2407e7a40a2650872c5a2100498960662ea22464 (patch)
tree83db45e70cb9d734f2396bc0e77149520fb03ae2 /csharp/Blake2Sharp.CompressionCodeGen/Program.cs
parenta90684ab3fe788b2ca45076cf9b38335de289f58 (diff)
maint: strip various trailing whitespace
This falls afoul of various commit git commit hooks, so strip trailing whitespace at EOL and EOF.
Diffstat (limited to 'csharp/Blake2Sharp.CompressionCodeGen/Program.cs')
-rw-r--r--csharp/Blake2Sharp.CompressionCodeGen/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/Blake2Sharp.CompressionCodeGen/Program.cs b/csharp/Blake2Sharp.CompressionCodeGen/Program.cs
index 27a944c..832abb8 100644
--- a/csharp/Blake2Sharp.CompressionCodeGen/Program.cs
+++ b/csharp/Blake2Sharp.CompressionCodeGen/Program.cs
@@ -66,7 +66,7 @@ namespace Blake2Sharp.CompressionCodeGen
d ^= a;
d = " + RotateRight("d", 16) + @";
c = c + d;
- b ^= c;
+ b ^= c;
b = " + RotateRight("b", 63) + @";";
s = s.Replace("a", "v" + a);
s = s.Replace("b", "v" + b);