(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
1 2 3 4 | <?php $res = gnupg_init(); echo gnupg_getprotocol( $res ); ?> |
OO gnupg_getprotocol() example
1 2 3 4 | <?php $gpg = new gnupg(); echo $gpg -> getprotocol(); ?> |
Please login to continue.