public void Save(string username, string password)
 {
     this._storage.Set <string>("Username", MachineProtectedData.Encrypt(username));
     this._storage.Set <string>("Password", MachineProtectedData.Encrypt(password));
 }
 public void Save(string username, string password)
 {
     this.Store(MachineProtectedData.Encrypt(username), MachineProtectedData.Encrypt(password));
 }