Home
last modified time | relevance | path

Searched refs:result (Results 126 – 150 of 1997) sorted by path

12345678910>>...80

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DPKCS8.php104 $result = $components + PKCS1::load($key[$type . 'Key']);
107 $result['meta'] = $key['meta'];
110 return $result;
H A DPSS.php121 $result = $components + PKCS1::load($key[$type . 'Key']);
150 $result['hash'] = str_replace('id-', '', $params['hashAlgorithm']['algorithm']);
151 …$result['MGFHash'] = str_replace('id-', '', $params['maskGenAlgorithm']['parameters']['algorithm']…
153 $result['saltLength'] = (int) $params['saltLength']->toString();
157 $result['meta'] = $key['meta'];
160 return $result;
H A DPuTTY.php71 $result = Strings::unpackSSH2('ii', $public);
72 if ($result === false) {
75 list($publicExponent, $modulus) = $result;
77 $result = Strings::unpackSSH2('iiii', $private);
78 if ($result === false) {
82 list($privateExponent, $primes[1], $primes[2], $coefficients[2]) = $result;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRandom.php182 $result = '';
183 while (strlen($result) < $length) {
187 $result .= $r;
190 return substr($result, 0, $length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1764 $result = [];
1795 return $result;
1905 $result = [];
1975 $result[$desc] = isset($result[$desc]) ?
2787 return $result;
2842 return $result;
2903 return $result;
3037 return $result;
3350 return $result;
3540 return $result;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php449 $result = ['hex' => $this->toHex(true)];
451 $result['precision'] = $this->getPrecision();
453 return $result;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php475 * @param BCMath $result
478 protected function normalize(BCMath $result) argument
480 $result->precision = $this->precision;
481 $result->bitmask = $this->bitmask;
483 if ($result->bitmask !== false) {
484 $result->value = bcmod($result->value, $result->bitmask->value);
487 return $result;
H A DEngine.php297 return '0' . $result;
300 return $result;
386 return $result;
408 $result = [
412 return $this->precision > 0 ? $result + ['precision' => $this->precision] : $result;
568 return $this->normalize($result);
700 $result = new $class(1);
701 $result = static::prepareReduce($result->value, $n_value, $class);
705 $result = static::squareReduce($result, $n_value, $class);
716 $result = static::squareReduce($result, $n_value, $class);
[all …]
H A DGMP.php464 * @param GMP $result
467 protected function normalize(GMP $result) argument
469 $result->precision = $this->precision;
470 $result->bitmask = $this->bitmask;
472 if ($result->bitmask !== false) {
473 $flip = $result->value < 0;
475 $result->value = -$result->value;
477 $result->value = $result->value & $result->bitmask->value;
479 $result->value = -$result->value;
483 return $result;
H A DOpenSSL.php65 if (!openssl_public_encrypt($plaintext, $result, $key, OPENSSL_NO_PADDING)) {
70 return new $class($result, 256);
H A DPHP.php170 $result = '';
178 ) . $result;
180 $result = ltrim($result, '0');
186 $result = '-' . $result;
189 return $result;
209 $result = implode('', array_map('chr', $result));
218 $result;
696 $result = [];
778 return $result;
800 return (count($x_value) > count($y_value)) ? $result : -$result;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/
H A DBarrett.php128 $result = bcsub($n, $temp);
131 if ($result[0] == '-') {
133 $result = bcadd($result, $temp);
136 while (bccomp($result, $m) >= 0) {
137 $result = bcsub($result, $m);
140 return $result;
179 $result = bcsub($r1, $r2);
182 if ($result[0] == '-') {
184 $result = bcadd($result, $q);
188 $result = bcsub($result, $n);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/
H A DMontgomery.php82 $result = $part1->multiply($mod2);
83 $result = $result->multiply($y1);
88 $result = $result->add($temp);
89 list(, $result) = $result->divide($n);
91 return $result;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DBarrett.php128 $result = $class::subtractHelper($n[self::VALUE], false, $temp[self::VALUE], false);
130 while (self::compareHelper($result[self::VALUE], $result[self::SIGN], $m, false) >= 0) {
131 $result = $class::subtractHelper($result[self::VALUE], $result[self::SIGN], $m, false);
134 return $result[self::VALUE];
187 $result = array_slice($x, 0, $n_length + 1);
195 $result = $class::addHelper($result, false, $corrector_value, false);
196 $result = $result[self::VALUE];
200 $result = $class::subtractHelper($result, false, $temp[self::VALUE], $temp[self::SIGN]);
201 while (self::compareHelper($result[self::VALUE], $result[self::SIGN], $n, false) > 0) {
202 $result = $class::subtractHelper($result[self::VALUE], $result[self::SIGN], $n, false);
[all …]
H A DEvalBarrett.php258 * @param string $result
280 $' . $result . '[$j] = $upper;
290 $' . $result . '[$i] = 0;
292 ++$' . $result . '[$i];
306 * @param string $result
313 $' . $result . ' = $' . $known . ';
328 $code .= '$' . $result . '[$i] = ';
337 $' . $result . '[$j] = $subtemp;
350 --$' . $result . '[$i];
365 * @param string $result
[all …]
H A DMontgomery.php74 $result = [self::VALUE => $x];
81 $result = $class::addHelper($result[self::VALUE], false, $temp, false);
84 $result[self::VALUE] = array_slice($result[self::VALUE], $k);
87 $result = $class::subtractHelper($result[self::VALUE], false, $n, false);
90 return $result[self::VALUE];
122 $result = ($result * (2 - $x * $result)) & 0xF; // x**-1 mod 2**4
123 $result = ($result * (2 - ($x & 0xFF) * $result)) & 0xFF; // x**-1 mod 2**8
124 $result = ($result * ((2 - ($x & 0xFFFF) * $result) & 0xFFFF)) & 0xFFFF; // x**-1 mod 2**16
125 $result = $class::BASE == 26 ?
126 …fmod($result * (2 - fmod($x * $result, $class::BASE_FULL)), $class::BASE_FULL) : // x**-1 mod 2**26
[all …]
H A DPowerOfTwo.php60 $result = $lhs->bitwise_and($rhs->subtract($temp));
61 return $result->value;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php209 $result = str_repeat('0', 2 * $length - 1);
210 $result = BinaryField::base2ToBase256($result);
211 $size = strlen($result);
221 $result ^= str_pad($temp, $size, "\0", STR_PAD_LEFT);
225 return $result;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php990 $result = [];
999 $result = array_merge($result, $temp);
1005 return $result;
1207 return $order === SORT_DESC ? -$result : $result;
1379 if (is_array($result) && isset($result['.']) && isset($result['.']->stat)) {
1382 if (is_object($result) && isset($result->stat)) {
1436 if (is_array($result) && isset($result['.']) && isset($result['.']->lstat)) {
1439 if (is_object($result) && isset($result->lstat)) {
2281 return $result;
2940 if (is_object($result) && isset($result->$type)) {
[all …]
H A DSSH2.php3365 $result = $this->login(...$auth);
3367 return $result;
4070 …$result = $client_channel == $channel ? true : $this->get_channel_packet($client_channel, $skip_ex…
4072 return $result;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php318 $result = $this->sftp->get($this->path, false, $this->pos, $count);
320 if ($result === false) {
325 …ication, STREAM_NOTIFY_PROGRESS, STREAM_NOTIFY_SEVERITY_INFO, '', 0, strlen($result), $this->size);
328 if (empty($result)) { // ie. false or empty string
332 $this->pos += strlen($result);
334 return $result;
351 $result = $this->sftp->put($this->path, $data, SFTP::SOURCE_STRING, $this->pos);
353 if (!$result) {
361 if ($result === false) {
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-normalizer/
H A DNormalizer.php120 $result = $tail = '';
142 $result .= $lastUchr;
169 $result .= $lastUchr;
194 return $result.$lastUchr.$tail;
199 $result = '';
219 $result .= implode('', $c);
224 $result .= substr($s, $i, $j);
287 $result .= implode('', $c);
291 $result .= $uchr;
296 $result .= implode('', $c);
[all …]
/plugin/authjoomla/
H A Dauth.php52 $result = $this->_query($sql, ['session' => $session]);
53 if ($result === false) return;
56 $_SERVER['REMOTE_USER'] = $result[0]['user'];
/plugin/authldaplocal/
H A Dauth.php214 $result = @ldap_get_entries($this->con, $sr);
219 if(!is_array($result) || $result['count'] != 1) {
223 $user_result = $result[0];
272 $result = ldap_get_entries($this->con, $sr);
275 if(is_array($result)) foreach($result as $grp) {
/plugin/authlinotp/
H A Dauth.php68 $status = $body->result->status;
69 $value = $body->result->value;

12345678910>>...80