Home
last modified time | relevance | path

Searched refs:x (Results 101 – 125 of 1696) sorted by path

12345678910>>...68

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md722 echo UriResolver::relativize($base, new Uri('http://example.com/a/x/y')); // prints '../x/y'.
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md27 * Fixed support for psr/log 3.x (#1589)
32 * Fixed support for psr/log 2.x (#1587)
108 …s is a major release, see [UPGRADE.md](UPGRADE.md) for details if you are coming from a 1.x release
117 …s is a major release, see [UPGRADE.md](UPGRADE.md) for details if you are coming from a 1.x release
133 …s is a major release, see [UPGRADE.md](UPGRADE.md) for details if you are coming from a 1.x release
152 * Added support for the PHP 7.x `mongodb` extension in the MongoDBHandler
161 …ed $dateFormat and $removeUsedContextFields arguments to PsrLogMessageProcessor (backport from 2.x)
192 * Fixed forward-compatible interfaces to be compatible with Monolog 1.x too.
197 * Deprecated RavenHandler, use sentry/sentry 2.x and their Sentry\Monolog\Handler instead
H A DREADME.md71 Monolog 1.x support is somewhat limited at this point and only important fixes will be done. You sh…
H A DUPGRADE.md41 as in 1.x.
67 - Removed deprecated RavenHandler handler, use sentry/sentry 2.x and their Sentry\Monolog\Handler i…
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/
H A DREADME.md26 support, see [the v1.x branch](https://github.com/paragonie/constant_time_encoding/tree/v1.x).
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php261 * @param string $x
264 public static function bits2bin($x) argument
281 $length = strlen($x);
288 $x = str_repeat('0', $pad) . $x;
308 * @param string $x
321 $len = strlen($x);
324 $x = str_pad($x, $len + PHP_INT_SIZE - $mod, "\0", STR_PAD_LEFT);
329 $digits = unpack('N*', $x);
334 $digits = unpack('J*', $x);
347 * @param string $x
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DChaCha20.php341 * @param string $x
343 protected static function salsa20($x) argument
345 …x1, $x2, $x3, $x4, $x5, $x6, $x7, $x8, $x9, $x10, $x11, $x12, $x13, $x14, $x15) = unpack('V*', $x);
H A DDSA.php151 $x = BigInteger::random($L);
152 list(, $c) = $x->divide($divisor);
153 $p = $x->subtract($c->subtract(self::$one));
215 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one));
216 $private->y = $private->g->powMod($private->x, $private->p);
243 $new->x = $components['x'];
H A DEC.php124 protected $x; variable in phpseclib3\\Crypt\\EC
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php539 $x = $this->int2octets($this->x);
543 $k = $this->hmac->hash($v . "\0" . $x . $h1);
546 $k = $this->hmac->hash($v . "\1" . $x . $h1);
H A DSymmetricKey.php3238 * @param string $x
3241 protected static function safe_intval($x) argument
3244 case is_int($x):
3247 return $x;
3249 return (fmod($x, 0x80000000) & 0x7FFFFFFF) |
3250 ((fmod(floor($x / 0x80000000), 2) & 1) << 31);
3312 * @param string $x
3315 private function ghash($x) argument
3319 $x = str_split($x, 16);
3329 foreach ($x as $xn) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DOpenSSH.php58 list($p, $q, $g, $y, $x, $comment) = Strings::unpackSSH2('i5s', $parsed['paddedKey']);
118 …Key(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $password = '', arr… argument
121 $privateKey = Strings::packSSH2('si5', 'ssh-dss', $p, $q, $g, $y, $x);
H A DPKCS1.php119 …Key(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $password = '', arr… argument
127 'x' => $x
H A DPKCS8.php134 …Key(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $password = '', arr… argument
143 $key = ASN1::encodeDER($x, Maps\DSAPublicKey::MAP);
H A DPuTTY.php70 list($x) = Strings::unpackSSH2('i', $private);
88 …Key(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $password = false, … argument
95 $private = Strings::packSSH2('i', $x);
H A DRaw.php73 …ivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, BigInteger $x, $password = '') argument
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php38 protected $x; variable in phpseclib3\\Crypt\\DSA\\PrivateKey
67 $this->y = $this->g->powMod($this->x, $this->p);
115 $temp = $h->add($this->x->multiply($r));
154 $this->y = $this->g->powMod($this->x, $this->p);
157 …return $type::savePrivateKey($this->p, $this->q, $this->g, $this->y, $this->x, $this->password, $o…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php72 public function convertInteger(BigInteger $x) argument
74 return $this->factory->newInteger($x);
142 public function rangeCheck(BigInteger $x) argument
152 if ($x->compare($this->order) > 0 || $x->compare($zero) <= 0) {
H A DBinary.php117 * @param string|BinaryInteger $x
120 public function setBasePoint($x, $y) argument
123 case !is_string($x) && !$x instanceof BinaryInteger:
132 is_string($x) ? $this->factory->newInteger(pack('H*', $x)) : $x,
299 list($x, $y) = $p;
301 $lhs = $lhs->add($x->multiply($y));
302 $x2 = $x->multiply($x);
303 $x3 = $x2->multiply($x);
353 list($x, $y, $z) = $p;
357 $x->multiply($z2),
H A DKoblitzPrime.php242 list($x, $y) = $p;
244 $temp = $x->multiply($x)->multiply($x);
H A DMontgomery.php127 * @param BigInteger|PrimeInteger $x
131 public function setBasePoint($x, $y) argument
134 case !$x instanceof BigInteger && !$x instanceof PrimeInteger:
143 $x instanceof BigInteger ? $this->factory->newInteger($x) : $x,
226 $alreadyInternal = isset($x[1]);
228 $x = $p[0];
235 list($p2, $p1) = $this->doubleAndAddPoint($p2, $p1, $x);
237 list($p1, $p2) = $this->doubleAndAddPoint($p1, $p2, $x);
280 list($x, $z) = $p;
281 return [$x->divide($z)];
H A DPrime.php155 case !$x instanceof BigInteger && !$x instanceof PrimeInteger:
164 $x instanceof BigInteger ? $this->factory->newInteger($x) : $x,
347 return [$x, $y];
369 list($x, $y, $z) = $p;
370 $x2 = $x->multiply($x);
392 list($x, $y) = $p;
393 $x2 = $x->multiply($x);
436 return [$x, $y];
478 list($x, $y) = $p;
481 $temp = $x->multiply($x)->multiply($x)->add($temp);
[all …]
H A DTwistedEdwards.php120 public function setBasePoint($x, $y) argument
123 case !$x instanceof BigInteger && !$x instanceof PrimeInteger:
132 $x instanceof BigInteger ? $this->factory->newInteger($x) : $x,
185 list($x, $y, $z) = $p;
188 $x->multiply($z),
210 list($x, $y) = $p;
211 $x2 = $x->multiply($x);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DCurve25519.php77 public function rangeCheck(BigInteger $x) argument
79 if ($x->getLength() > 256 || $x->isNegative()) {
H A DCurve448.php88 public function rangeCheck(BigInteger $x) argument
90 if ($x->getLength() > 448 || $x->isNegative()) {

12345678910>>...68