gnupg &Functions;gnupg
&reftitle.intro;
This module allows you to interact with gnupg.
&reftitle.required;
The gnupg extension requires PHP 4.3.
To use this extension in an OO style, PHP 5 is required.
This extension requires the gpgme
library
&reference.gnupg.configure;
&reference.gnupg.constants;
&reftitle.notes;
This extension makes use of the keyring of the current user. This keyring
is normally located in ~./.gnupg/.
To specify a custom location, store the path to the keyring in the
environment variable GNUPGHOME. See putenv for more information how to do
this.
Some functions require the specification of a key. This specification can
be anything that refers to an unique key (userid, key-id, fingerprint,
...).
This documentation uses the fingerprint in all examples.
keylistiterator
This extension also comes with an Iterator for your keyring.
$userid){
echo $fingerprint." -> ".$userid."\n";
}
?>
]]>
&reftitle.examples;
This example will clearsign a given text.
gnupg clearsign example (procedural)
]]>
gnupg clearsign example (OO)
setsignmode(gnupg::SIG_MODE_CLEAR);
// add key with passphrase 'test' for signing
$gnupg->addsignkey("8660281B6051D071D94B5B230549F9DC851566DC","test");
// sign
$signed = $gnupg->sign("just a test");
echo $signed;
?>
]]>
&reference.gnupg.functions;