Hi, I have a VB6 application that does XOR encryption on a password.
I have a web service that needs to test the communication and thus encrypt the plain text password but I have no idea how to work System.Security.Crypthography in C# .NET.
No luck googling either. Can anyone help me out? All I want to do is encrypt a plain text string with a string key like;
public string DoXorEncrypt(string plainText, string key)
graabein
I have a web service that needs to test the communication and thus encrypt the plain text password but I have no idea how to work System.Security.Crypthography in C# .NET.
No luck googling either. Can anyone help me out? All I want to do is encrypt a plain text string with a string key like;
public string DoXorEncrypt(string plainText, string key)
graabein