PHP.nl

gnupg_addsignkey

gnupg_addsignkey

Add a key for signing

bool **gnupg_addsignkey** resource $identifier string $fingerprint string $passphrase

identifier``fingerprint``passphraseThe pass phrase.

return.success

Voorbeeld: Procedural example

<?php
$res = gnupg_init();
gnupg_addsignkey($res,"8660281B6051D071D94B5B230549F9DC851566DC","test");
?>

Voorbeeld: OO example

<?php
$gpg = new gnupg();
$gpg->addsignkey("8660281B6051D071D94B5B230549F9DC851566DC","test");
?>