Home
last modified time | relevance | path

Searched refs:out (Results 26 – 33 of 33) sorted by path

12

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php546 $out = $tmpout = self::bcrypt_hash($sha2pass, $sha2salt);
550 $out ^= $tmpout;
552 $results[] = $out;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php916 // An empty child encoding means it has been optimized out.
957 // An empty child encoding means it has been optimized out.
1353 $out = '';
1436 $out .= strrev($v);
1438 return $out;
/dokuwiki/vendor/simplepie/simplepie/
H A DREADME.markdown56 check out the [API documentation][].
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php588 foreach ($this->_hangul_decompose($v) as $out) {
589 $output[] = (int) $out;
593 foreach ($this->_apply_cannonical_ordering($this->NP['replacemaps'][$v]) as $out) {
594 $output[] = (int) $out;
613 $out = $this->_combine(array_slice($output, $last_starter, $seq_len));
616 if ($out) {
617 $output[$last_starter] = $out;
618 if (count($out) != $seq_len) {
679 // Find out, whether two current characters are LV and T
687 // Find out, whethe
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php8 * Takes the hard work out of managing a complete RSS/Atom solution.
170 $out = "GET $get HTTP/1.1\r\n";
171 $out .= "Host: $url_parts[host]\r\n";
172 $out .= "User-Agent: $useragent\r\n";
174 $out .= "Accept-Encoding: x-gzip,gzip,deflate\r\n";
178 $out .= "Authorization: Basic " . base64_encode("$url_parts[user]:$url_parts[pass]") . "\r\n";
181 $out .= "$key: $value\r\n";
183 $out .= "Connection: Close\r\n\r\n";
184 fwrite($fp, $out);
241 $this->error = 'fsocket timed out';
[all...]
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md105 The ``TableFormatter`` class allows you to align texts in multiple columns. It tries to figure out the available
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DOptions.php396 $out = $this->colors->wrap('<' . $arg['name'] . '>', Colors::C_CYAN);
399 $out = '[' . $out . ']';
401 $text .= ' ' . $out;
H A DTableFormatter.php88 * Tries to figure out the width of the terminal
206 $out = '';
218 $out .= $chunk;
222 $out .= $this->border;
225 $out .= "\n";
227 return $out;

12