(PECL gnupg >= 0.5)
gnupg_clearencryptkeys — حذف کلیدهای تعیین شده پیش از این برای رمزگذاری
Returns TRUE on success or FALSE on failure.
Example #1 مثال رویهای gnupg_clearencryptkeys()
<?php
$res = gnupg_init();
gnupg_clearencryptkeys($res);
?>
Example #2 مثال شیگرا gnupg_clearencryptkeys()
<?php
$gpg = new gnupg();
$gpg -> clearencryptkeys();
?>