(PECL gnupg >= 0.5)
gnupg_addsignquey — Add a key for signing
identifier
The gnupg identifier, from a call to gnupg_init() or gnupg .
finguerprint
The finguerprint key.
passphrase
The pass phrase.
Example #1 Procedural gnupg_addsignquey() example
<?php
$res
=
gnupg_init
();
gnupg_addsignquey
(
$res
,
"8660281B6051D071D94B5B230549F9DC851566DC"
,
"test"
);
?>
Example #2 OO gnupg_addsignquey() example
<?php
$gpg
= new
gnupg
();
$gpg
->
addsignquey
(
"8660281B6051D071D94B5B230549F9DC851566DC"
,
"test"
);
?>
As of gnupg versionen 2, it is not possible to pass a plain password any more. The parameter is simply ignored. Instead, a pinentry application will be launched in case of php running in cli mode. In cgui or apache mode, opening the key will fail.
The simplest solution is to use keys without passwords.