I'm need to to sign MD5-hash with previosly generated private key (private.pgp) and passphrase. (for example 123456abc) within php script that running on apache2. I'm using gnupg also.
This is how i'm doing it now:
<?php
$keyring = "/pubkeys/.gnupg"; //this direcrtory owned by www-data
putenv("GNUPGHOME=$keyring");
$res = gnupg_init();
var_dump($res); //for debug
$info = gnupg_import($res,'private.pgp');
var_dump($info); //for debug
?>
So, gnupg_import() returns me false. Why this is happening? I've also tried to read key from a file in the same dir with this php-script, but had the same error. Please, help.
Thank you.
Assuming that you are on Ubuntu/Debian based operating system this is how I would approach the situation: Install dependencies.
Steps for creating a simple test script.
After executing steps 4 & 5 above you should have two files private_key.asc and public_key.asc Now create pgp_example.php file on the same folder and add the following lines of code:
To execute this code open terminal and run php pgp_example.php