/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/ |
H A D | PasswordProtected.php | 42 $new = clone $this; 43 $new->password = $password; 44 return $new;
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/ |
H A D | Identity.php | 126 $new = clone $this; 127 $new->key = $key; 128 return $new; 141 $new = clone $this; 142 $new->key_blob = $key_blob; 143 return $new; 165 $new = clone $this; 170 $new->flags = 0; 175 $new->flags = self::SSH_AGENT_RSA2_256; 178 $new->flags = self::SSH_AGENT_RSA2_512; [all …]
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
H A D | EC.php | 228 $new = new Parameters(); 229 $new->curve = $components['curve']; 230 return $new; 233 $new = isset($components['dA']) ? 236 $new->curve = $components['curve']; 237 $new->QA = $components['QA']; 240 $new->dA = $components['dA']; 241 $new->secret = $components['secret']; 244 if ($new->curve instanceof TwistedEdwardsCurve) { 245 return $new->withHash($components['curve']::HASH); [all …]
|
H A D | DSA.php | 235 $new = new Parameters(); 237 $new = new PrivateKey(); 238 $new->x = $components['x']; 240 $new = new PublicKey(); 243 $new->p = $components['p']; 244 $new->q = $components['q']; 245 $new->g = $components['g']; 248 $new->y = $components['y']; 251 return $new; 323 $new = clone $this; [all …]
|
H A D | RSA.php | 704 $new = clone $this; 717 $new->hash = new Hash($hash); 724 $new->hLen = $new->hash->getLengthInBytes(); 726 return $new; 739 $new = clone $this; 752 $new->mgfHash = new Hash($hash); 759 $new->mgfHLen = $new->mgfHash->getLengthInBytes(); 761 return $new; 787 $new = clone $this; 788 $new->sLen = $sLen; [all …]
|
H A D | DH.php | 350 $new = new Parameters(); 352 $new = isset($components['privateKey']) ? 357 $new->prime = $components['prime']; 358 $new->base = $components['base']; 361 $new->privateKey = $components['privateKey']; 364 $new->publicKey = $components['publicKey']; 367 return $new;
|
/dokuwiki/inc/lang/en/ |
H A D | resetpwd.txt | 1 ====== Set new password ====== 3 Please enter a new password for your account in this wiki.
|
H A D | register.txt | 1 ====== Register as new user ====== 3 …to create a new account in this wiki. Make sure you supply a **valid e-mail address** - if you are…
|
H A D | resendpwd.txt | 1 ====== Send new password ====== 3 Please enter your user name in the form below to request a new password for your account in this wi…
|
H A D | pwconfirm.txt | 3 Someone requested a new password for your @TITLE@ login at @DOKUWIKIURL@ 5 If you did not request a new password then just ignore this email.
|
H A D | editrev.txt | 1 **You've loaded an old revision of the document!** If you save it, you will create a new version wi…
|
H A D | registermail.txt | 1 A new user has registered. Here are the details:
|
/dokuwiki/lib/plugins/safefnrecode/ |
H A D | action.php | 65 $new = preg_replace('/(%[^\]]*?)\./', '\1]', $file); # new post indicator 66 if (preg_match('/%[^\]]+$/', $new)) $new .= ']'; # fix end FS#2122 67 rename("$dir/$file", "$dir/$new"); # rename it
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
H A D | AsymmetricKey.php | 166 $new = static::onLoad($components); 167 $new->format = $format; 168 $new->comment = $comment; 169 return $new instanceof PrivateKey ? 170 $new->withPassword($password) : 171 $new; 246 $new = static::onLoad($components); 247 $new->format = $format; 248 return $new instanceof PrivateKey ? 249 $new->withPassword($password) : [all …]
|
/dokuwiki/vendor/splitbrain/php-archive/ |
H A D | README.md | 4 This library allows to handle new ZIP and TAR archives without the need for any special PHP extensi… 5 needed for compression). It can create new files or extract existing ones. 32 $tar = new Tar(); 39 $tar = new Tar(); 43 // To create a new TAR archive directly on the filesystem (low memory 45 $tar = new Tar(); 54 $tar = new Tar();
|
/dokuwiki/_test/tests/inc/ |
H A D | parserutils_get_renderer.test.php | 60 function load($type,$name,$new=false,$disabled=false){ argument 64 return $this->plugin_controller->load($type, $name, $new, $disabled);
|
H A D | parserutils_set_metadata_during_rendering.test.php | 107 public function load($type, $name, $new = false, $disabled = false) argument 112 return $this->plugin_controller->load($type, $name, $new, $disabled);
|
/dokuwiki/lib/plugins/styling/ |
H A D | admin.php | 211 * @param string $new the new ini contents 213 protected function replaceIni($new) argument 226 io_saveFile($ini, "$old\n\n$new");
|
/dokuwiki/inc/ |
H A D | pluginutils.php | 51 function plugin_load($type, $name, $new = false, $disabled = false) argument 55 return $plugin_controller->load($type, $name, $new, $disabled);
|
H A D | confutils.php | 483 * @param array $new 487 function array_merge_with_removal($current, $new) argument 489 foreach ($new as $val) {
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/ |
H A D | PublicKey.php | 501 $new = new PrivateKey(); 502 $new->exponent = $this->exponent; 503 $new->modulus = $this->modulus; 504 $new->k = $this->k; 505 $new->format = $this->format; 506 return $new
|
/dokuwiki/lib/tpl/dokuwiki/lang/cy/ |
H A D | style.txt | 3 wici caeedig, awgrymwyd eich bod chi'n gwneud y ''wici'' (new wraidd) y namespace yn ddarllenadwy i…
|
/dokuwiki/vendor/splitbrain/lesserphp/src/Functions/ |
H A D | ColorOperation.php | 189 $new = [ 197 $new[] = $first_a * $weight + $second_a * ($weight - 1); 200 return Color::fixColor($new);
|
/dokuwiki/vendor/splitbrain/lesserphp/ |
H A D | README.md | 20 Don't. You really wouldn't want to start a new project using LESS. It simply seems that SASS has wo… 32 The typical flow of LesserPHP is to create a new instance of `Lessc`, 42 $less = new LesserPHP\Lessc;
|
/dokuwiki/_test/data/pages/ |
H A D | mailinglist.txt | 9 If you are new to mailing lists in general, please read [[rfc>1855|RFC 1855 - Netiquette Guidelines…
|