From 43b483e88c796685c637f7cce639081183f3eddd Mon Sep 17 00:00:00 2001 From: Mehrdad Afshari Date: Tue, 14 Aug 2012 17:48:16 -0700 Subject: [PATCH] Fixed weird spacing --- KeyGenerator/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KeyGenerator/Program.cs b/KeyGenerator/Program.cs index 437dc7c..931e699 100644 --- a/KeyGenerator/Program.cs +++ b/KeyGenerator/Program.cs @@ -11,7 +11,7 @@ static void Main(string[] args) { rijndael.GenerateKey(); hmacsha256.Initialize(); - Console.WriteLine(template, new SoapHexBinary(rijndael.Key), new SoapHexBinary(hmacsha256.Key)); + Console.WriteLine(template, new SoapHexBinary(rijndael.Key), new SoapHexBinary(hmacsha256.Key)); } Console.WriteLine("press any key to exit...");