mirror of
https://github.com/KyleBanks/XOREncryption.git
synced 2023-08-10 21:13:15 +03:00
Added function description for VB.NET implement
This commit is contained in:
parent
f9ece384ff
commit
704660bee4
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user