gnupg_getprotocol

(PECL gnupg >= 0.1)
Returns the currently active protocol for all operations
int gnupg_getprotocol ( resource $identifier )
Parameters:
identifier

The gnupg identifier, from a call to gnupg_init() or gnupg.

Returns:

Returns the currently active protocol, which can be one of GNUPG_PROTOCOL_OpenPGP or GNUPG_PROTOCOL_CMS.

Examples:
Procedural gnupg_getprotocol() example
<?php
$res = gnupg_init();
echo gnupg_getprotocol($res);
?>

OO gnupg_getprotocol() example
<?php
$gpg = new gnupg();
echo $gpg -> getprotocol();
?>

doc_php
2016-02-24 16:03:05
Comments
Leave a Comment

Please login to continue.