Added function description for VB.NET implement

This commit is contained in:
Ankit Apurv 2016-03-14 22:06:43 +05:30
parent f9ece384ff
commit 704660bee4
1 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,11 @@
Console.ReadLine()
End Sub
''' <summary>
''' Encrypts and Decrypts string via XOR Operation
''' </summary>
''' <param name="input">String to be encrypted/decrypted</param>
''' <returns>Encrypted/Decrypted output string</returns>
Private Function encryptDecrypt(input As String) As String
Dim key As Char() = {"K"c, "C"c, "Q"c}
'Any chars will work, in an array of any size