Exemplo n.º 1
0
        public string Retornar_Senha_Hash(string senha)
        {
            if (string.IsNullOrEmpty(senha))
            {
                return(senha);
            }

            return(CriptografiaHash.GerarHash(senha));
        }
Exemplo n.º 2
0
 public void Preencher_Propriedades_Para_Alteracao()
 {
     Senha = CriptografiaHash.GerarHash(Senha);
     Login = Login.ToLower();
 }