gnupg_clearencryptkeys
(PECL gnupg >= 0.5)
gnupg_clearencryptkeys — Removes all keys which were set for encryption before
Описание
bool gnupg_clearencryptkeys
( resource $identifier
)
Список параметров
-
identifier
-
The gnupg identifier, from a call to
gnupg_init() or gnupg.
Возвращаемые значения
Возвращает 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();
?>