(no version information, might be only in CVS)
Returns TRUE on success or FALSE on failure.
Example 1. Procedural gnupg_addencryptkey() example
<?php $res = gnupg_init(); gnupg_addencryptkey($res,"8660281B6051D071D94B5B230549F9DC851566DC"); ?>
Example 2. OO gnupg_addencryptkey() example
<?php $gpg = new gnupg(); $gpg -> addencryptkey("8660281B6051D071D94B5B230549F9DC851566DC"); ?>