Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use Crypt::RC4;
    ...
     
    print "$plaintext\n$encrypted\n$decrypt\n";
    
  2. or download this
    #!/usr/bin/perl
    use Crypt::RC5;
    ...
    $plain = $rc5d->decrypt($cipher);
    
    print "$plain\n";
    
  3. or download this
    #!/usr/bin/perl
    use Crypt::Rijndael;
    ...
    
    exit;