PHP - Manual: gnupg_clearencryptkeys
2024-11-13
(PECL gnupg >= 0.5)
gnupg_clearencryptkeys — Removes all keys which were set for encryption before
$identifier
): bool
成功时返回 true
, 或者在失败时返回 false
。
示例 #1 Procedural gnupg_clearencryptkeys() example
<?php
$res = gnupg_init();
gnupg_clearencryptkeys($res);
?>
示例 #2 OO gnupg_clearencryptkeys() example
<?php
$gpg = new gnupg();
$gpg->clearencryptkeys();
?>
官方地址:https://www.php.net/manual/en/function.gnupg-clearencryptkeys.php