Help for this page

Select Code to Download


  1. or download this
    sub get16 {
        my $data = shift;
    ...
         return $data . "\0" x ( 16 - length($data) % 16 );
    
    }
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    exit;