| /dokuwiki/lib/images/smileys/ |
| H A D | deleteme.svg | 3 …q-.98 0-1.595-.604-.62-.616-.62-1.561 0-.96.605-1.58.616-.616 1.61-.616.96 0 1.576.635.62.635.62 1…
|
| H A D | fixme.svg | 3 …q-.979 0-1.595-.605-.62-.616-.62-1.56 0-.96.605-1.58.616-.616 1.61-.616.96 0 1.576.635.62.635.62 1…
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/ |
| H A D | PuTTY.php | 62 list($p, $q, $g, $y) = Strings::unpackSSH2('iiii', $public); 72 * @param BigInteger $q 80 …public static function savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, … argument 82 if ($q->getLength() != 160) { 86 $public = Strings::packSSH2('iiii', $p, $q, $g, $y); 96 * @param BigInteger $q 101 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument 103 if ($q->getLength() != 160) { 107 return self::wrapPublicKey(Strings::packSSH2('iiii', $p, $q, $g, $y), 'ssh-dss');
|
| H A D | OpenSSH.php | 53 list($p, $q, $g, $y, $x, $comment) = Strings::unpackSSH2('i5s', $parsed['paddedKey']); 58 list($p, $q, $g, $y) = Strings::unpackSSH2('iiii', $parsed['publicKey']); 69 * @param BigInteger $q 75 …public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, a… argument 77 if ($q->getLength() != 160) { 87 $DSAPublicKey = Strings::packSSH2('siiii', 'ssh-dss', $p, $q, $g, $y); 103 * @param BigInteger $q 111 …public static function savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, … argument 113 $publicKey = self::savePublicKey($p, $q, $g, $y, ['binary' => true]); 114 $privateKey = Strings::packSSH2('si5', 'ssh-dss', $p, $q, $g, $y, $x);
|
| H A D | PKCS1.php | 81 * @param BigInteger $q 85 public static function saveParameters(BigInteger $p, BigInteger $q, BigInteger $g) argument 89 'q' => $q, 104 * @param BigInteger $q 112 …public static function savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, … argument 117 'q' => $q, 132 * @param BigInteger $q 137 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument
|
| H A D | Raw.php | 60 * @param BigInteger $q 67 …public static function savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, … argument 76 * @param BigInteger $q 81 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument
|
| H A D | PKCS8.php | 103 * @param BigInteger $q 111 …public static function savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, … argument 115 'q' => $q, 128 * @param BigInteger $q 134 …public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, a… argument 138 'q' => $q,
|
| H A D | XML.php | 118 * @param BigInteger $q 123 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument 127 ' <Q>' . Strings::base64_encode($q->toBytes()) . "</Q>\r\n" .
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | Repository.php | 196 * @param string $q the query string 200 public function searchExtensions($q) argument 204 $query = $this->parseQuery($q); 232 * @param string $q 235 protected function parseQuery($q) argument 245 if (preg_match_all('/(^|\s)(tag:([\S]+))/', $q, $matches, PREG_SET_ORDER)) { 247 $q = str_replace($m[2], '', $q); 252 if (preg_match_all('/(^|\s)(authorid:([\S]+))/', $q, $matches, PREG_SET_ORDER)) { 254 $q = str_replace($m[2], '', $q); 259 if (preg_match_all('/(^|\s)(ext:([\S]+))/', $q, $matches, PREG_SET_ORDER)) { [all …]
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
| H A D | DSA.php | 67 protected $q; variable in phpseclib3\\Crypt\\DSA 140 $q = BigInteger::randomPrime($N); 141 $divisor = $q->multiply($two); 150 list($e) = $p_1->divide($q); 167 $dsa->q = $q; 209 $private->q = $params->q; 212 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one)); 244 $new->q = $components['q']; 276 return ['L' => $this->p->getLength(), 'N' => $this->q->getLength()]; 308 $key = $type::saveParameters($this->p, $this->q, $this->g);
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/ |
| H A D | PublicKey.php | 55 $q_1 = $this->q->subtract(self::$one); 60 $w = $s->modInverse($this->q); 63 list(, $u1) = $h->multiply($w)->divide($this->q); 64 list(, $u2) = $r->multiply($w)->divide($this->q); 68 list(, $v) = $v->divide($this->q); 84 return $type::savePublicKey($this->p, $this->q, $this->g, $this->y, $options);
|
| H A D | PrivateKey.php | 64 $key = $type::savePublicKey($this->p, $this->q, $this->g, $this->y); 101 $k = BigInteger::randomRange(self::$one, $this->q->subtract(self::$one)); 103 list(, $r) = $r->divide($this->q); 107 $kinv = $k->modInverse($this->q); 110 list(, $s) = $temp->divide($this->q); 150 …return $type::savePrivateKey($this->p, $this->q, $this->g, $this->y, $this->x, $this->password, $o…
|
| H A D | Parameters.php | 34 return $type::saveParameters($this->p, $this->q, $this->g, $options);
|
| /dokuwiki/inc/ |
| H A D | fulltext.php | 68 $q = ft_queryParser($Indexer, $data['query']); 69 $data['highlight'] = $q['highlight']; 71 if (empty($q['parsed_ary'])) return []; 74 $lookup = $Indexer->lookup($q['words']); 84 foreach ($q['parsed_ary'] as $token) { 885 $q = []; 886 $q['query'] = $query; 887 $q['parsed_str'] = $parsed_query; 888 $q['parsed_ary'] = $parsed_ary; 890 foreach ($q['parsed_ary'] as $token) { [all …]
|
| /dokuwiki/inc/lang/sq/ |
| H A D | stopwords.txt | 1 # Kjo është një listë e fjalëve që indexer-i injoron, një fjalë për rresht 2 # Kur të redaktoni këtë faqe sigurohuni që të përdorni fund-rreshtash UNIX (rresht i ri i vetëm) 4 # Kjo listë bazohet mbi ato që gjenden në http://www.ranks.nl/stopwords/
|
| H A D | conflict.txt | 3 … një version më i ri i dokumentit që ju redaktuat. Kjo ndodh kur një përdorues tjetër e ndryshoi d…
|
| H A D | backlinks.txt | 3 Kjo është një listë e faqeve që duket se lidhen mbrapsht te kjo faqe aktuale.
|
| H A D | register.txt | 3 …që të jepni një **adresë email-i të vlefshme**. Nëse nuk ju kërkohet të futni një fjalëkalim këtu,…
|
| H A D | updateprofile.txt | 3 Duhet vetëm të plotësoni ato fusha që doni të ndryshoni. Mund të mos e ndryshoni emrin tuaj të përd…
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
| H A D | Prime.php | 188 protected function jacobianAddPointMixedXY(array $p, array $q) argument 191 list($u2, $s2) = $q; 220 protected function jacobianAddPointMixedX(array $p, array $q) argument 223 list($x2, $y2) = $q; 256 protected function jacobianAddPoint(array $p, array $q) argument 259 list($x2, $y2, $z2) = $q; 295 public function addPoint(array $p, array $q) argument 301 if (!count($p) || !count($q)) { 302 if (count($q)) { 303 return $q; [all …]
|
| H A D | Binary.php | 156 public function addPoint(array $p, array $q) argument 162 if (!count($p) || !count($q)) { 163 if (count($q)) { 164 return $q; 172 if (!isset($p[2]) || !isset($q[2])) { 176 if ($p[0]->equals($q[0])) { 177 return !$p[1]->equals($q[1]) ? [] : $this->doublePoint($p); 183 list($x2, $y2, $z2) = $q;
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/ |
| H A D | Ed448.php | 229 public function addPoint(array $p, array $q) argument 235 if (!count($p) || !count($q)) { 236 if (count($q)) { 237 return $q; 245 if (!isset($p[2]) || !isset($q[2])) { 249 if ($p[0]->equals($q[0])) { 250 return !$p[1]->equals($q[1]) ? [] : $this->doublePoint($p); 256 list($x2, $y2, $z2) = $q;
|
| H A D | Ed25519.php | 288 public function addPoint(array $p, array $q) argument 294 if (!count($p) || !count($q)) { 295 if (count($q)) { 296 return $q; 304 if (!isset($p[2]) || !isset($q[2])) { 308 if ($p[0]->equals($q[0])) { 309 return !$p[1]->equals($q[1]) ? [] : $this->doublePoint($p); 315 list($x2, $y2, $z2, $t2) = $q;
|
| /dokuwiki/inc/lang/az/ |
| H A D | denied.txt | 3 Sizin bu əməliyyat üçün kifayət qədər haqqınız yoxdur.
|
| /dokuwiki/conf/ |
| H A D | interwiki.conf | 36 google https://www.google.com/search?q= 37 google.de https://www.google.de/search?q= 38 go https://www.google.com/search?q={URL}&btnI=lucky
|