public Usuario(string pNome, string pSenha) { this.Nome = pNome; this.Salt = Password.CreateSalt(8); this.Senha = Password.GenerateSaltedHash(pSenha, this.Salt); }