(No version information available, might be only in CVS)
gnupg_cleardecryptkeys — Supprime toutes les clés qui étaient fixées pour déchiffrement auparavant
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, FALSE en cas d'échec.
Exemple #1 Exemple avec gnupg_cleardecryptkeys() (Style procédural)
<?php
$res = gnupg_init();
gnupg_cleardecryptkeys($res);
?>
Exemple #2 Exemple avec gnupg_cleardecryptkeys() (Style orienté objet)
<?php
$gpg = new gnupg();
$gpg -> cleardecryptkeys();
?>