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