Searched refs:buffer (Results 1 – 7 of 7) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
D | Salsa20.php | 334 $buffer = &$this->enbuffer; 336 $buffer = &$this->debuffer; 338 if (!strlen($buffer['ciphertext'])) { 341 $ciphertext = $text ^ Strings::shift($buffer['ciphertext'], strlen($text)); 352 $iv = pack('V', $buffer['counter']) . $this->p2; 354 $buffer['counter'] += (strlen($text) >> 6) + 1; // ie. divide by 64 367 … $block ^= static::salsa20($this->p1 . pack('V', $buffer['counter']++) . $this->p2); 372 $temp = static::salsa20($this->p1 . pack('V', $buffer['counter']++) . $this->p2); 375 $buffer['ciphertext'] = substr($temp, $overflow); 376 } elseif (!strlen($buffer['ciphertext'])) { [all …]
|
/dokuwiki/vendor/splitbrain/lesserphp/src/ |
D | Parser.php | 30 public $buffer; variable in LesserPHP\\Parser 121 public function parse($buffer) argument 127 $this->buffer = $this->writeComments ? $buffer : $this->removeComments($buffer); 144 if ($this->count != strlen($this->buffer)) { 148 strlen($this->buffer) 200 if (empty($this->buffer)) return false; 425 $whiteBefore = isset($this->buffer[$this->count - 1]) && 426 ctype_space($this->buffer[$this->count - 1]); 449 $whiteAfter = isset($this->buffer[$this->count - 1]) && 450 ctype_space($this->buffer[$this->count - 1]); [all …]
|
D | Lessc.php | 1717 $parser->buffer = (string)$strValue;
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
D | SymmetricKey.php | 1356 $buffer = &$this->enbuffer; 1379 if (strlen($buffer['ciphertext'])) { 1382 if (strlen($block) > strlen($buffer['ciphertext'])) { 1383 $buffer['ciphertext'] .= $this->encryptBlock($xor); 1386 $key = Strings::shift($buffer['ciphertext'], $block_size); 1400 $buffer['ciphertext'] = substr($key, $start) . $buffer['ciphertext']; 1409 $pos = &$buffer['pos']; 1481 if (strlen($buffer['xor'])) { 1484 if (strlen($block) > strlen($buffer['xor'])) { 1486 $buffer['xor'] .= $xor; [all …]
|
/dokuwiki/_test/core/ |
D | TestRequest.php | 251 * @param string $buffer 253 public function ob_start_callback($buffer) { argument 254 $this->output_buffer .= $buffer;
|
/dokuwiki/inc/ |
D | io.php | 163 $buffer = bzread($bz, 8192); 164 if (($buffer === false) || (bzerrno($bz) !== 0)) { 167 $str .= $buffer; 813 $buffer = fread($fp, 4); 815 $array = unpack("V", $buffer); 824 $buffer = bzread($bz, 8192); 825 if (($buffer === false) || (bzerrno($bz) !== 0)) { 828 $uncompressedsize += strlen($buffer);
|
/dokuwiki/vendor/splitbrain/php-archive/src/ |
D | Zip.php | 212 $buffer = fread($this->fh, $read_size); 213 $binary_data = pack('a'.$read_size, $buffer); 242 $buffer = gzread($gzp, $read_size); 243 $binary_data = pack('a'.$read_size, $buffer);
|