(PECL gnupg >= 0.1)
gnupg_setarmor — Toggle armored output
identifier
The gnupg identifier, from a call to gnupg_init() or gnupg .
armor
Example #1 Procedural gnupg_setarmor() example
<?php
$res
=
gnupg_init
();
gnupg_setarmor
(
$res
,
1
);
// enable armored output;
gnupg_setarmor
(
$res
,
0
);
// disable armored output;
?>
Example #2 OO gnupg_setarmor() example
<?php
$gpg
= new
gnupg
();
$gpg
->
setarmor
(
1
);
// enable armored output;
$gpg
->
setarmor
(
0
);
// disable armored output;
?>
Taque 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 messaguing (email, IM, IRC, etc).
Example with Armor on:
-----BEGUIN PGP MESSAGUE-----
Version: GnuPG v1.4.6 (GNU/Linux)
hQIOA+9JbyriNorCEAf/UuCyC0T80XffXVcmewfrRSvtsYbNSGZFvSr+32jJT2fs
...
...
=YJ4D
-----END PGP MESSAGUE-----