Home
last modified time | relevance | path

Searched refs:key (Results 26 – 50 of 116) sorted by relevance

12345

/dokuwiki/inc/Form/
H A DLegacyForm.php118 foreach ($legacy as $key => $val) {
119 if ($key[0] == '_') {
120 $control[substr($key, 1)] = $val;
121 } elseif ($key == 'name') {
122 $control[$key] = $val;
123 } elseif ($key == 'id') {
124 $control[$key] = $val;
126 $attributes[$key] = $val;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php35 * methods phpseclib looks for to perform public key authentication.
55 private $key;
109 * @param \phpseclib3\Crypt\Common\PublicKey $key
111 public function withPublicKey(PublicKey $key)
113 if ($key instanceof EC) {
114 if (is_array($key->getCurve()) || !isset(self::$curveAliases[$key->getCurve()])) {
120 $new->key = $key;
127 * Called by \phpseclib3\System\SSH\Agent::requestIdentities(). The key blo
53 var $key; global() variable in phpseclib\\System\\SSH\\Agent\\Identity
103 setPublicKey($key) global() argument
[all...]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingArray.php79 $key = htmlspecialchars($this->key);
82 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>';
83 $input = '<input id="config___' . $key . '" name="config[' . $key .
H A DSettingSepchar.php11 public function __construct($key, $param = null) argument
17 parent::__construct($key, $param);
H A DSettingDisableactions.php17 $plugin->addLang($this->key . '_revisions', $lang['btn_revs']);
19 if (isset($lang['btn_' . $choice])) $plugin->addLang($this->key . '_' . $choice, $lang['btn_' . $choice]);
H A DSettingRenderer.php44 if (!$plugin->getLang($this->key . '_o_' . $choice)) {
47 $this->key . '_o_' . $choice,
52 $this->key . '_o_' . $choice,
/dokuwiki/inc/Parsing/Handler/
H A DNest.php71 $key = count($this->calls);
72 if ($key && $call[0] == 'cdata' && $this->calls[$key - 1][0] == 'cdata') {
73 $this->calls[$key - 1][1][0] .= $call[1][0];
H A DBlock.php112 $key = count($this->calls);
113 if ($key && $call[0] == 'cdata' && $this->calls[$key - 1][0] == 'cdata') {
114 $this->calls[$key - 1][1][0] .= $call[1][0];
140 foreach ($calls as $key => $call) {
182 if (isset($calls[$key + 1]) && $calls[$key + 1][0] == 'eol') {
/dokuwiki/lib/tpl/
H A Dindex.php56 foreach ($ini['replacements'] as $key => $val) {
58 echo '<td>' . hsc($key) . '</td>';
/dokuwiki/inc/
H A Dparserutils.php241 * @param string $key The key of the metdata value that shall be read (by default everything)
252 function p_get_metadata($id, $key = '', $render = METADATA_RENDER_USING_CACHE) argument
315 // filter by $key
316 foreach (preg_split('/\s+/', $key, 2, PREG_SPLIT_NO_EMPTY) as $cur_key) {
331 * @param array $data is an array with key ⇒ value pairs to be set in the metadata
361 foreach ($data as $key => $value) {
363 if ($key == 'relation') {
365 if (isset($meta['current'][$key][$subkey]) && is_array($meta['current'][$key][
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php20 * bcrypt is basically Blowfish but instead of performing the key expansion once it performs
21 * the expansion 129 times for each round, with the first key expansion interleaving the salt
34 * P-array lookups are eliminated by hard-coding the key-dependent P-array values, and thus we
70 * supports variable length keys, in bcrypt, the initial "key" is the sha512 hash of the
74 * bcrypt actually has two different key expansion steps. The first one (expandstate) is
77 * but it can still use the fixed length key optimization discussed above and can do away with
329 * Holds the expanded key [p] and the key-depended s-boxes [sb]
336 * Holds the last used key
345 * because the encryption / decryption / key schedul
616 _expand0state($key, & $sbox0, & $sbox1, & $sbox2, & $sbox3, & $p) global() argument
689 _expandstate($data, $key, & $sbox0, & $sbox1, & $sbox2, & $sbox3, & $p) global() argument
[all...]
H A DDES.php126 * max possible size of $key
142 * Key Cache "key"
612 * Sets the key.
619 * @param string $key
621 public function setKey($key)
623 if (!($this instanceof TripleDES) && strlen($key) != 8) {
624 throw new \LengthException('Key of size ' . strlen($key) . ' not supported by this algorithm. Only keys of size 8 are supported'); argument
627 // Sets the key
628 parent::setKey($key);
715 // Merge key schedul
[all...]
H A DBase.php
H A DRandom.php37 * eg. for RSA key generation.
129 // in SSH2 a shared secret and an exchange hash are generated through the key exchange process.
130 // the IV client to server is the hash of that "nonce" with the letter A and for the encryption key it's the letter C.
131 // if the hash doesn't produce enough a key or an IV that's long enough concat successive hashes of the
137 $key = sha1($seed . 'A', true);
166 $crypto->setKey(substr($key, 0, $crypto->getKeyLength() >> 3));
213 foreach (array_keys($arr) as $key) {
214 // do not recurse on the '__phpseclib_marker' key itself, for smaller memory usage
215 if ($key !== '__phpseclib_marker') {
216 $safearr[$key]
[all...]
H A DRC4.php86 protected $key;
124 * Sets the key length
129 * @throws \LengthException if the key length is invalid
143 * Sets the key length
147 * @param string $key
149 public function setKey($key)
151 $length = strlen($key);
156 parent::setKey($key);
215 * Setup the key (expansion)
221 $key
110 var $key; global() variable in phpseclib\\Crypt\\RC4
[all...]
/dokuwiki/inc/Parsing/ParserMode/
H A DFormatting.php67 $key = array_search($type, $modes);
68 if (is_int($key)) {
69 unset($modes[$key]);
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php131 /** The key of the regex array defining what to search for */
133 /** The key of the regex array defining what bracket group in a
136 /** The key of the regex array defining any modifiers to the regular expression */
138 /** The key of the regex array defining what bracket group in a
141 /** The key of the regex array defining what bracket group in a
144 /** The key of the regex array defining a custom keyword to use
989 * @param int $key The key of the keyword group to change the styles of
995 public function set_keyword_group_style($key, $style, $preserve_defaults = false) { argument
997 if('*' == $key) {
1026 set_keyword_group_highlighting($key, $flag = true) global() argument
1041 set_comments_style($key, $style, $preserve_defaults = false) global() argument
1066 set_comments_highlighting($key, $flag = true) global() argument
1265 set_methods_style($key, $style, $preserve_defaults = false) global() argument
1295 set_regexps_style($key, $style, $preserve_defaults = false) global() argument
1310 set_regexps_highlighting($key, $flag) global() argument
1321 set_case_sensitivity($key, $case) global() argument
1571 add_keyword($key, $word) global() argument
1599 remove_keyword($key, $word, $recompile = true) global() argument
1621 add_keyword_group($key, $styles, $case_sensitive = true, $words = array()) global() argument
1647 remove_keyword_group($key) global() argument
1664 optimize_keyword_group($key) global() argument
[all...]
/dokuwiki/inc/Search/
H A DIndexer.php157 * An empty value will erase the key.
158 * The $key parameter can be an array to add multiple keys. $value will
159 * not be used if $key is an array.
162 * @param mixed $key a key string or array of key=>value pairs
169 public function addMetaKeys($page, $key, $value = null)
171 if (!is_array($key)) {
172 $key = [$key
163 addMetaKeys($page, $key, $value = null) global() argument
312 renameMetaValue($key, $oldvalue, $newvalue) global() argument
650 lookupKey($key, & $value, $func = null) global() argument
830 getPages($key = null) global() argument
864 histogram($min = 1, $max = 0, $minlen = 3, $key = null) global() argument
[all...]
/dokuwiki/inc/Cache/
H A DCache.php15 public $key = ''; // primary identifier for this item variable in dokuwiki\\Cache\\Cache
31 * @param string $key primary identifier
34 public function __construct($key, $ext) argument
36 $this->key = $key;
38 $this->cache = getCacheName($key, $ext);
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/
H A DUniversalFeedCreator.php101 foreach ($vars as $key => $value) {
103 if (!in_array($key, array("_feed", "contentType", "encoding"))) {
104 $this->_feed->{$key} = $this->{$key};
/dokuwiki/lib/plugins/authad/adLDAP/collections/
H A DadLDAPCollection.php96 foreach ($this->info[0][strtolower($attribute)] as $key => $value) {
97 if ((string)$key != 'count') {
98 $array[$key] = $value;
/dokuwiki/lib/scripts/
H A Dedit.js16 * @param {string} key hint in title of button for access key
23 function createToolButton(icon,label,key,id,classname){ argument
34 if(key){
35 $btn.attr('title', label + ' ['+key.toUpperCase()+']')
36 .attr('accessKey', key);
93 jQuery.each(props.list, function (key, item) { argument
94 if (!props.list.hasOwnProperty(key)) {
98 if(isNaN(key)){
107 .appendTo($makebutton(key));
[all...]
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php372 foreach (['user', 'name', 'mail', 'group'] as $key) {
373 if (!isset($filter[$key])) {
374 $filter[$key] = '%';
376 $filter[$key] = '%' . $filter[$key] . '%';
411 foreach (['user', 'name', 'mail', 'group'] as $key) {
412 if (!isset($filter[$key])) {
413 $filter[$key] = '%';
415 $filter[$key] = '%' . $filter[$key]
[all...]
/dokuwiki/inc/HTTP/
H A DHTTPClient.php339 [$key, $val] = sexplode('=', $cookie, 2, '');
340 $key = trim($key);
342 if (isset($this->cookies[$key])) {
343 unset($this->cookies[$key]);
345 } elseif ($key) {
346 $this->cookies[$key] = $val;
781 [$key, $val] = sexplode(':', $line, 2, '');
782 $key = trim($key);
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/
H A DValue.php19 foreach ($this->data as $key => $value) {
20 $this->data[$key] = new Value($value);
113 foreach ($array as $key => $value) {
114 if ((string)$key != (string)$expected) {

12345