public string Desencriptar(string textoCifrado) { var bytes = Convert.FromBase64String(textoCifrado); return(_csp.DecryptString(bytes)); }