I do not know much about encrypting. I am trying to use authenticate user information to save data to the binary file which is decrypted/encrypted using AES (commonly used encryption algorithm as of 2011).
How would I begin?
I have a piece of code which let me to authenticate the user:
using System; namespace Store_Passwords_and_Serial_Codes { class AuthenticateUser { private string userName, password; public AuthenticateUser(string userName, string password) { this.userName = userName; this.password = password; } public string UserName { get { return userName; } set { userName = value; } } public string Password { get { return password; } set { password = value; } } } }