Home
last modified time | relevance | path

Searched refs:p (Results 1 – 25 of 332) sorted by relevance

12345678910>>...14

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php468 $p = self::$parray;
475 self::expandstate($sha2salt, $sha2pass, $sbox, $p);
477 self::expand0state($sha2salt, $sbox, $p);
478 self::expand0state($sha2pass, $sbox, $p);
483 …($cdata[$j], $cdata[$j + 1]) = self::encryptBlockHelperFast($cdata[$j], $cdata[$j + 1], $sbox, $p);
537 * @param int[] $p
540 private static function expand0state(array $key, array &$sbox, array &$p) argument
546 $p = [
547 $p[0] ^ $key[0],
548 $p[1] ^ $key[1],
[all …]
H A DDSA.php58 protected $p; variable in phpseclib3\\Crypt\\DSA
146 $p = $x->subtract($c->subtract(self::$one));
147 } while ($p->getLength() != $L || !$p->isPrime());
149 $p_1 = $p->subtract(self::$one);
158 $g = $h->powMod($e, $p);
166 $dsa->p = $p;
208 $private->p = $params->p;
213 $private->y = $private->g->powMod($private->x, $private->p);
243 $new->p = $components['p'];
276 return ['L' => $this->p->getLength(), 'N' => $this->q->getLength()];
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php89 public function multiplyPoint(array $p, BigInteger $d) argument
91 $alreadyInternal = isset($p[2]);
93 [[], $p] :
94 [[], $this->convertToInternal($p)];
172 public function convertToAffine(array $p) argument
174 return $p;
182 public function convertToInternal(array $p) argument
184 return $p;
192 public function negatePoint(array $p) argument
195 $p[0],
[all …]
H A DMontgomery.php79 protected $p; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Montgomery
138 $this->p = [
159 return $this->p;
169 private function doubleAndAddPoint(array $p, array $q, PrimeInteger $x1) argument
175 if (!count($p) || !count($q)) {
179 if (!isset($p[1])) {
183 list($x2, $z2) = $p;
219 public function multiplyPoint(array $p, BigInteger $d) argument
222 $alreadyInternal = isset($p[1]);
223 $p2 = $this->convertToInternal($p);
[all …]
H A DPrime.php63 protected $p; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Prime
159 $this->p = [
180 return $this->p;
188 protected function jacobianAddPointMixedXY(array $p, array $q) argument
190 list($u1, $s1) = $p;
196 return $this->doublePoint($p);
220 protected function jacobianAddPointMixedX(array $p, array $q) argument
222 list($u1, $s1, $z1) = $p;
233 return $this->doublePoint($p);
256 protected function jacobianAddPoint(array $p, array $q) argument
[all …]
H A DBinary.php61 protected $p; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Binary
127 $this->p = [
148 return $this->p;
156 public function addPoint(array $p, array $q) argument
162 if (!count($p) || !count($q)) {
166 if (count($p)) {
167 return $p;
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);
[all …]
H A DTwistedEdwards.php66 protected $p; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\TwistedEdwards
127 $this->p = [
168 return $this->p;
176 public function convertToAffine(array $p) argument
178 if (!isset($p[2])) {
179 return $p;
181 list($x, $y, $z) = $p;
204 public function verifyPoint(array $p) argument
206 list($x, $y) = $p;
H A DKoblitzPrime.php103 $lhs = $this->multiplyPoint($this->p, $lambdas[0])[0];
104 $rhs = $this->p[0]->multiply($this->beta);
119 $p = $points[$i];
147 $p[0]->multiply($this->beta),
148 $p[1],
152 if (isset($p['naf'])) {
153 $beta['naf'] = array_map(function ($p) {
155 $p[0]->multiply($this->beta),
156 $p[1],
159 }, $p['naf']);
[all …]
/dokuwiki/lib/plugins/revert/
H A Dadmin.php150 $p = [];
151 $p['src'] = DOKU_BASE . 'lib/images/diff.png';
152 $p['width'] = 15;
153 $p['height'] = 11;
154 $p['title'] = $lang['diff'];
155 $p['alt'] = $lang['diff'];
156 $att = buildAttributes($p);
161 $p = [];
162 $p['src'] = DOKU_BASE . 'lib/images/history.png';
163 $p['width'] = 12;
[all …]
/dokuwiki/inc/lang/vi/
H A Dlogin.txt1 ====== Đăng nhập ======
3 Bạn hiện chưa đăng nhập! Nhập thông tin xác thực của bạn bên dưới để đăng nhập. Bạn cần kích hoạt c…
/dokuwiki/inc/lang/sq/
H A Dlocked.txt3 Kjo faqe është përkohësisht e kyçur për redaktim nga një përdorues tjetër. Duhet të prisni derisa k…
H A Dregistermail.txt1 Një përdorues i ri u regjistrua. Këto janë detajet:
3 Emri përdoruesit: @NEWUSER@
4 Emri i plotë i përdoruesit: @NEWNAME@
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd25519.php227 public function convertToInternal(array $p) argument
229 if (empty($p)) {
233 if (isset($p[2])) {
234 return $p;
237 $p[2] = clone $this->one;
238 $p[3] = $p[0]->multiply($p[1]);
240 return $p;
248 public function doublePoint(array $p) argument
254 if (!count($p)) {
258 if (!isset($p[2])) {
[all …]
H A DEd448.php171 public function convertToInternal(array $p) argument
173 if (empty($p)) {
177 if (isset($p[2])) {
178 return $p;
181 $p[2] = clone $this->one;
183 return $p;
191 public function doublePoint(array $p) argument
197 if (!count($p)) {
201 if (!isset($p[2])) {
207 list($x1, $y1, $z1) = $p;
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
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']);
68 * @param BigInteger $p
75 …public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, a… argument
87 $DSAPublicKey = Strings::packSSH2('siiii', 'ssh-dss', $p, $q, $g, $y);
102 * @param BigInteger $p
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 DPuTTY.php62 list($p, $q, $g, $y) = Strings::unpackSSH2('iiii', $public);
71 * @param BigInteger $p
80 …public static function savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, … argument
86 $public = Strings::packSSH2('iiii', $p, $q, $g, $y);
95 * @param BigInteger $p
101 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument
107 return self::wrapPublicKey(Strings::packSSH2('iiii', $p, $q, $g, $y), 'ssh-dss');
/dokuwiki/lib/plugins/acl/lang/sq/
H A Dhelp.txt3 Në këtë faqe mund të shtoni ose hiqni të drejta për hapësira emri dhe faqe në wiki-n tuaj.
7 Forma më sipër ju lejon të shihni dhe ndryshoni lejet për një grup ose përdorues të përzgjedhur.
9 Në tabelën më poshtë tregohen të gjitha rregullat e vendosjes së aksesit. Mund ta përdorni për të f…
11 Leximi i [[doku>acl|dokumentimit zyrtar mbi ACL]] mund t'ju ndihmojë për të kuptuar plotësisht ses…
/dokuwiki/inc/lang/pt-br/
H A Dsubscr_list.txt5 Estas são as páginas modificadas:
13 e cancele o monitoramento da página e/ou do espaço de
17 Para cancelar as notificações de páginas, entre na wiki @DOKUWIKIURL@
18 e então visite @SUBSCRIBE@ e cancele a inscrição de edição da página ou namespace.
21 Para cancelar a página de notificações, entre na wiki @DOKUWIKIURL@,
22 visite a página de @SUBSCRIBE@ e cancele a inscrição de edição da página ou namespace.
/dokuwiki/lib/plugins/revert/lang/ca-valencia/
H A Dintro.txt3 Esta pàgina ajuda en la reversió automàtica d'atacs de spam. Per a
4 trobar una llista de pàgines que tinguen spam introduïxca una cadena de busca (p. e. una URL de spa…
/dokuwiki/lib/plugins/popularity/lang/sq/
H A Dintro.txt3 …-t. Kjo i ndihmon ata të kuptojnë sesi DokuWiki përdoret nga përdoruesit e tij dhe siguron që vend…
5 …kurajuar ta përsërisni këtë hap shpesh herë për t'i mbajtur zhvilluesit të informuar kur wiki juaj…
7 Të dhënat e mbledhura përmbajnë informacione si versioni i DokuWiki-t tuaj, numri dhe madhësia e fa…
9 …unuara që do të dërgohen janë treguar më poshtë. Ju lutem përdorni buttonin "Dërgo Të Dhëna" për t…
/dokuwiki/lib/plugins/revert/lang/ca/
H A Dintro.txt3pàgina us ajuda a revertir automàticament els canvis que siguin producte d'un atac amb brossa. Per…
/dokuwiki/inc/lang/gl/
H A Dsubscr_list.txt3 Houbo trocos en páxinas do nome de espazo @PAGE@ do wiki @TITLE@.
4 Estas son as páxinas que mudaron:
10 Para cancelares as notificacións da páxina inicia sesión no wiki en
13 e desubscríbete do seguimento dos trocos da páxina e/ou nome de espazo.
/dokuwiki/lib/plugins/revert/lang/gl/
H A Dintro.txt3páxina axudarache a revertir automaticamente un ataque de correo-lixo. Para atopares unha listaxe …
/dokuwiki/inc/lang/no/
H A Dsubscr_list.txt3 Sider i navnerommet @PAGE@ på wikien @TITLE@ har blitt endra.
10 For å avslutte varslinga, logg inn på
13 og avslutt abonnementet på endringer av sida eller i navnerommet.
H A Dsubscr_digest.txt3 Siden @PAGE@ på wikien @TITLE@ har blitt endret.
13 For å avslutte varslingen, logg inn på
16 og avslutt abonnementet på endringer av siden eller i navnerommet.

12345678910>>...14