Help for this page

Select Code to Download


  1. or download this
    my $key = "0123456789ABCDEF0123456789ABCDEF";
    
    ...
    $_ = "0$_" if length % 2 == 1;
    $_ = "00$_" if /^[89ABCDEFabcdef]/;
    my @b = map { chr hex $_ } /(..)/g;