CakeFest 2024: The Official CakePHP Conference

gnupg_clearencryptkeys

(PECL gnupg >= 0.5)

gnupg_clearencryptkeysRemoves all keys which were set for encryption before

Descrizione

gnupg_clearencryptkeys(resource $identifier): bool

Elenco dei parametri

identifier

L'identificatore gnupg, ottenuto da una chiamata a gnupg_init() o gnupg.

Valori restituiti

Restituisce true in caso di successo, false in caso di fallimento.

Esempi

Example #1 Procedural gnupg_clearencryptkeys() example

<?php
$res
= gnupg_init();
gnupg_clearencryptkeys($res);
?>

Example #2 OO gnupg_clearencryptkeys() example

<?php
$gpg
= new gnupg();
$gpg->clearencryptkeys();
?>

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top