0
Turns out I wasn't thinking when I wrote the question. I ended up encrypting the individual strings in the file based on the the user's password. So now I have an unencrypted file that contains encrypted sections of text. Anyway thanks for the input. This thread can be closed.
0
Hey, not sure if this would help but you can encrypt the information, here is how
Make sure you include
using System.Security.Cryptography;
How to encrypt
Make two text boxes and rename them, 'txtEncryptInput' and 'txtEncryptOutput'
Make a button and add this:
string input = txtEncryptInput.Text;
string output =
Convert.ToBase64String(Encoding.Unicode.GetBytes(input));
txtEncryptOutput.Text = output;
How to decrypt
Make two text boxes and rename them, 'txtDecryptInput' and 'txtDecryptOutput'
Make a button and add this:
string input = txtDecryptInput.Text;
string output = Encoding.Unicode.GetString(Convert.FromBase64String(input));
txtDecryptOutput.Text = output;
If you have any questions please ask ;)