gnupg_setarmor

(PECL gnupg:0.1-1.3.1)

gnupg_setarmor — Toggle armored output

Описание

bool gnupg_setarmor ( resource $identifier , int $armor )

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

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Примеры

Пример #1 Procedural gnupg_setarmor() example

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

Пример #2 OO gnupg_setarmor() example

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

Коментарии

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-----
2008-01-10 16:51:33
http://php5.kiev.ua/manual/ru/function.gnupg-setarmor.html

    Поддержать сайт на родительском проекте КГБ