in reply to public key encryption
After some time and thinking I found it easiest to use gpg. For encrypting I ran it with IPC::Run and the command-line that I used for encryption was:
The always-trust is because I didn't want to worry about setting up the trust relationship so that it would accept the public key as valid - it is a public key, it isn't secret.gpg -a --no-secmem-warning --always-trust -r username -e
The private decryption I do by hand using gpg's decrypt-files to do a bunch at a time. Another co-worker is also able to decrypt the files, and the necessary key and instructions is also on a floppy in case the first two of us die.
This solution would not be acceptable if I needed to decrypt data more often.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: public key encryption
by perrin (Chancellor) on Jun 03, 2004 at 22:29 UTC |