Help for this page

Select Code to Download


  1. or download this
    $iv = pack("h*", $iv);
    $fixed_key = pack("h*", $fixed_key);
    
  2. or download this
    $ perl -E 'say ord pack "h*", "01"'
    16  # that is, 0x10
    
    $ perl -E 'say ord pack "H*", "01"'
    1