in reply to Encryption algorithms in Perl 5.8?

For completely unbreakable encryption with core Perl, use the binary XOR operator ("^") and a one-time pad. If an OTP is unsuitable for your purposes (and it almost certainly is, because there are few practical cases in which an OTP can be used sensibly and correctly), use one of the Crypt modules, as suggested by others above. Don't be afraid of CPAN modules, they are a part of Perl, even if they are usually not distributed together with the binary.


All dogma is stupid.

Replies are listed 'Best First'.
Re^2: Encryption algorithms in Perl 5.8?
by lrep2010 (Initiate) on Jan 19, 2010 at 18:42 UTC
    Thanks all monks!