Forum Moderators: phranque
Is there a less expensive way :(
All I need to do is capture some secure info on a booking form and send it encrypted to my client - who then decrypts it.
GnuPG has a very nice command line integration. For example, if you want to encrypt a file, you can automate it easily.
PASSPHRASE="gnupg rocks"
RECIPIENT="johnblog@myclients.com"
(echo $PASSPHRASE; cat file_to_be_encrypted) ¦ \
gpg --passphrase-fd 0 -r $RECIPIENT -a -e -s ¦ \
mail -s "IMPORTANT!!!" $RECIPIENT
(Edit: fixed up the code)