Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

DrManhattan's scratchpad

by DrManhattan (Chaplain)
on Jun 03, 2004 at 19:55 UTC ( [id://360422]=scratchpad: print w/replies, xml ) Need Help??

#! /usr/bin/perl # Usage: encrypt.pl inputfile > outputfile use strict; use Crypt::CBC; my $cipher = Crypt::CBC->new('Blowfish', 'secret key'); undef $/; print $cipher->encrypt(<>);
And to decrypt
#! /usr/bin/perl # Usage: decrypt.pl inputfile > outputfile use strict; use Crypt::CBC; my $cipher = Crypt::CBC->new('Blowfish', 'secret key'); undef $/; print $cipher->decrypt(<>);
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-03-29 11:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found