Ejemplo n.º 1
0
 public void SetPassword(string password)
 {
     //this.storedPassword = new PasswordCryptographer().GenerateSaltedPassword(password);
     this.storedPassword = PasswordCryptographer.HashPasswordDelegate(password);
     OnChanged("StoredPassword");
 }
Ejemplo n.º 2
0
 public void SetPassword(string password)
 {
     this.storedPassword = PasswordCryptographer.HashPasswordDelegate(password);
     OnChanged("StoredPassword");
 }
Ejemplo n.º 3
0
 public void SetPassword(string password)
 {
     StoredPassword = PasswordCryptographer.HashPasswordDelegate(password);
 }