Пример #1
0
 public void setPassword(string pass)
 {
     Password = StringCipher.Encrypt(pass, FConstants.StringCipherKey);
 }
Пример #2
0
 public string getPassword()
 {
     return(StringCipher.Decrypt(Password, FConstants.StringCipherKey));
 }