Re: gpg --decrypt
- From: Alan Little <alan@xxxxxxxxxxxxxxxxxxxxx>
- Date: Sun, 07 May 2006 14:38:32 -0500
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/
.
- References:
- gpg --decrypt
- From: Alan Little
- gpg --decrypt
- Prev by Date: Re: secure login system
- Next by Date: problem displaying pdfs from mysql
- Previous by thread: Re: gpg --decrypt
- Next by thread: error_log is not working, script crashes without warning
- Index(es):
Relevant Pages
|