Exemplo n.º 1
0
        public ActionResult CRC32(string str)
        {
            if (str.IsNullOrEmpty())
            {
                return(Content(""));
            }

            return(Content(EncryptHelper.CRC32(str)));
        }