Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    print "<b>Encrypted Data: $encrypted</b><br><br>";
    print "<b>Decrypted Data: $decrypted</b><br><br>";
    
  2. or download this
    my $encrypted = RC4("thisisatest",'This is a test');
    my $decrypted = RC4("thisisatest",$encrypted);