Home
last modified time | relevance | path

Searched refs:t (Results 101 – 125 of 2068) sorted by path

12345678910>>...83

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md80 * Improvement: Don't include summary in exception message when body is empty [#1621](https://github…
413 caused problems for many users: they aren't PSR-4 compliant, require an
716 * OAuth parameters are only added via the plugin if they aren't already set
H A DUPGRADING.md567 used in debugging or deserializing messages, so it doesn't make sense for
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md81 // Return a value and don't break the chain
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md90 - Tests don't pass with HHVM 4.0, so HHVM support got dropped. Other libraries like composer have d…
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md357 …ne() to initialize the timezone monolog should use in case date.timezone isn't correct for your app
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php553 $t = '';
554 while (strlen($t) < $qlen) {
556 $t = $t . $v;
558 $k = $this->bits2int($t);
H A DSymmetricKey.php1031 $t = $password . $salt;
1033 $t = $hashObj->hash($t);
1035 $key = substr($t, 0, $dkLen);
3331 $t = $y[$n] ^ $xn;
3332 $temp = self::$gcmField->newInteger($t);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDES.php712 $t = unpack('Nl/Nr', $block);
713 list($l, $r) = [$t['l'], $t['r']];
724 $t = unpack('Nl/Nr', $block);
725 list($l, $r) = [$t['l'], $t['r']];
737 $t = $sbox1[($b1 >> 24) & 0x3F] ^ $sbox2[($b2 >> 24) & 0x3F] ^
744 $r = $t;
748 $t = $l;
750 $r = $t;
1233 $t = unpack('Nl/Nr', $key);
1234 list($l, $r) = [$t['l'], $t['r']];
H A DHash.php511 $t = $c->encrypt("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
516 substr($t, unpack('C', $index)[1] * $taglen, $taglen) :
517 substr($t, 0, $taglen);
628 $t = count($m);
630 $k = array_pad(array_slice($k, 0, $t), $t, 0);
642 while ($i < $t) {
H A DRC2.php371 $t = strlen($key);
386 for ($i = $t; $i < 128; $i++) {
387 $l[$i] = $pitable[$l[$i - 1] + $l[$i - $t]];
H A DRSA.php585 $t = "\x30\x21\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x04\x14";
606 $t .= $h;
607 $tLen = strlen($t);
615 $em = "\0\1$ps\0$t";
642 $t = "\x30\x1f\x30\x07\x06\x05\x2b\x0e\x03\x02\x1a\x04\x14";
666 $t .= $h;
667 $tLen = strlen($t);
675 $em = "\0\1$ps\0$t";
694 $t = '';
698 $t .= $this->mgfHash->hash($mgfSeed . $c);
[all …]
H A DTwofish.php562 $t = 0xff & ($B >> 24);
568 $u = $t << 1;
571 if ($t & 0x80) {
576 $B ^= $t ^ ($u << 16);
579 $u ^= 0x7fffffff & ($t >> 1);
582 if ($t & 0x01) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DKoblitzPrime.php227 $t = $m->multiply($m)->subtract($this->two->multiply($s));
228 $x3 = $t;
229 $y3 = $s->subtract($t);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php726 * @param int|bool $t
729 public function isPrime($t = false) argument
731 return $this->value->isPrime($t);
H A DBinaryField.php62 $t = ceil($m / 8);
80 $reduce = function ($c) use ($u, $mStart, $m, $t, $finalMask, $pad, $h) {
101 $c = substr($c, -$t);
102 if (strlen($c) == $t) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php919 if ($length >= 163) { $t = 2; } // floor(1300 / 8)
930 else { $t = 27; }
933 return $t;
942 * @param int $t
945 protected function testPrimality($t) argument
958 for ($i = 0; $i < $t; ++$i) {
986 * @param int|bool $t
989 public function isPrime($t = false) argument
991 if (!$t) {
992 $t = $this->setupIsPrime();
[all …]
H A DGMP.php311 'y' => $this->normalize(new self($t))
556 * @param int $t
559 protected function testPrimality($t) argument
561 return gmp_prob_prime($this->value, $t) != 0;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php265 $t = $this->value->powMod($q, static::$modulo[$this->instanceID]);
269 while (!$t->equals($one)) {
272 while (!$t->powMod($two->pow($i), static::$modulo[$this->instanceID])->equals($one)) {
282 $t = $reduce($t->multiply($c));
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
H A DIdn.php618 $t = self::TMIN;
620 $t = self::TMAX;
622 $t = $k - $bias;
625 if ($digit < $t) {
629 $baseMinusT = self::BASE - $t;
713 $t = self::TMIN;
715 $t = self::TMAX;
717 $t = $k - $bias;
720 if ($q < $t) {
724 $qMinusT = $q - $t;
[all …]
/plugin/authhttp/
H A DREADME13 This auth plugin is for you if you don't want your users to have to login
42 Note that this is not a bug in DokuWiki - DokuWiki can't in any way know how
77 case that while users are known to authhttp, they aren't to the secondary auth
84 logged in and "registered", so authhttp's action plugin won't have a visible
91 and rename the extracted directory to "authhttp", otherwise the plugin won't
/plugin/authorlist/
H A Dsyntax.php70 … * @param $state Integer The lexer state for the match, doesn't matter because we only substitute.
/plugin/authremoteuser/
H A DREADME.md76 5. If your authentication system doesn't use variable name `REMOTE_USER`
100 *AuthRemoteUser*, won't contain an encrypted password.
137 [^1]: Don't be surprised: The user ID is converted to a valid page name.
/plugin/authshibboleth/
H A DREADME.md13 … - _authentication backends_. In case you have an older version and you don't want to upgrade, you…
49 … include it in your `DOKUWIKI_HOME/conf/local.protected.php` file (it doesn't exist by default, yo…
/plugin/authsmartcard/
H A DREADME.md42 If you don't do the above step, you'll need to edit your main wiki login page (YOUR_DOKUWIKI_INSTAL…
/plugin/authsplit/
H A DREADME30 HTTP authentication can't offer, such as email addresses. This is the scenario
47 In order to understand how authsplit works one doesn't really get around
122 wouldn't be stored anywhere and the user would thus get irritated. authhttp
135 SECONDARY auth plugin only. This is because it can't know whether user
211 and rename the extracted directory to "authsplit", otherwise the plugin won't

12345678910>>...83