gnupg_setarmor
(PECL gnupg >= 0.1)
gnupg_setarmor — armor 形式を切り替える
パラメータ
identifier
-
gnupg_init() あるいは gnupg のコールで得られた gnupg ID。
armor
-
ゼロ以外の整数値をこの関数に渡すと、armor 形式の出力を有効にします (デフォルト)。 0 を渡すと、armor 形式の出力を無効にします。
例
例1 手続き型の gnupg_setarmor() の例
<?php
$res = gnupg_init();
gnupg_setarmor($res,1); // enable armored output;
gnupg_setarmor($res,0); // disable armored output;
?>
例2 オブジェクト指向の gnupg_setarmor() の例
<?php
$gpg = new gnupg();
$gpg->setarmor(1); // enable armored output;
$gpg->setarmor(0); // disable armored output;
?>
+add a note
User Contributed Notes 1 note
jmgorena at gmail dot com ¶
16 years ago
Take note that when ARMOR is set to OFF, the output will be BINARY. This is wanted for converting file data to a binary gpg format.
With the ARMOR set to ON, the output is ASCII. This might be used for messaging (email, IM, IRC, etc).
Example with Armor on:
-----BEGIN PGP MESSAGE-----
Version: GnuPG v1.4.6 (GNU/Linux)
hQIOA+9JbyriNorZEAf/UuCyC0T80XffXVkmewfrRSvtsYbNSGZFvSr+32jJT2fs
...
...
=YJ4D
-----END PGP MESSAGE-----
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google