Home
last modified time | relevance | path

Searched refs:x (Results 401 – 425 of 1696) sorted by last modified time

1...<<11121314151617181920>>...68

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
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 DSalsa20.php407 * @param int $x
411 protected static function leftRotate($x, $n) argument
413 $r1 = $x << $n;
416 $r2 = ($x & 0xFFFFFFFF) >> (32 - $n);
418 $r2 = $x >> (32 - $n);
477 * @param string $x
479 protected static function salsa20($x) argument
481 $z = $x = unpack('V*', $x);
487 $x[$i] += $z[$i];
490 return pack('V*', ...$x);
/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),
/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 DEd25519.php134 $x = $x2->pow($exp);
137 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
141 $x = $x->multiply($temp);
142 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
146 if ($x->isOdd() != $sign) {
147 $x = $x->negate();
150 return [$x, $y];
196 list($x, $y) = $point;
199 if ($x->isOdd()) {
H A DEd448.php82 $x = $x2->pow($exp);
84 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
87 if ($x->isOdd() != $sign) {
88 $x = $x->negate();
91 return [$x, $y];
138 list($x, $y) = $point;
140 if ($x->isOdd()) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/
H A DGoogleCloudDocumentaiV1beta2Vertex.php25 public $x; variable in Google\\Service\\Document\\GoogleCloudDocumentaiV1beta2Vertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DEvalBarrett.php256 * @param string $x
262 private static function generateInlineAdd($x, $y, $result, $class) argument
265 $length = max(count($' . $x . '), count($' . $y . '));
266 $' . $result . ' = array_pad($' . $x . ', $length + 1, 0);
H A DMontgomery.php32 * @param array $x
37 protected static function prepareReduce(array $x, array $n, $class) argument
40 $lhs->value = array_merge(self::array_repeat(0, count($n)), $x);
54 * @param array $x
59 protected static function reduce(array $x, array $n, $class) argument
68 $cache[self::VARIABLE][] = $x;
74 $result = [self::VALUE => $x];
114 * @param array $x
120 $x = -$x[0];
121 $result = $x & 0x3; // x**-1 mod 2**2
[all …]
H A DMontgomeryMult.php38 * @param array $x
44 public static function multiplyReduce(array $x, array $y, array $m, $class) argument
62 $n = max(count($x), count($y), count($m));
63 $x = array_pad($x, $n, 0);
68 $temp = $a[self::VALUE][0] + $x[$i] * $y[0];
72 …$temp = $class::addHelper($class::regularMultiply([$x[$i]], $y), false, $class::regularMultiply([$…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP.php119 $x = substr($x, 1);
123 $x,
131 $x = substr($x, static::MAX10LEN);
569 $x = $y->subtract($x);
610 $x = $x->subtract($temp);
658 $x = $x->subtract($temp);
662 $x = $x->add($temp);
678 $x = $y->subtract($x);
715 * @param int $x
727 return ($x - ($x % $y)) / $y;
[all …]
H A DPHP32.php204 * @param PHP32 $x
207 public function bitwise_and(PHP32 $x) argument
209 return $this->bitwiseAndHelper($x);
215 * @param PHP32 $x
218 public function bitwise_or(PHP32 $x) argument
220 return $this->bitwiseOrHelper($x);
226 * @param PHP32 $x
229 public function bitwise_xor(PHP32 $x) argument
263 * @param PHP32 $x
266 public function equals(PHP32 $x) argument
[all …]
H A DPHP64.php208 * @param PHP64 $x
211 public function bitwise_and(PHP64 $x) argument
213 return $this->bitwiseAndHelper($x);
219 * @param PHP64 $x
222 public function bitwise_or(PHP64 $x) argument
224 return $this->bitwiseOrHelper($x);
230 * @param PHP64 $x
233 public function bitwise_xor(PHP64 $x) argument
267 * @param PHP64 $x
270 public function equals(PHP64 $x) argument
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php133 $b = $x->value;
151 $x = ltrim($x, "\0");
174 $r = $x;
200 $x = strrev(BinaryField::base256ToBase2($x));
206 $x = str_pad($x, $length, '0');
212 $x = strrev($x);
242 $x = str_pad($x, $length, "\0", STR_PAD_LEFT);
291 $x = unpack('N', $x)[1];
329 $x = str_pad($x, $length, "\0", STR_PAD_LEFT);
344 $x = str_pad($x, $length, "\0", STR_PAD_LEFT);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudVideoIntelligence/
H A DGoogleCloudVideointelligenceV1NormalizedVertex.php25 public $x; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1NormalizedVertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
H A DGoogleCloudVideointelligenceV1beta2NormalizedVertex.php25 public $x; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1beta2NormalizedVertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
H A DGoogleCloudVideointelligenceV1p1beta1NormalizedVertex.php25 public $x; variable in Google\\Service\\CloudVideoIntelligence\\GoogleCloudVideointelligenceV1p1beta1NormalizedVertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DCollectionFeaturedProduct.php29 public $x; variable in Google\\Service\\ShoppingContent\\CollectionFeaturedProduct
52 public function setX($x) argument
54 $this->x = $x;
61 return $this->x;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
H A DGoogleCloudVisionV1p4beta1NormalizedVertex.php25 public $x; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p4beta1NormalizedVertex
34 public function setX($x) argument
36 $this->x = $x;
43 return $this->x;
H A DGoogleCloudVisionV1p4beta1Position.php25 public $x; variable in Google\\Service\\Vision\\GoogleCloudVisionV1p4beta1Position
38 public function setX($x) argument
40 $this->x = $x;
47 return $this->x;
H A DPosition.php25 public $x; variable in Google\\Service\\Vision\\Position
38 public function setX($x) argument
40 $this->x = $x;
47 return $this->x;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Container/
H A DJwk.php53 public $x; variable in Google\\Service\\Container\\Jwk
160 public function setX($x) argument
162 $this->x = $x;
169 return $this->x;
/plugin/authgooglesheets/
H A Dcomposer.lock108 "dev-main": "2.x-dev"
561 "dev-main": "2.x-dev"
706 "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
806 "x.509",
849 "dev-master": "1.0.x-dev"
898 "dev-master": "1.0.x-dev"
951 "dev-master": "1.1.x-dev"
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/
H A DBuiltIn.php32 * @param BCMath $x
37 protected static function powModHelper(BCMath $x, BCMath $e, BCMath $n) argument
40 $temp->value = bcpowmod($x->value, $e->value, $n->value);
42 return $x->normalize($temp);

1...<<11121314151617181920>>...68