Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $crc16 = crc($message);
    print "CRC16 in decimal: $crc16\n";
    print "CRC16 in hex:\n  ", unpack('H*', pack('S', $crc16)), "\n";
    
  2. or download this
    cradcliff% ./crc16-modular.pl foo
    CRC16 in decimal: 1736882148
    ...
    CRC16 in decimal: 3375757723
    CRC16 in hex:
      f99b