Encryption using the XOR operator.
Encryption using the XOR operator.
Rate Encryption using the XOR operator.
(2(2 Vote))
Dim Char As Integer
For Char = 1 To Len(EncString)
Mid(EncString, Char, 1) = Chr(Asc(Mid(EncString, Char, 1)) Xor XORVal)
Next Char
End Sub
Encryption using the XOR operator. Comments
No comments yet — be the first to post one!
Post a Comment