public string Retornar_Senha_Hash(string senha) { if (string.IsNullOrEmpty(senha)) { return(senha); } return(CriptografiaHash.GerarHash(senha)); }
public void Preencher_Propriedades_Para_Alteracao() { Senha = CriptografiaHash.GerarHash(Senha); Login = Login.ToLower(); }