| | |
| | | * @category Encryption |
| | | * @package Crypt_GPG |
| | | * @author Nathan Fredrickson <nathan@silverorange.com> |
| | | * @copyright 2005-2010 silverorange |
| | | * @author Michael Gauthier <mike@silverorange.com> |
| | | * @copyright 2005-2013 silverorange |
| | | * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 |
| | | * @version CVS: $Id: Signature.php 302773 2010-08-25 14:16:28Z gauthierm $ |
| | | * @version CVS: $Id$ |
| | | * @link http://pear.php.net/package/Crypt_GPG |
| | | */ |
| | | |
| | |
| | | * @package Crypt_GPG |
| | | * @author Nathan Fredrickson <nathan@silverorange.com> |
| | | * @author Michael Gauthier <mike@silverorange.com> |
| | | * @copyright 2005-2010 silverorange |
| | | * @copyright 2005-2013 silverorange |
| | | * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 |
| | | * @link http://pear.php.net/package/Crypt_GPG |
| | | * @see Crypt_GPG::verify() |
| | |
| | | |
| | | if ($signature->_userId instanceof Crypt_GPG_UserId) { |
| | | $this->_userId = clone $signature->_userId; |
| | | } else { |
| | | $this->_userId = $signature->_userId; |
| | | } |
| | | } |
| | | |