downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

gnupg_addencryptkey> <GnuPG 関数
Last updated: Fri, 13 Nov 2009

view this page in

gnupg_adddecryptkey

(PECL gnupg >= 0.5)

gnupg_adddecryptkey復号のためのキーを追加する

説明

bool gnupg_adddecryptkey ( resource $identifier , string $fingerprint , string $passphrase )

パラメータ

identifier

gnupg_init() あるいは gnupg のコールで得られた gnupg ID。

fingerprint

フィンガープリントキー。

passphrase

パスフレーズ。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 手続き型の gnupg_adddecryptkey() の例

<?php
$res 
gnupg_init();
gnupg_adddecryptkey($res,"8660281B6051D071D94B5B230549F9DC851566DC","test");
?>

例2 オブジェクト指向の gnupg_adddecryptkey() の例

<?php
$gpg 
= new gnupg();
$gpg -> adddecryptkey("8660281B6051D071D94B5B230549F9DC851566DC","test");
?>



add a note add a note User Contributed Notes
gnupg_adddecryptkey
There are no user contributed notes for this page.

gnupg_addencryptkey> <GnuPG 関数
Last updated: Fri, 13 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites