Help for this page

Select Code to Download


  1. or download this
    print "Hello World!\n";
    print "This is an example of encrypting a perl\n";
    print " script and not having the source directly viewable\n";
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
        print "\n" if ($i%30 == 0);
        print substr($ciphertext, $i,1);
    }
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    66a05c247903a2321e8a737bb3da4a
    fb5cf611dacbed89347997ab2db220
    b1df993e95e7e0729405d84261bad4
    
  4. or download this
    [coolness@ryszard encrypt]# ./header.pl 
    Plaintext
    ...
    Hello World!
    This is an example of encrypting a perl
     script and not having the source directly viewable
    
  5. or download this
    [coolness@ryszard encrypt]# perl -MO=Deparse header.pl 
    BEGIN { $^W = 1; }
    ...
    fb5cf611dacbed89347997ab2db220
    b1df993e95e7e0729405d84261bad4
    header.pl syntax OK