private static string EncriptarData(string body, string secret)
UTF8Encoding encoding = new UTF8Encoding();
var hash = new HMACSHA256(encoding.GetBytes(secret));
byte[] stream = hash.ComputeHash(encoding.GetBytes(body));
string textHash = string.Concat(stream.Select(b => b.ToString("x2")));