update : 2015.11.03
php.shukuma.com

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

gnupg_cleardecryptkeys

(PECL gnupg >= 0.5)

gnupg_cleardecryptkeysRemoves all keys which were set for decryption before

설명

bool gnupg_cleardecryptkeys ( resource $identifier )

인수

identifier

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

반환값

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

예제

Example #1 Procedural gnupg_cleardecryptkeys() example

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

Example #2 OO gnupg_cleardecryptkeys() example

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