I am writing a perl script that manipulates password protected zip files. Consequently I need to store & retrieve passwords to do this. I have three options for storing the password:
- Store in plain text. Before you jump in, I have pretty much ruled out this option.
- Use a simple password munger to prevent casual/accidental access (even by the DBAs)
- Use a proper encryption/decryption library, such as Blowfish or AES.
Whatever I choose must run in Perl, under Windows and be easy to use.
Any suggestions?