Home
last modified time | relevance | path

Searched refs:t (Results 301 – 313 of 313) sorted by path

1...<<111213

/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md138 don't create some attributes when they're not set
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DDES.php695 $t = unpack('Nl/Nr', $block);
696 list($l, $r) = [$t['l'], $t['r']];
707 $t = unpack('Nl/Nr', $block);
708 list($l, $r) = [$t['l'], $t['r']];
720 $t = $sbox1[($b1 >> 24) & 0x3F] ^ $sbox2[($b2 >> 24) & 0x3F] ^
727 $r = $t;
731 $t = $l;
733 $r = $t;
[all...]
H A DHash.php492 $t = $c->encrypt("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
495 // unpack() doesn't leak timing info
497 substr($t, unpack('C', $index)[1] * $taglen, $taglen) :
498 substr($t, 0, $taglen);
607 //$t = strlen($m) >> 2;
609 $t = count($m);
611 $k = array_pad(array_slice($k, 0, $t), $t, 0);
623 while ($i < $t) {
939 * 64-bit integers, which complicates addition, whereas that limitation isn't a
[all...]
H A DRC2.php296 * @throws \LengthException if the key length isn't supported
329 * @throws \LengthException if the key length isn't supported
348 $t = strlen($key);
363 for ($i = $t; $i < 128; $i++) {
364 $l[$i] = $pitable[$l[$i - 1] + $l[$i - $t]];
H A DRSA.php44 * because SSH doesn't use PSS and idk how many SSH servers would be able to
106 * stuff, if you're trying to diagnose why an encrypted message isn't decrypting, etc.
465 // not only does it defaults to the most secure methods - it doesn't even let you choose less
559 $t = "\x30\x20\x30\x0c\x06\x08\x2a\x86\x48\x86\xf7\x0d\x02\x02\x05\x00\x04\x10";
562 $t = "\x30\x20\x30\x0c\x06\x08\x2a\x86\x48\x86\xf7\x0d\x02\x05\x05\x00\x04\x10";
565 $t = "\x30\x21\x30\x09\x06\x05\x2b\x0e\x03\x02\x1a\x05\x00\x04\x14";
568 $t = "\x30\x31\x30\x0d\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x01\x05\x00\x04\x20";
571 $t = "\x30\x41\x30\x0d\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x02\x05\x00\x04\x30";
574 $t = "\x30\x51\x30\x0d\x06\x09\x60\x86\x48\x01\x65\x03\x04\x02\x03\x05\x00\x04\x40";
578 $t
[all...]
H A DTwofish.php415 * @throws \LengthException if the key length isn't supported
555 $t = 0xff & ($B >> 24);
561 $u = $t << 1;
564 if ($t & 0x80) {
568 // Remove t * (a * x^2 + 1).
569 $B ^= $t ^ ($u << 16);
571 // Form u = a*t + t/a = t*(a + 1/a).
572 $u ^= 0x7fffffff & ($t >>
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php388 * Returns the precision if it exists, false if it doesn't
719 * Assuming the $t parameter is not set, this function has an error rate of 2**-80. The main motivation for the
720 * $t parameter is distributability. BigInteger::randomPrime() can be distributed across multiple pageloads
723 * @param int|bool $t
726 public function isPrime($t = false)
728 return $this->value->isPrime($t);
3345 isPrime($t = false) global() argument
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md137 * GH Actions: don't allow builds to fail on PHP 8.0 or 8.1 by @jrfnl in [#693](https://github.com/simplepie/simplepie/pull/693)
H A DREADME.markdown58 If you can't find an answer to your question in the documentation, head on over
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt118 In case of errors, bugs, questions, wishes, please don't hesitate to contact us
H A Didna_convert.class.php395 $t = ($k <= $bias) ? $this->_tmin :
397 if ($digit < $t) break;
398 $w = (int) ($w * ($this->_base - $t));
494 $t = ($k <= $bias) ? $this->_tmin :
496 if ($q < $t) break;
497 $encoded .= $this->_encode_digit(intval($t + (($q - $t) % ($this->_base - $t)))); //v0.4.5 Changed from ceil() to intval()
498 $q = (int) (($q - $t) / ($this->_base - $t));
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php254 * Don't change case
1522 // Then check the xml extension is sane (i.e., libxml 2.7.x issue on PHP < 5.2.9 and libxml 2.7.0 to 2.7.2 on any version) if we don't have xmlreader.
1745 // If we've got a non feed_url stored (if the page isn't actually a feed, or is a redirect) use that URL.
1764 // support this, but we don't always send the headers either.)
1811 // If we don't already have the file (it'll only exist if we've opened it to check if the cache has been modified), open it.
1831 // Check if the supplied URL is a feed, if it isn't, look for it.
1850 // Now also do feed discovery, but if microformats were found don't
1881 // This is usually because DOMDocument doesn't exist
1965 * This won't work properly if any content or whitespace has already been

1...<<111213