Home
last modified time | relevance | path

Searched refs:key (Results 76 – 100 of 116) sorted by path

12345

/dokuwiki/lib/scripts/
H A Dtoolbar.js41 $btn = jQuery(createToolButton(val.icon, val.title, val.key, val.id,
/dokuwiki/lib/tpl/
H A Dindex.php56 foreach ($ini['replacements'] as $key => $val) {
58 echo '<td>' . hsc($key) . '</td>';
/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/vendor/kissifrot/php-ixr/
H A DREADME.md11 The Incutio XML-RPC library (IXR) is designed primarily for ease of use. It incorporates both client and server classes, and is designed to hide as much of the workings of XML-RPC from the user as possible. A key feature of the library is automatic type conversion from PHP types to XML-RPC types and vice versa. This should enable developers to write web services with very little knowledge of the underlying XML-RPC standard.
/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) {
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DLICENSE
H A Dlessc.inc.php
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DFeedCreator.php58 * Any additional elements to include as an associated array. All $key => $value pairs
60 * <$key>$value</$key>
140 * @param array $elements an associative array containing key => value pairs
148 foreach ($elements AS $key => $value) {
149 $ae .= $indentString."<$key>$value</$key>\n";
/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/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DAES.php15 * {@link self::setKey() setKey()}. ie. if the key is 128-bits, the key length will be 128-bits. If it's 136-bits
16 * it'll be null-padded to 192-bits and 192 bits will be the key length until {@link self::setKey() setKey()}
72 * Sets the key length
74 * Valid key lengths are 128, 192, and 256. Set the link to bool(false) to disable a fixed key length
78 * @throws \LengthException if the key length isn't supported
94 * Sets the key.
96 * Rijndael supports five different key lengths, AES only supports three.
100 * @param string $key
107 setKey($key) global() argument
[all...]
H A DBase.php
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 DHash.php103 private $key = false;
208 * Sets the key for HMACs
212 * @param string $key
214 public function setKey($key = false)
216 $this->key = $key;
242 * Pre-compute the key used by the HMAC
245 * will first hash the key using H and then use the resultant L byte string as the actual key to HMAC."
254 if ($this->key
113 var $key = false; global() variable in phpseclib\\Crypt\\Hash
184 setKey($key = false) global() argument
[all...]
H A DRC2.php56 * @see \phpseclib3\Crypt\Common\SymmetricKey::key
60 protected $key;
65 * @see \phpseclib3\Crypt\Common\SymmetricKey::key
98 * The key length in bits.
102 * {@internal Changing this value after setting the key has no effect.}
111 * The key length in bits.
131 * Twice the same 256-value sequence to save a modulus in key expansion.
204 * Inverse key expansion randomization table.
289 * Sets the key length.
291 * Valid key length
63 var $key; global() variable in phpseclib\\Crypt\\RC2
343 setKey($key, $t1 = 0) global() argument
[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...]
H A DRSA.php41 * Technically, id-RSASSA-PSS has a different key format than rsaEncryption. So
45 * decode an id-RSASSA-PSS key. For X.509 certificates the id-RSASSA-PSS
242 * than 256 bits. As a consequence if the key you're trying to create is 1024 bits and you've set smallestPrime
245 * ignored (ie. multi-prime RSA support is more intended as a way to speed up RSA key generation when there's
260 * Sets the public exponent for key generation
272 * Sets the smallest prime number in bits. Used for key generation
296 * Create a private key
298 * The public key can be extracted from the private key
441 $key
1089 _parseKey($key, $type) global() argument
1728 loadKey($key, $type = false) global() argument
1880 setPublicKey($key = false, $type = false) global() argument
1940 setPrivateKey($key = false, $type = false) global() argument
[all...]
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 DRijndael.php12 * {@link self::setKey() setKey()}. ie. if the key is 128-bits, the key length will be 128-bits. If it's
13 * 136-bits it'll be null-padded to 192-bits and 192 bits will be the key length until
16 * Not all Rijndael implementations may support 160-bits or 224-bits as the block length / key length. mcrypt, for example,
17 * does not. AES, itself, only supports block lengths of 128 and key lengths of 128, 192, and 256.
19 * algorithm for block lengths of 192 and 256 but not for block lengths / key lengths of 160 and 224. Indeed, 160 and 224
20 * are first defined as valid key / block lengths in
104 * because the encryption / decryption / key schedule creation requires this number and not $block_size. We could
117 * because the encryption / decryption / key schedule creation requires this number and not $key_length. We could
152 * Holds the last used key
[all...]
H A DTripleDES.php84 * max possible size of $key
142 // This three $des'es will do the 3CBC work (if $key > 64bits)
206 * Sets the key length.
208 * Valid key lengths are 128 and 192 bits.
210 * If you want to use a 64-bit key use DES.php
213 * @throws \LengthException if the key length is invalid
230 * Sets the key.
232 * Triple DES can use 128-bit (eg. strlen($key) == 16) or 192-bit (eg. strlen($key) == 24) keys.
238 * @throws \LengthException if the key lengt
263 setKey($key) global() argument
[all...]
H A DTwofish.php341 * Holds the last used key
388 * Sets the key length.
390 * Valid key lengths are 128, 192 or 256 bits
409 * Sets the key.
411 * Rijndael supports five different key lengths
414 * @param string $key
415 * @throws \LengthException if the key length isn't supported
417 public function setKey($key)
419 switch (strlen($key)) {
425 throw new \LengthException('Key of size ' . strlen($key)
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php538 foreach ($mapping['children'] as $key => $option) {
551 if (isset($special[$key])) {
552 $value = $special[$key]($value);
554 return [$key => $value];
597 foreach ($mapping['children'] as $key => $child) {
635 if (isset($special[$key])) {
636 $candidate = $special[$key]($candidate);
638 $map[$key] = $candidate;
641 $map[$key] = $child['default'];
673 foreach ($mapping['children'] as $key
[all...]
H A DX509.php149 * Public key
156 * Private key
482 $key = $x509['tbsCertificate']['subjectPublicKeyInfo'];
483 $key = ASN1::encodeDER($key, Maps\SubjectPublicKeyInfo::MAP);
486 chunk_split(base64_encode($key), 64) .
641 foreach ($extensions as $key => $value) {
643 $extensions[$key] = $newext;
984 If the keyUsage extension is present, then the subject public key
994 The cA boolean indicates whether the certified public key ma
2505 _reformatKey($algorithm, $key) global() argument
3127 setPublicKey($key) global() argument
3141 setPrivateKey($key) global() argument
4058 _sign($key, $signatureAlgorithm) global() argument
4685 computeKeyIdentifier($key = null, $method = 1) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php608 list($key, $value) = Strings::unpackSSH2('ss', $response);
609 $this->extensions[$key] = $value;
1046 foreach ($files as $key => $value) {
1047 if ($depth != 0 && $key == '..') {
1048 unset($files[$key]);
1052 if ($key != '.' && $key != '..') {
1054 $is_directory = is_array($this->query_stat_cache($this->realpath($dir . '/' . $key)));
1056 $stat = $this->lstat($dir . '/' . $key);
1063 $files[$key]
3250 _parseTime($key, $flags, & $response) global() argument
[all...]

12345