Example #1
0
 public static string RetornarChavePrivadaInformacaoDecifrada()
 {
     return(TripleDes.Decifrar(ChavePrivadaInformacao, ChaveGeral).Replace(Environment.NewLine, string.Empty));
 }
Example #2
0
 public static bool DecifrarETestarMd5Informacao(string informacao, string valorHash)
 {
     return(CalcularMd5Informacao(informacao).ToString() == TripleDes.Decifrar(valorHash, RetornarChavePrivadaInformacaoDecifrada()).Replace("-", ""));
 }