I would like to know how can i decrypt a file by passing the passphrase/secret key in the command line.

I tried using this, but its still giving me a prompt to enter the passphrase.

echo shell_exec("echo $passphrase | gpg --passphrase-fd 0 -o $unencrypted_file -d $encrypted_file");

My goal is to created a program in PHP that can decrypt the files automatically.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You should probably use the php funtions instead of forking gpg

link|improve this answer
feedback

I don't know what approach the gpg developers were using to prevent that. But as an alternative you can use this PHP module: http://pecl.php.net/package/gnupg to handle the decryption. See also http://php.net/gnupg

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.