M
Mythran
I have googled and tested and tried and still I can't seem to implement a
simple encryption/decryption console application. My goal is to create two
methods.
public byte[] Encrypt(string DataToEncrypt, string Key)
{
...
}
public byte[] Decrypt(byte[] DataToDecrypt, string Key)
{
...
}
The Key parameter *should* be a variable-length string (an alpha-numeric
password if you will). I'm at a loss at where to go from here...gah!
Any and all help is greatly appreciated,
Mythran
simple encryption/decryption console application. My goal is to create two
methods.
public byte[] Encrypt(string DataToEncrypt, string Key)
{
...
}
public byte[] Decrypt(byte[] DataToDecrypt, string Key)
{
...
}
The Key parameter *should* be a variable-length string (an alpha-numeric
password if you will). I'm at a loss at where to go from here...gah!
Any and all help is greatly appreciated,
Mythran