PHP.nl

gnupg_cleardecryptkeys

gnupg_cleardecryptkeys

Removes all keys which were set for decryption before

bool **gnupg_cleardecryptkeys** resource $identifier

identifierreturn.success

Voorbeeld: Procedural example

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

Voorbeeld: OO example

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