Home
last modified time | relevance | path

Searched refs:c (Results 151 – 175 of 3932) sorted by path

12345678910>>...158

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DLICENSE3 Copyright (c) 2015 Michael Dowling <mtdowling@gmail.com>
4 Copyright (c) 2015 Márk Sági-Kazár <mark.sagikazar@gmail.com>
5 Copyright (c) 2015 Graham Campbell <hello@gjcampbell.co.uk>
6 Copyright (c) 2016 Tobias Schultze <webmaster@tubo-world.de>
7 Copyright (c) 2016 George Mponos <gmponos@gmail.com>
8 Copyright (c) 2018 Tobias Nyholm <tobias.nyholm@gmail.com>
H A DREADME.md721 echo UriResolver::relativize($base, new Uri('http://example.com/a/b/c')); // prints 'c'.
784 Example: `http://example.org/../a/b/../c/./d.html` → `http://example.org/a/c/d.html`
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DLICENSE1 Copyright (c) 2011-2020 Jordi Boggiano
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/
H A DLICENSE.txt3 Copyright (c) 2016 - 2022 Paragon Initiative Enterprises
29 Copyright (c) 2014 Steve Thomas
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DHex.php49 $c = $chunk[1] & 0xf;
55 (87 + $c + ((($c - 10) >> 8) & ~38))
77 $c = $chunk[1] & 0xf;
83 (55 + $c + ((($c - 10) >> 8) & ~6))
120 $c = $chunk[$hex_pos];
121 $c_num = $c ^ 48;
123 $c_alpha = ($c & ~32) - 55;
/plugin/authgooglesheets/vendor/paragonie/random_compat/
H A DLICENSE3 Copyright (c) 2015 Paragon Initiative Enterprises
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/
H A DLICENSE1 Copyright (c) 2011-2019 TerraFrost and other contributors
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DChaCha20.php278 * @param int $c
281 protected static function quarterRound(&$a, &$b, &$c, &$d) argument
288 $c+= $d; $b = self::leftRotate($b ^ $c, 12);
290 $c+= $d; $b = self::leftRotate($b ^ $c, 7);
H A DDES.php1244 $c = ( $key['c'] >> 4) & 0x0FFFFFFF;
1252 $c <<= $shifts[$i];
1253 $c = ($c | ($c >> 28)) & 0x0FFFFFFF;
1258 $cp = $pc2mapc1[ $c >> 24 ] | $pc2mapc2[($c >> 16) & 0xFF] |
1259 $pc2mapc3[($c >> 8) & 0xFF] | $pc2mapc4[ $c & 0xFF];
1339 foreach ([self::ENCRYPT, self::DECRYPT] as $c) {
1341 $crypt_block[$c] = '
1370 $crypt_block[$c] .= '
1371 … $b1 = ((' . $r . ' >> 3) & 0x1FFFFFFF) ^ (' . $r . ' << 29) ^ ' . $k[$c][++$ki] . ';
1372 … $b2 = ((' . $r . ' >> 31) & 0x00000001) ^ (' . $r . ' << 1) ^ ' . $k[$c][++$ki] . ';' .
[all …]
H A DDSA.php152 list(, $c) = $x->divide($divisor);
153 $p = $x->subtract($c->subtract(self::$one));
H A DHash.php183 private $c; variable in phpseclib3\\Crypt\\Hash
507 $c = new AES('ctr');
508 $c->disablePadding();
509 $c->setKey($kp);
510 $c->setIV($nonce);
558 $y .= $c;
974 * @param int $c
1167 * @param int $c
1407 $c = clone $hash[2];
1453 $d = clone $c;
[all …]
H A DRSA.php697 $c = pack('N', $i);
698 $t .= $this->mgfHash->hash($mgfSeed . $c);
H A DRijndael.php161 private $c; variable in phpseclib3\\Crypt\\Rijndael
346 $c = $this->c;
368 $j = $c[1];
369 $k = $c[2];
370 $l = $c[3];
396 $j = $c[1];
397 $k = $c[2];
398 $l = $c[3];
436 $c = $this->c;
470 $j = $Nb - $c[1];
[all …]
H A DSalsa20.php164 $c = clone $this;
165 $c->setCounter(0);
166 $c->usePoly1305 = false;
167 $block = $c->encrypt(str_repeat("\0", 256));
429 * @param int $c
432 protected static function quarterRound(&$a, &$b, &$c, &$d) argument
435 $c ^= self::leftRotate($b + $a, 9);
436 $d ^= self::leftRotate($c + $b, 13);
437 $a ^= self::leftRotate($d + $c, 18);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1094 $c = ceil($n / $hashObj->getLengthInBytes());
1096 for ($j = 1; $j <= $c; $j++) {
1450 $ciphertext .= ($c = $plaintext[$i] ^ $this->encryptBlock($iv));
1451 $iv = substr($iv, 1) . $c;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBinary.php211 $c = $y1->multiply($o2)->multiply($z2);
214 $f = $c->add($d);
264 $c = $z1->multiply($z1);
265 $d = $c->multiply($c);
267 $z3 = $x1->multiply($c);
H A DKoblitzPrime.php198 $c = $b->multiply($b);
200 $d = $d->multiply($d)->subtract($a)->subtract($c)->multiply($this->two);
205 $this->eight->multiply($c)
265 $c = clone $zero;
285 $a = $c;
286 $c = $temp->subtract($a->multiply($q));
294 $b0 = $c;
301 $b1 = $c->negate();
312 $b2 = $c->negate();
H A DMontgomery.php195 $c = $x3->add($z3);
198 $cb = $c->multiply($b);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd25519.php268 $c = $this->two->multiply($z1)->multiply($z1);
273 $f = $c->add($g);
319 $c = $t1->multiply($this->two)->multiply($this->d)->multiply($t2);
322 $f = $d->subtract($c);
323 $g = $d->add($c);
H A DEd448.php208 $c = $x1->multiply($x1);
210 $e = $c->add($d);
215 $y3 = $c->subtract($d)->multiply($e);
257 $c = $x1->multiply($x2);
259 $e = $this->d->multiply($c)->multiply($d);
264 $x3 = $a->multiply($f)->multiply($h->subtract($c)->subtract($d));
265 $y3 = $a->multiply($g)->multiply($d->subtract($c));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php75 private function rsadp($c) argument
77 if ($c->compare(self::$zero) < 0 || $c->compare($this->modulus) > 0) {
80 return $this->exponentiate($c);
324 * @param string $c
327 private function rsaes_pkcs1_v1_5_decrypt($c) argument
337 $c = $this->os2ip($c);
338 $m = $this->rsadp($c);
374 * @param string $c
377 private function rsaes_oaep_decrypt($c) argument
390 $c = $this->os2ip($c);
[all …]
H A DPublicKey.php359 $c = $this->rsaep($m);
360 $c = $this->i2osp($c, $this->k);
364 return $c;
406 $c = $this->rsaep($m);
407 $c = $this->i2osp($c, $this->k);
411 return $c;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php1388 $c = ($c << 8) | ord($in[$i++]);
1389 $c = ($c << 8) | ord($in[$i++]);
1392 $c = ($c << 8) | ord($in[$i++]);
1406 $c = ($c << 6) | (ord($in[$i++]) & 0x3F);
1419 $c >>= 8;
1421 $c >>= 8;
1438 $c = ($c >> 6) | 0x04000000;
1442 $c = ($c >> 6) | 0x00200000;
1446 $c = ($c >> 6) | 0x00010000;
1450 $c = ($c >> 6) | 0x00000800;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php270 $c = '0';
281 $a = $c;
282 $c = bcsub($temp, bcmul($a, $q, 0), 0);
H A DEngine.php1174 $c = clone $zero;
1185 $a = $c;
1186 $c = $temp->subtract($a->multiply($q));

12345678910>>...158