Esempio n. 1
0
 /**
  * Decrypts and verifies encrypted, signed data
  *
  * @param string  $data       the encrypted signed data to be decrypted and
  *                            verified.
  * @param boolean $isFile     whether or not the data is a filename.
  * @param string  $outputFile the name of the file to which the decrypted
  *                            data should be written. If null, the decrypted
  *                            data is returned in the results array.
  *
  * @return array two element array. The array has an element 'data'
  *               containing the decrypted data and an element
  *               'signatures' containing an array of
  *               {@link Crypt_GPG_Signature} objects for the signed data.
  *               If the decrypted data is written to a file, the 'data'
  *               element is null.
  *
  * @throws Crypt_GPG_KeyNotFoundException if the private key needed to
  *         decrypt the data is not in the user's keyring or it the public
  *         key needed for verification is not in the user's keyring.
  *
  * @throws Crypt_GPG_NoDataException if specified data does not contain
  *         GPG signed, encrypted data.
  *
  * @throws Crypt_GPG_BadPassphraseException if a required passphrase is
  *         incorrect or if a required passphrase is not specified. See
  *         {@link Crypt_GPG::addDecryptKey()}.
  *
  * @throws Crypt_GPG_FileException if the output file is not writeable or
  *         if the input file is not readable.
  *
  * @throws Crypt_GPG_Exception if an unknown or unexpected error occurs.
  *         Use the <kbd>debug</kbd> option and file a bug report if these
  *         exceptions occur.
  *
  * @see Crypt_GPG_Signature
  */
 protected function _decryptAndVerify($data, $isFile, $outputFile)
 {
     if ($isFile) {
         $input = @fopen($data, 'rb');
         if ($input === false) {
             throw new Crypt_GPG_FileException('Could not open input file "' . $data . '" for decrypting and verifying.', 0, $data);
         }
     } else {
         $input = strval($data);
         if ($input == '') {
             throw new Crypt_GPG_NoDataException('No valid encrypted signed data found.', self::ERROR_NO_DATA);
         }
     }
     if ($outputFile === null) {
         $output = '';
     } else {
         $output = @fopen($outputFile, 'wb');
         if ($output === false) {
             if ($isFile) {
                 fclose($input);
             }
             throw new Crypt_GPG_FileException('Could not open output file "' . $outputFile . '" for storing decrypted data.', 0, $outputFile);
         }
     }
     $verifyHandler = new Crypt_GPG_VerifyStatusHandler();
     $decryptHandler = new Crypt_GPG_DecryptStatusHandler($this->engine, $this->decryptKeys);
     // If using gpg-agent, set the decrypt pins used by the pinentry
     $this->_setPinEntryEnv($this->decryptKeys);
     $this->engine->reset();
     $this->engine->addStatusHandler(array($verifyHandler, 'handle'));
     $this->engine->addStatusHandler(array($decryptHandler, 'handle'));
     $this->engine->setInput($input);
     $this->engine->setOutput($output);
     $this->engine->setOperation('--decrypt');
     $this->engine->run();
     if ($isFile) {
         fclose($input);
     }
     if ($outputFile !== null) {
         fclose($output);
     }
     $return = array('data' => null, 'signatures' => $verifyHandler->getSignatures());
     // if there was any problem decrypting the data, the handler will
     // deal with it here.
     try {
         $decryptHandler->throwException();
     } catch (Exception $e) {
         if ($e instanceof Crypt_GPG_KeyNotFoundException) {
             throw new Crypt_GPG_KeyNotFoundException('Public key required for data verification not in ', 'the keyring. Either no suitable private decryption key ' . 'is in the keyring or the public key required for data ' . 'verification is not in the keyring. Import a suitable ' . 'key before trying to decrypt and verify this data.', self::ERROR_KEY_NOT_FOUND, $this->engine->getErrorKeyId());
         }
         if ($e instanceof Crypt_GPG_NoDataException) {
             throw new Crypt_GPG_NoDataException('Cannot decrypt and verify data. No PGP encrypted data ' . 'was found in the provided data.', self::ERROR_NO_DATA);
         }
         throw $e;
     }
     if ($outputFile === null) {
         $return['data'] = $output;
     }
     return $return;
 }