Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
        printf "New CRC:\t%s", `python -c "print hex(0b$x)"`;
        printf "Lib CRC:\t%#x\t(String::CRC32)\n\n", $built_in_crc;
    }
    
  2. or download this
    bit: 0        00000000000000000000000000000000
    bit: 1        00000100110000010001110110110110
    ...
    Old CRC:    0x500a1b4c
    New CRC:    0x66d0fb54
    Lib CRC:    0x500a1b4c    (String::CRC32)