I really want to go about this securely, as there is customer data involved.
I am using GNUPG via the command line because I am on shared hosting, and the PHP class is not available. So my code is as follows:
putenv("GNUPGHOME=/home/me/.gnupg");
$gpg = '/usr/bin/gpg';
$gpgrecipient = 'email';
$mailrecp = 'email';
$plain = 'Here is the encrypted Text Here is the encrypted Text Here is the
encrypted Text Here is the encrypted Text Here is the encrypted Text Here is the
encrypted Text Here is the encrypted Text Here is the encrypted Text Here is the
encrypted Text';
$encrypted = shell_exec("echo {$plain} | {$gpg} --no-auto-check-trustdb --lock-never -e -a -r {$gpgrecipient} ");
So, how do I go about escaping $plain, while preserving data integrity?
If I just use escapeshellcmd() it tends to mess up formatting.
I am a bit leery of saving anything out to a file because it is sensitive data on shared hosting.