Home
last modified time | relevance | path

Searched refs:result (Results 51 – 68 of 68) sorted by path

123

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php576 // NH hash and add bit-length. Concatenate the result to Y.
1427 // Add this chunk's hash to result so far
H A DRC2.php396 $result = parent::encrypt($plaintext);
398 return $result;
418 $result = parent::decrypt($ciphertext);
420 return $result;
H A DRSA.php241 * Per <http://cseweb.ucsd.edu/~hovav/dist/survey.pdf#page=5>, this number ought not result in primes smaller
H A DRandom.php181 $result = '';
182 while (strlen($result) < $length) {
186 $result .= $r;
189 return substr($result, 0, $length);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1465 * An intermediate cert that linked to itself would result in an infinite loop so to prevent
1732 $result = [];
1762 $result[] = $v;
1766 return $result;
1840 $result = '';
1859 $result .= ASN1::encodeDER($rdn, Maps\RelativeDistinguishedName::MAP);
1861 return $result;
1874 $result = [];
1944 $result[$desc] = isset($result[
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php447 $result = ['hex' => $this->toHex(true)];
449 $result['precision'] = $this->getPrecision();
451 return $result;
3565 _normalize($result) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php1005 $result = [];
1008 $result[] = $relativeDir . $value;
1014 $result = array_merge($result, $temp);
1016 $result[] = $relativeDir . $value;
1020 return $result;
1225 $result = strcasecmp($a['filename'], $b['filename']);
1226 if ($result) {
1227 return $order === SORT_DESC ? -$result : $result;
[all...]
H A DSSH1.php
H A DSSH2.php1310 $result = @stream_select($read, $write, $except, $seconds, $microseconds);
1311 if ($result !== false) {
1312 return $result;
3471 $result = $this->login(...$auth);
3473 return $result;
4179 $result = $client_channel == $channel ? true : $this->get_channel_packet($client_channel, $skip_extended);
4181 return $result;
5183 * Caching this the first time you connect to a server and checking the result on subsequent connections
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php300 $result = $this->sftp->get($this->path, false, $this->pos, $count);
302 if ($result === false) {
307 call_user_func($this->notification, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($result), $this->size);
310 if (empty($result)) { // ie. false or empty string
314 $this->pos += strlen($result);
316 return $result;
332 $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos);
334 if (!$result) {
342 if ($result === false) {
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md221 * Check the result of sanitize before returning in `get_content()` and `get_description()`. [#494](https://github.com/simplepie/simplepie/pull/494)
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php568 // the input chars and putting the result into the output array
651 $result = array();
652 $result[] = (int) $this->_lbase + $sindex / $this->_ncount;
653 $result[] = (int) $this->_vbase + ($sindex % $this->_ncount) / $this->_tcount;
655 if ($T != $this->_tbase) $result[] = $T;
656 return $result;
669 $result = array();
671 $result[] = $last; // copy first char from input to output
684 $result[(count($result)
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php93 $result = $xpath->query($query);
94 if ($result->length !== 0) {
H A DRegistry.php260 $result = @call_user_func_array([$class, 'create'], $parameters);
261 return $result;
267 $result = call_user_func_array([$class, $method], $parameters);
268 return $result;
H A DSimplePie.php1847 $result = $xpath->query($query);
1848 $microformats = $result->length !== 0;
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php91 $result = array();
94 $result[] = $fileinfo;
97 return $result;
H A DZip.php77 $result = array();
80 $result[] = $fileinfo;
83 return $result;
/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DJSStrip.php58 $result = ''; // we store the final result here
66 $result .= $source[$idx];
96 $result .= "\n" . trim(substr($source, $idx + 22, $endNC - ($idx + 22))) . "\n"; // BEGIN comment = 22 chars
141 $result .= substr($source, $idx, $j + 1);
160 $result .= $string;
178 $result .= $string;
196 $result .= $string;
203 $lch = substr($result, -1);
231 $result
[all...]

123