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

search for in the

gnupg_seterrormode> <gnupg_keyinfo
[edit] Last updated: Fri, 24 Feb 2012

view this page in

gnupg_setarmor

(PECL gnupg >= 0.1)

gnupg_setarmorToggle armored output

Descrição

bool gnupg_setarmor ( resource $identifier , int $armor )

Toggle the armored output.

Parâmetros

identifier

O identificador gnupg, de uma chamada à gnupg_init() ou gnupg.

armor

Pass a non-zero integer-value to this function to enable armored-output (default). Pass 0 to disable armored output.

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em falhas.

Exemplos

Exemplo #1 Procedural gnupg_setarmor() example

<?php
$res 
gnupg_init();
gnupg_setarmor($res,1); // enable armored output;
gnupg_setarmor($res,0); // disable armored output;
?>

Exemplo #2 OO gnupg_setarmor() example

<?php
$gpg 
= new gnupg();
$gpg -> setarmor(1); // enable armored output;
$gpg -> setarmor(0); // disable armored output;
?>



add a note add a note User Contributed Notes gnupg_setarmor
jmgorena at gmail dot com 10-Jan-2008 07:51
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-----

 
show source | credits | stats | sitemap | contact | advertising | mirror sites