update : 2015.11.03
php.shukuma.com

검색:
 
 
Removes all keys which were set for encryption before

gnupg_clearencryptkeys

(PECL gnupg >= 0.5)

gnupg_clearencryptkeysRemoves all keys which were set for encryption before

설명

bool gnupg_clearencryptkeys ( resource $identifier )

인수

identifier

gnupg_init()gnupg 호출로 생성되는 gnupg 식별자.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 Procedural gnupg_clearencryptkeys() example

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

Example #2 OO gnupg_clearencryptkeys() example

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