public void setPassword(string pass) { Password = StringCipher.Encrypt(pass, FConstants.StringCipherKey); }
public string getPassword() { return(StringCipher.Decrypt(Password, FConstants.StringCipherKey)); }