gnupg_clearsignkeys
(No version information available, might be only in CVS)
gnupg_clearsignkeys — Removes all keys which were set for signing before
설명
bool gnupg_clearsignkeys
( resource $identifier
)
반환값
ì„±ê³µí• ê²½ìš° TRUE를, ì‹¤íŒ¨í• ê²½ìš° FALSE를 반환합니다.
ì˜ˆì œ
Example#1 Procedural gnupg_clearsignkeys() example
<?php
$res = gnupg_init();
gnupg_clearsignkeys($res);
?>
Example#2 OO gnupg_clearsignkeys() example
<?php
$gpg = new gnupg();
$gpg -> clearsignkeys();
?>