GnuPG Funções
PHP Manual

gnupg_cleardecryptkeys

(No version information available, might be only in CVS)

gnupg_cleardecryptkeysRemoves all keys which were set for decryption before

Descrição

bool gnupg_cleardecryptkeys ( resource $identifier )

Parâmetros

identifier

The gnupg identifier, from a call to gnupg_init() or gnupg.

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em falhas.

Exemplos

Exemplo #1 Procedural gnupg_cleardecryptkeys() example

<?php
$res 
gnupg_init();
gnupg_cleardecryptkeys($res);
?>

Exemplo #2 OO gnupg_cleardecryptkeys() example

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


GnuPG Funções
PHP Manual