Home
last modified time | relevance | path

Searched +full:- +full:p (Results 1 – 25 of 232) sorted by relevance

12345678910

/dokuwiki/inc/lang/az/
H A Dinstall.html1p>Bu səhifə Sizə <a href="http://dokuwiki.org">DokuWiki</a>-ni quraşdırmaqa kömək etmək üçündür. Q…
3p>Səhifələri və əlavə məlumatları (məsələn, şəkillər, axtarış indeksi, səhifələrin əvvəlki versiya…
5p>Quraşdırma proqramı sizin DokuWiki-nizdə haqlar kontrolu siyahısını (<abbr title="access control…
7p>Təcrübəli istifadəçilər və xüsusi tələbləri olan istifadəçilərə əlavə məlumat üçün <a href="http…
/dokuwiki/inc/lang/zh-tw/
H A Dinstall.html1 <p>本頁面旨在幫助您完成第一次安装和設定 <a href="http://dokuwiki.org">Dokuwiki</a>。關於安裝工具的更多訊息請參閱 <a href="http://dok…
3p>DokuWiki 使用普通檔案來儲存 wiki 頁面,以及與頁面相關的訊息(例如:圖像、搜尋索引、修訂記錄等)。為了正常運作,DokuWiki <strong>必須</strong> 擁有針對…
5 <p>本安裝工具將設定您的 DokuWiki 用於 <abbr title="訪問控制列表">ACL</abbr> 的設定檔,它能讓管理員登入並使用「管理」功能來安裝附加元件、管理使用者、管理訪問權…
7 <p>有經驗的或有特殊需求的使用者,請參閱更詳細的 <a href="http://dokuwiki.org/zh-tw:install">安裝指南</a> 和 <a href="http://do…
/dokuwiki/inc/lang/fi/
H A Dinstall.html1p>Tämä sivu avustaa <a href="http://dokuwiki.org">Dokuwikin</a> ensiasennuksessa ja asetuksissa. L…
3p>DokuWiki käyttää tavallisia tiedostoja wiki-sivujen, sekä muiden niihin liittyvien tietojen kute…
5p>Asennusohjelma määrittelee DokuWikin käyttöoikeudet (<abbr title="access control list">ACL</abbr…
7p>Kokeneille käyttäjille tai käyttäjille joilla on erityisvaatimuksia asennukselle löytyy lisätiet…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php4 * Pure-PHP implementation of Blowfish.
12 * - {@link http://en.wikipedia.org/wiki/Blowfish_(cipher) Wikipedia description of Blowfish}
22 * and password. This renders OpenSSL unusable and forces us to use a pure-PHP implementation
30 * Each of the first 9 calls to _encryptBlock() modify the P-array. Each of the next 512
31 * calls modify the S-boxes. The remaining _encryptBlock() calls operate on the plaintext to
32 * produce the ciphertext. In the pure-PHP implementation of Blowfish these remaining
34 * P-array lookups are eliminated by hard-coding the key-dependent P-array values, and thus we
38 * assuming 16 rounds (which is what OpenSSH's bcrypt defaults to). The eval()-optimized
39 * _encryptBlock() isn't as beneficial because the P-array values are not constant. Well, they
41 * of data. The average length of back to back _encryptBlock() calls with a fixed P-array is
[all …]
/dokuwiki/_test/tests/inc/parser/
H A Dparser_replacements.test.php15 $this->P->addMode('acronym',new Acronym(array('FOOBAR')));
16 $this->P->parse('abc FOOBAR xyz');
28 $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
32 $this->P->addMode('acronym',new Acronym(array('FOOBAR')));
33 $this->P->parse('abcFOOBARxyz');
43 $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
47 $this->P->addMode('acronym',new Acronym(array('FOO')));
48 $this->P->parse('FOOBAR FOO');
60 $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
64 $this->P->addMode('acronym',new Acronym(array('FOO','BAR')));
[all …]
H A Dparser_eol.test.php11 $this->P->addMode('eol',new Eol());
12 $this->P->parse("Foo\nBar");
20 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
24 $this->P->addMode('eol',new Eol());
25 $this->P->parse("Foo\n\nbar\nFoo");
36 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
40 $this->P->addMode('eol',new Eol());
41 $this->P->parse("Foo\r\nBar");
49 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
53 $this->P->addMode('linebreak',new Linebreak());
[all …]
H A Dparser_links.test.php21 $this->P->addMode('externallink',new Externallink());
22 $this->P->parse("Foo http://www.google.com Bar");
32 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
36 $this->P->addMode('externallink',new Externallink());
37 $this->P->parse("Foo HTTP://WWW.GOOGLE.COM Bar");
47 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
51 $this->P->addMode('externallink',new Externallink());
52 $this->P->parse("Foo http://123.123.3.21/foo Bar");
62 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
66 $this->P->addMode('externallink',new Externallink());
[all …]
H A Dparser_preformatted.test.php17 $this->P->addMode('file',new File());
18 $this->P->parse('Foo <file>testing</file> Bar');
31 $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
35 $this->P->addMode('code',new Code());
36 $this->P->parse('Foo <code>testing</code> Bar');
48 $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
52 $this->P->addMode('code',new Code());
53 $this->P->parse("Foo <code \n>testing</code> Bar");
65 $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls);
69 $this->P->addMode('code',new Code());
[all …]
H A Dparser_quotes.test.php17 $this->P->addMode('quotes',new Quotes());
18 $this->P->parse($raw);
30 … $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls, 'wikitext => '.$raw);
35 $this->P->addMode('quotes',new Quotes());
36 $this->P->parse($raw);
48 … $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls, 'wikitext => '.$raw);
53 $this->P->addMode('quotes',new Quotes());
54 $this->P->parse($raw);
66 … $this->assertEquals(array_map('stripbyteindex',$this->H->calls),$calls, 'wikitext => '.$raw);
71 $this->P->addMode('quotes',new Quotes());
[all …]
H A Dparser_headers.test.php11 $this->P->addMode('header',new Header());
12 $this->P->parse("abc \n ====== Header ====== \n def");
26 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
30 $this->P->addMode('header',new Header());
31 $this->P->parse("abc \n ===== Header ===== \n def");
45 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
49 $this->P->addMode('header',new Header());
50 $this->P->parse("abc \n ==== Header ==== \n def");
64 $this->assertEquals(array_map('stripByteIndex',$this->H->calls),$calls);
68 $this->P->addMode('header',new Header());
[all …]
/dokuwiki/inc/lang/sq/
H A Dinstall.html1p>Kjo faqe ndihmon në instalimin dhe konfigurimin për herë të parë të <a href="http://dokuwiki.org…
3p>Dokuwiki përdor skedarë të zakonshëm për ruajtjen e faqeve wiki dhe informacioneve të tjera të l…
5p>Ky installer do të instalojë konfigurimin e DokuWiki-t tuaj për <abbr title="access control list…
7p>Përduruesit me përvojë ose përdoruesit me kërkesa speciale për instalim duhet të përdorin këto l…
/dokuwiki/inc/lang/hu-formal/
H A Dinstall.html1p>Ez az oldal segít a <a href="http://dokuwiki.org">DokuWiki</a> kezdeti beállításában és a konfig…
3p>A DokuWiki hagyományos fájlokat használ a wikioldalak és a hozzájuk kapcsolódó információk (pl.:…
5p>A varázsló felkészíti ezt a DokuWikit a hozzáférés-vezérlési listák (<abbr title="access control…
7p>Haladó-, illetve speciális beállítást igénylő felhasználók további információkat találnak a köve…
/dokuwiki/inc/lang/hu/
H A Dinstall.html1p>Ez az oldal segít a <a href="http://dokuwiki.org">DokuWiki</a> kezdeti beállításában és a konfig…
3p>A DokuWiki hagyományos fájlokat használ a wikioldalak és a hozzájuk kapcsolódó információk (pl.:…
5p>A varázsló felkészíti ezt a DokuWikit a hozzáférés-vezérlési listák (<abbr title="access control…
7p>Haladó-, illetve speciális beállítást igénylő felhasználók további információkat találnak a köve…
/dokuwiki/lib/plugins/revert/
H A Dadmin.php23 $this->setupLocale();
56 echo $this->locale_xhtml('intro');
58 $this->printSearchForm();
60 if (is_array($INPUT->param('revert')) && checkSecurityToken()) {
61 $this->revertEdits($INPUT->arr('revert'), $INPUT->str('filter'));
62 } elseif ($INPUT->has('filter')) {
63 $this->listEdits($INPUT->str('filter'));
74 echo '<label>' . $this->getLang('filter') . ': </label>';
75 …echo '<input type="text" name="filter" class="edit" value="' . hsc($INPUT->str('filter')) . '" /> …
77 echo '<span>' . $this->getLang('note1') . '</span>';
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DPrime.php6 * These are curves used in SEC 2 over prime fields: http://www.secg.org/SEC2-Ver-1.0.pdf
18 * @license http://www.opensource.org/licenses/mit-license.html MIT License
63 protected $p; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Prime
119 $this->modulo = $modulo;
120 $this->factory = new PrimeField($modulo);
121 $this->two = $this->factory->newInteger(new BigInteger(2));
122 $this->three = $this->factory->newInteger(new BigInteger(3));
124 $this->one = $this->factory->newInteger(new BigInteger(1));
125 $this->four = $this->factory->newInteger(new BigInteger(4));
126 $this->eight = $this->factory->newInteger(new BigInteger(8));
[all …]
H A DMontgomery.php21 * @license http://www.opensource.org/licenses/mit-license.html MIT License
79 protected $p; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Montgomery
100 $this->modulo = $modulo;
101 $this->factory = new PrimeField($modulo);
102 $this->zero = $this->factory->newInteger(new BigInteger());
103 $this->one = $this->factory->newInteger(new BigInteger(1));
111 if (!isset($this->factory)) {
114 $this->a = $this->factory->newInteger($a);
115 $two = $this->factory->newInteger(new BigInteger(2));
116 $four = $this->factory->newInteger(new BigInteger(4));
[all …]
H A DBinary.php6 * These are curves used in SEC 2 over prime fields: http://www.secg.org/SEC2-Ver-1.0.pdf
18 * @license http://www.opensource.org/licenses/mit-license.html MIT License
61 protected $p; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Binary
89 $this->modulo = $modulo;
90 $this->factory = new BinaryField(...$modulo);
92 $this->one = $this->factory->newInteger("\1");
103 if (!isset($this->factory)) {
106 $this->a = $this->factory->newInteger(pack('H*', $a));
107 $this->b = $this->factory->newInteger(pack('H*', $b));
124 if (!isset($this->factory)) {
[all …]
H A DBase.php10 * @license http://www.opensource.org/licenses/mit-license.html MIT License
46 return $this->factory->randomInteger();
56 return $this->factory->newInteger($x);
66 return $this->factory->getLengthInBytes();
76 return $this->factory->getLength();
85 * https://github.com/phpecc/phpecc/issues/16#issuecomment-59176772
89 public function multiplyPoint(array $p, BigInteger $d) argument
91 $alreadyInternal = isset($p[2]);
93 [[], $p] :
94 [[], $this->convertToInternal($p)];
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DXML.php16 * @license http://www.opensource.org/licenses/mit-license.html MIT License
43 throw new \UnexpectedValueException('Key should be a string - not a ' . gettype($key));
56 if (!$dom->loadXML($key)) {
61 $keys = ['p', 'q', 'g', 'y', 'j', 'seed', 'pgencounter'];
63 // $dom->getElementsByTagName($key) is case-sensitive
64 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
65 if (!$temp->length) {
68 $value = new BigInteger(Strings::base64_decode($temp->item(0)->nodeValue), 256);
70 case 'p': // a prime modulus meeting the [DSS] requirements
71 … // Parameters P, Q, and G can be public and common to a group of users. They might be known
[all …]
/dokuwiki/inc/lang/nl/
H A Dinstall.html1p>Deze pagina helpt u bij de eerste installatie en configuratie van <a href="http://dokuwiki.org">…
3p>DokuWiki gebruikt platte tekstbestanden voor het opslaan van wikipagina's en andere informatie d…
5p>Deze installer zal uw DokuWiki configureren voor <abbr title="access control list">ACL</abbr>, w…
7p>Ervaren gebruikers of gebruikers die een aangepaste configuratie nodig hebben kunnen voor detail…
/dokuwiki/inc/lang/eo/
H A Dinstall.html1p>Tiu ĉi paĝo helpas en la unua instalo kaj agordado de <a href="http://dokuwiki.org">DokuWiki</a>…
3p>DokuWiki uzas ordinarajn dosierojn por konservi vikiajn paĝojn kaj aliajn informojn asociitaj al…
5p>Tiu ĉi instalilo difinos vian DokuWiki-an agordadon por <abbr title="alir-kontrola listo">ACL</a…
7p>Spertuloj aŭ uzantoj kiuj bezonas specialajn agordrimedojn uzu tiujn ligilojn por havi pli detal…
/dokuwiki/inc/lang/eu/
H A Dinstall.html1p>Orri honek <a href="http://dokuwiki.org">Dokuwiki-ren</a> lehenengo instalazioan eta konfigurazi…
3p>DokuWikik fitxategi arruntak erabiltzen ditu wiki orriak eta orri horiekin erlazionatutako infor…
5p>Instalatzaile honek zure DokiWikiren konfigurazioa ezarriko du <abbr title="atzipen kontrol list…
7p>Esperientziadun erabiltzaileek edo ezarpen behar bereziak dituzten erabiltzaileek honako estekak…
/dokuwiki/inc/lang/pt-br/
H A Dinstall.html1p>Essa página irá auxiliá-lo na instalação e configuração do <a href="http://dokuwiki.org">DokuWik…
3p>O DokuWiki utiliza arquivos em texto simples para o armazenamento das páginas wiki e de outras i…
5p>O instalador irá definir as configurações da <abbr title="access control list (lista de controle…
7p>Usuários experientes ou que necessitem efetuar configurações especiais devem utilizar os seguint…
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd25519.php10 * @license http://www.opensource.org/licenses/mit-license.html MIT License
24 … Per https://tools.ietf.org/html/rfc8032#page-6 EdDSA has several parameters, one of which is b:
26 2. An integer b with 2^(b-1) > p. EdDSA public keys have exactly b
37 // 2^255 - 19
38 …$this->setModulo(new BigInteger('7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED'…
39 $this->setCoefficients(
40 // -1
42 // -121665/121666
45 $this->setBasePoint(
49 …$this->setOrder(new BigInteger('1000000000000000000000000000000014DEF9DEA2F79CD65812631A5CF5D3ED',…
[all …]
/dokuwiki/inc/lang/sr/
H A Dinstall.html1p>Ова страница ће вам помоћи у инсталацији и подешавању <a href="http://dokuwiki.org">Dokuwiki-ја<…
3p>DokuWiki користи обичне датотеке за складиштење вики страница и осталих информација везаних за с…
5p>Овај програм за инсталацију DokuWiki-а ће поставити подешавања за Права приступа, које ће омогућ…
7p>Искуснији корисници и корисници са посебним захтевима би требало да погледају следеће линкове са…

12345678910