You are here

private function PHPExcel_Reader_Excel5::_readPassword in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php \PHPExcel_Reader_Excel5::_readPassword()

* PASSWORD - Sheet protection (hashed) password (BIFF2 through BIFF8)

1 call to PHPExcel_Reader_Excel5::_readPassword()
PHPExcel_Reader_Excel5::load in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* Loads PHPExcel from file * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php, line 3404

Class

PHPExcel_Reader_Excel5
PHPExcel_Reader_Excel5

Code

private function _readPassword() {
  $length = self::_GetInt2d($this->_data, $this->_pos + 2);
  $recordData = $this
    ->_readRecordData($this->_data, $this->_pos + 4, $length);

  // move stream pointer to next record
  $this->_pos += 4 + $length;
  if (!$this->_readDataOnly) {

    // offset: 0; size: 2; 16-bit hash value of password
    $password = strtoupper(dechex(self::_GetInt2d($recordData, 0)));

    // the hashed password
    $this->_phpSheet
      ->getProtection()
      ->setPassword($password, true);
  }
}