Forum und email

gnupg_cleardecryptkeys

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

gnupg_cleardecryptkeys — 事前に復号のために設定されたすべてのキーを削除する

説明

bool gnupg_cleardecryptkeys ( resource $identifier )

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

Example#1 手続き型の gnupg_cleardecryptkeys() の例

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

Example#2 オブジェクト指向の gnupg_cleardecryptkeys() の例

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