Home
last modified time | relevance | path

Searched refs:new (Results 1 – 25 of 55) sorted by relevance

123

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/
H A DPasswordProtected.php42 $new = clone $this;
43 $new->password = $password;
44 return $new;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php126 $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/inc/lang/en/
H A Dresetpwd.txt1 ====== Set new password ======
3 Please enter a new password for your account in this wiki.
H A Dregister.txt1 ====== 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 Dresendpwd.txt1 ====== 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 Dpwconfirm.txt3 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 Deditrev.txt1 **You've loaded an old revision of the document!** If you save it, you will create a new version wi…
H A Dregistermail.txt1 A new user has registered. Here are the details:
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDSA.php267 $new = new Parameters();
269 $new = new PrivateKey();
270 $new->x = $components['x'];
272 $new = new PublicKey();
275 $new->p = $components['p'];
276 $new->q = $components['q'];
277 $new->g = $components['g'];
280 $new->y = $components['y'];
283 return $new;
339 $new = clone $this;
[all …]
H A DEC.php368 $new = new Parameters();
369 $new->curve = $components['curve'];
370 return $new;
373 $new = isset($components['dA']) ?
376 $new->curve = $components['curve'];
377 $new->QA = $components['QA'];
380 $new->dA = $components['dA'];
381 $new->secret = $components['secret'];
384 if ($new->curve instanceof TwistedEdwardsCurve) {
385 return $new->withHash($components['curve']::HASH);
[all …]
H A DRSA.php718 $new = clone $this;
735 $new->hash = new Hash($hash);
742 $new->hLen = $new->hash->getLengthInBytes();
744 return $new;
757 $new = clone $this;
774 $new->mgfHash = new Hash($hash);
781 $new->mgfHLen = $new->mgfHash->getLengthInBytes();
783 return $new;
809 $new = clone $this;
810 $new->sLen = $sLen;
[all …]
H A DDH.php386 $new = new Parameters();
388 $new = isset($components['privateKey']) ?
393 $new->prime = $components['prime'];
394 $new->base = $components['base'];
397 $new->privateKey = $components['privateKey'];
400 $new->publicKey = $components['publicKey'];
403 return $new;
/dokuwiki/lib/plugins/safefnrecode/
H A Daction.php65 $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/simplepie/simplepie/src/HTTP/
H A DRawTextResponse.php79 $new = clone $this;
84 $new->headers = $newHeader + $this->headers;
86 return $new;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php171 $new = static::onLoad($components);
172 $new->format = $format;
173 $new->comment = $comment;
174 return $new instanceof PrivateKey ?
175 $new->withPassword($password) :
176 $new;
251 $new = static::onLoad($components);
252 $new->format = $format;
253 return $new instanceof PrivateKey ?
254 $new->withPassword($password) :
[all …]
/dokuwiki/vendor/splitbrain/php-archive/
H A DREADME.md4 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 Dparserutils_get_renderer.test.php60 function load($type,$name,$new=false,$disabled=false){ argument
64 return $this->plugin_controller->load($type, $name, $new, $disabled);
H A Dparserutils_set_metadata_during_rendering.test.php107 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 Dadmin.php211 * @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 Dpluginutils.php51 function plugin_load($type, $name, $new = false, $disabled = false) argument
55 return $plugin_controller->load($type, $name, $new, $disabled);
H A Dconfutils.php477 * @param array $new
481 function array_merge_with_removal($current, $new) argument
483 foreach ($new as $val) {
/dokuwiki/lib/tpl/dokuwiki/lang/cy/
H A Dstyle.txt3 wici caeedig, awgrymwyd eich bod chi'n gwneud y ''wici'' (new wraidd) y namespace yn ddarllenadwy i…
/dokuwiki/vendor/simplepie/simplepie/
H A DREADME.markdown29 $simplepie = new \SimplePie\SimplePie();
31 new \GuzzleHttp\Client(),
32 new \GuzzleHttp\Psr7\HttpFactory(),
33 new \GuzzleHttp\Psr7\HttpFactory(),
45 $simplepie = new \SimplePie\SimplePie();
47 new \Symfony\Component\Cache\Psr16Cache(
48 new \Symfony\Component\Cache\Adapter\FilesystemAdapter()
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php550 $new = new PrivateKey();
551 $new->exponent = $this->exponent;
552 $new->modulus = $this->modulus;
553 $new->k = $this->k;
554 $new->format = $this->format;
555 return $new
/dokuwiki/vendor/splitbrain/lesserphp/src/Functions/
H A DColorOperation.php189 $new = [
197 $new[] = $first_a * $weight + $second_a * ($weight - 1);
200 return Color::fixColor($new);

123