fork(3) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. uint crc32 = 0x7601A9C5;
  8. int length = 17;
  9.  
  10. var checksum = (uint)((~(ushort)crc32) ^ (length * ~crc32));
  11.  
  12. // expected 0xD0EF1CD6
  13. Console.WriteLine(BitConverter.ToString(BitConverter.GetBytes(checksum)));
  14. }
  15. }
Success #stdin #stdout 0.04s 23952KB
stdin
Standard input is empty
stdout
E0-EF-1C-D6