From 4ba1f6fac3eb64e082adf56716cecfe4abf3dc80 Mon Sep 17 00:00:00 2001 From: Kyle Banks Date: Sun, 6 Oct 2013 20:16:14 -0400 Subject: [PATCH] Add key array comment --- C#/Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C#/Main.cs b/C#/Main.cs index 376cb0b..fd1c844 100644 --- a/C#/Main.cs +++ b/C#/Main.cs @@ -3,7 +3,7 @@ using System; class XOREncryption { private static string encryptDecrypt(string input) { - char[] key = {'K', 'C', 'Q'}; + char[] key = {'K', 'C', 'Q'}; //Any chars will work, in an array of any size char[] output = new char[input.Length]; for(int i = 0; i < input.Length; i++) {