public string GetFingerPrint(string userAgent, string longSessionValue)
        {
            var print = new
            {
                UserAgent   = userAgent,
                LongSession = longSessionValue
            };

            return(Sha1.GetHash(JsonConvert.SerializeObject(print)));
        }