Beispiel #1
0
        static void Main(string[] args)
        {
            string text = "1212";

            byte[] bytes      = Encoding.UTF8.GetBytes(text);
            var    crc64      = CRC64.Create("CRC64_XZ");
            var    crc64Value = crc64.Compute(bytes);

            Console.WriteLine("0x" + crc64Value.ToString("X2"));
        }