From b2eb0df792e7724538c4afeb7d8929a241a03773 Mon Sep 17 00:00:00 2001 From: Heshan Date: Tue, 12 Jul 2011 09:42:44 +0530 Subject: Remove the library addons and other unwanted folders. --- .../php-reader/src/ASF/Object/DigitalSignature.php | 91 ---------------------- 1 file changed, 91 deletions(-) delete mode 100644 libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ASF/Object/DigitalSignature.php (limited to 'libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ASF/Object/DigitalSignature.php') diff --git a/libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ASF/Object/DigitalSignature.php b/libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ASF/Object/DigitalSignature.php deleted file mode 100644 index 64a7690..0000000 --- a/libraries/phpvideotoolkit/adapters/ffmpeg-php/php-reader/src/ASF/Object/DigitalSignature.php +++ /dev/null @@ -1,91 +0,0 @@ -Digital Signature Object lets authors sign the portion of their - * header that lies between the end of the File Properties Object and the - * beginning of the Digital Signature Object. - * - * @package php-reader - * @subpackage ASF - * @author Sven Vollbehr - * @copyright Copyright (c) 2008 The PHP Reader Project Workgroup - * @license http://code.google.com/p/php-reader/wiki/License New BSD License - * @version $Rev: 108 $ - */ -final class ASF_Object_DigitalSignature extends ASF_Object -{ - /** @var integer */ - private $_signatureType; - - /** @var string */ - private $_signatureData; - - /** - * Constructs the class with given parameters and reads object related data - * from the ASF file. - * - * @param Reader $reader The reader object. - * @param Array $options The options array. - */ - public function __construct($reader, &$options = array()) - { - parent::__construct($reader, $options); - - $this->_signatureType = $this->_reader->readUInt32LE(); - $signatureDataLength = $this->_reader->readUInt32LE(); - $this->_signatureData = $this->_reader->read($signatureDataLength); - } - - /** - * Returns the type of digital signature used. This field is set to 2. - * - * @return integer - */ - public function getSignatureType() { return $this->_signatureType; } - - /** - * Returns the digital signature data. - * - * @return string - */ - public function getSignatureData() { return $this->_signatureData; } -} -- cgit v1.2.3