Add key array comment

This commit is contained in:
Kyle Banks 2013-10-06 20:16:14 -04:00
parent 01d4e8862c
commit 4ba1f6fac3
1 changed files with 1 additions and 1 deletions

View File

@ -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++) {