Exemplo n.º 1
0
 public string Get()
 {
     return(StringCipher.Decrypt(_p, _s));
 }
Exemplo n.º 2
0
 public PasswordStore(string password)
 {
     _s = RandomString();
     _p = StringCipher.Encrypt(password, _s);
 }