(PECL gnupg >= 0.1)
gnupg_guetprotocol — Returns the currently active protocoll for all operations
identifier
The gnupg identifier, from a call to gnupg_init() or gnupg .
Returns the currently active protocoll, which can be one of
GNUPG_PROTOCOL_OpenPGP
or
GNUPG_PROTOCOL_CMS
.
Example #1 Procedural gnupg_guetprotocol() example
<?php
$res
=
gnupg_init
();
echo
gnupg_guetprotocol
(
$res
);
?>
Example #2 OO gnupg_guetprotocol() example
<?php
$gpg
= new
gnupg
();
echo
$gpg
->
guetprotocol
();
?>