Home
last modified time | relevance | path

Searched refs:d (Results 126 – 150 of 3854) sorted by path

12345678910>>...155

/plugin/authgooglesheets/vendor/google/auth/
H A DCOPYING107 (d) If the Work includes a "NOTICE" text file as part of its
H A DLICENSE106 (d) If the Work includes a "NOTICE" text file as part of its
H A DREADME.md72 [Google Developers Console][developer console] and enable the APIs you'd like to
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md784 Example: `http://example.org/../a/b/../c/./d.html` → `http://example.org/a/c/d.html`
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md264 …for more formats in RotatingFileHandler::setFilenameFormat as long as they have Y, m and d in order
275 * Deprecated RotatingFileHandler::setFilenameFormat to only support 3 formats: Y, Y-m and Y-m-d
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DCubeHandler.php119 $data = ['time' => $date->format('Y-m-d\TH:i:s.uO')];
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DChaCha20.php279 * @param int $d
281 protected static function quarterRound(&$a, &$b, &$c, &$d) argument
287 $a+= $b; $d = self::leftRotate($d ^ $a, 16);
288 $c+= $d; $b = self::leftRotate($b ^ $c, 12);
289 $a+= $b; $d = self::leftRotate($d ^ $a, 8);
290 $c+= $d; $b = self::leftRotate($b ^ $c, 7);
H A DDES.php1245 $d = (($key['d'] >> 4) & 0x0FFFFFF0) | ($key['c'] & 0x0F);
1254 $d <<= $shifts[$i];
1255 $d = ($d | ($d >> 28)) & 0x0FFFFFFF;
1260 $dp = $pc2mapd1[ $d >> 24 ] | $pc2mapd2[($d >> 16) & 0xFF] |
1261 $pc2mapd3[($d >> 8) & 0xFF] | $pc2mapd4[ $d & 0xFF];
H A DHash.php976 * @param int $d
979 private static function sha3_32($p, $c, $r, $d, $padType) argument
1015 while (strlen($z) < $d) {
1169 * @param int $d
1172 private static function sha3_64($p, $c, $r, $d, $padType) argument
1207 while (strlen($z) < $d) {
1408 $d = clone $hash[3];
1452 $e = $d->add($t1);
1453 $d = clone $c;
1464 $hash[3]->add($d),
H A DRSA.php408 $d = $e->modInverse($temp);
432 $privatekey->exponent = $d;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php1081 * @param string $d
1085 private static function pkcs12helper($n, $hashObj, $i, $d, $count) argument
1097 $ai = $d . $i;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php107 public function multiplyPoint(array $p, BigInteger $d) argument
114 $d = $d->toBits();
115 for ($i = 0; $i < strlen($d); $i++) {
116 $d_i = (int) $d[$i];
H A DBinary.php193 $d = $y2->multiply($o1)->multiply($z1);
195 $f = $y1->add($d);
212 $d = $y2->multiply($o1)->multiply($z1);
214 $f = $c->add($d);
265 $d = $c->multiply($c);
266 $x3 = $b->add($this->b->multiply($d->multiply($d)));
H A DKoblitzPrime.php199 $d = $x1->add($b);
200 $d = $d->multiply($d)->subtract($a)->subtract($c)->multiply($this->two);
203 $x3 = $f->subtract($this->two->multiply($d));
204 $y3 = $e->multiply($d->subtract($x3))->subtract(
266 $d = clone $one;
289 $b = $d;
290 $d = $temp->subtract($b->multiply($q));
H A DMontgomery.php196 $d = $x3->subtract($z3);
197 $da = $d->multiply($a);
223 public function multiplyPoint(array $p, BigInteger $d) argument
230 $b = $d->toBits();
H A DTwistedEdwards.php63 protected $d; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\TwistedEdwards
108 public function setCoefficients(BigInteger $a, BigInteger $d) argument
114 $this->d = $this->factory->newInteger($d);
154 return $this->d;
215 $rhs = $this->d->multiply($x2)->multiply($y2)->add($this->one);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DCurve25519.php50 public function multiplyPoint(array $p, BigInteger $d) argument
55 $d = $d->toBytes();
56 $d &= "\xF8" . str_repeat("\xFF", 30) . "\x7F";
57 $d = strrev($d);
58 $d |= "\x40";
59 $d = new BigInteger($d, -256);
61 return parent::multiplyPoint($p, $d);
H A DCurve448.php61 public function multiplyPoint(array $p, BigInteger $d) argument
66 $d = $d->toBytes();
67 $d[0] = $d[0] & "\xFC";
68 $d = strrev($d);
69 $d |= "\x80";
70 $d = new BigInteger($d, 256);
72 return parent::multiplyPoint($p, $d);
H A DEd25519.php115 $v = $this->d->multiply($y2)->add($this->one);
319 $c = $t1->multiply($this->two)->multiply($this->d)->multiply($t2);
320 $d = $z1->multiply($this->two)->multiply($z2);
322 $f = $d->subtract($c);
323 $g = $d->add($c);
H A DEd448.php71 $v = $this->d->multiply($y2)->subtract($this->one);
209 $d = $y1->multiply($y1);
210 $e = $c->add($d);
215 $y3 = $c->subtract($d)->multiply($e);
258 $d = $y1->multiply($y2);
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/Formats/Keys/
H A DMSBLOB.php200 …public static function savePrivateKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, … argument
220 $key .= strrev($d->toBytes());
H A DOpenSSH.php132 …public static function savePrivateKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, … argument
135 …$privateKey = Strings::packSSH2('si6', 'ssh-rsa', $n, $e, $d, $coefficients[2], $primes[1], $prime…
H A DPKCS1.php121 …public static function savePrivateKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, … argument
128 'privateExponent' => $d,
H A DPKCS8.php127 …public static function savePrivateKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, … argument
129 $key = PKCS1::savePrivateKey($n, $e, $d, $primes, $exponents, $coefficients);
H A DPSS.php177 …public static function savePrivateKey(BigInteger $n, BigInteger $e, BigInteger $d, array $primes, … argument
181 $key = PKCS1::savePrivateKey($n, $e, $d, $primes, $exponents, $coefficients);

12345678910>>...155