|
Posted by Alan Little on 05/07/06 22:38
Carved in mystic runes upon the very living rock, the last words of Alan
Little of comp.lang.php make plain:
> I'm trying to operate gpg through proc_open. I can encrypt this way,
> just fine, but when I try to decrypt I get:
I got it:
$cmd =
'/usr/bin/gpg '.
'--decrypt '.
'--homedir /usr/home/userid/.gnupg '.
'--no-tty '.
'--passphrase-fd 3';
$message = '[encrypted message]';
$pass = '[passphrase]';
$descriptors = array(
0 => array('pipe', 'r'),
1 => array('pipe', 'w'),
2 => array('file', '/usr/home/userid/error.gpg', 'a'),
3 => array('pipe', 'r')
);
$process = proc_open($cmd, $descriptors, $pipes);
list($stdin, $stdout, $stderr, $passpipe) = $pipes;
fputs($stdin, $message);
fclose($stdin);
fputs($passpipe, $pass);
fclose($passpipe);
while (!feof($stdout)) {
$line = fgets($stdout);
echo $line;
}
--
Alan Little
Phorm PHP Form Processor
http://www.phorm.com/
Navigation:
[Reply to this message]
|