(PECL gnupg >= 0.5)
gnupg_clearsignkeys — Supprime toutes les clés qui étaient fixées pour signature auparavant
$identifier
)
identifier
L'identifiant gnupg, généré par un appel à la fonction gnupg_init() ou à la fonction gnupg.
Cette fonction retourne TRUE
en cas de
succès ou FALSE
si une erreur survient.
Exemple #1 Exemple avec gnupg_clearsignkeys() (Style procédural)
<?php
$res = gnupg_init();
gnupg_clearsignkeys($res);
?>
Exemple #2 Exemple avec gnupg_clearsignkeys() (Style orienté objet)
<?php
$gpg = new gnupg();
$gpg -> clearsignkeys();
?>