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