in reply to Encryption, Decryption & Password Protection

The example in the docs for Crypt::CBC should serve your encryption needs. I would suggest using the Rijndael algorithm (supplied by Crypt::Rijndael)

You don't need to password protect your encryption/decryption script. Just have your script ask you to type in your encryption key.

  • Comment on Re: Encryption, Decryption & Password Protection

Replies are listed 'Best First'.
Re^2: Encryption, Decryption & Password Protection
by Bugz (Acolyte) on Dec 17, 2014 at 18:38 UTC
    Thanks, I will look up the Crypt:CBC module.