Home
last modified time | relevance | path

Searched refs:q (Results 1 – 25 of 61) sorted by relevance

123

/dokuwiki/lib/images/smileys/
H A Ddeleteme.svg3q-.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 Dfixme.svg3q-.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 DPuTTY.php62 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 DOpenSSH.php53 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 DPKCS1.php81 * @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 DRaw.php60 * @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 DPKCS8.php103 * @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 DXML.php118 * @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 DRepository.php196 * @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 DDSA.php67 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 DPublicKey.php55 $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 DPrivateKey.php64 $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 DParameters.php34 return $type::saveParameters($this->p, $this->q, $this->g, $options);
/dokuwiki/inc/
H A Dfulltext.php68 $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 Dstopwords.txt1 # 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 Dconflict.txt3 … një version më i ri i dokumentit që ju redaktuat. Kjo ndodh kur një përdorues tjetër e ndryshoi d…
H A Dbacklinks.txt3 Kjo është një listë e faqeve që duket se lidhen mbrapsht te kjo faqe aktuale.
H A Dregister.txt3që të jepni një **adresë email-i të vlefshme**. Nëse nuk ju kërkohet të futni një fjalëkalim këtu,…
H A Dupdateprofile.txt3 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 DPrime.php188 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 DBinary.php156 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 DEd448.php229 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 DEd25519.php288 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 Ddenied.txt3 Sizin bu əməliyyat üçün kifayət qədər haqqınız yoxdur.
/dokuwiki/conf/
H A Dinterwiki.conf36 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}&amp;btnI=lucky

123