Help for this page

Select Code to Download


  1. or download this
    my $one = "50020301";
    $crc = Digest::CRC->new( type => "crc32" ) ;
    $crc->add($one);
    my $out=$crc->hexdigest();
    print "The checksum of $one is $out \n";
    
  2. or download this
    $one = 0x50020301;