Home
last modified time | relevance | path

Searched refs:length (Results 26 – 50 of 74) sorted by last modified time

123

/dokuwiki/inc/
H A Dinfoutils.php310 foreach ($lengths as $length) {
311 if (count(idx_getIndex('w', $length)) !== count(idx_getIndex('i', $length))) {
H A Dauth.php400 * @param int $length number of bytes
406 function auth_randombytes($length)
408 return random_bytes($length);
340 auth_randombytes($length) global() argument
/dokuwiki/lib/plugins/acl/
H A Dscript.js14 if (jQuery('#acl_manager').length === 0) {
85 for (var i = 0; i < all.length; i++) {
/dokuwiki/vendor/composer/
H A DClassLoader.php248 $length = strlen($prefix);
249 if ('\\' !== $prefix[$length - 1]) {
252 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
303 $length = strlen($prefix);
304 if ('\\' !== $prefix[$length - 1]) {
307 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php357 * "Note that the length of the concatenation of 'packet_length',
1837 $this->signature_format = substr($this->signature, 4, $temp['length']);
3777 // "implementations SHOULD check that the packet length is reasonable"
3779 // don't do this when GCM mode is used since GCM mode doesn't encrypt the length
3867 if (substr($payload, 9, $length) == 'keepalive@openssh.com' && isset($this->server_channels[$channel])) {
3868 if (ord(substr($payload, 9 + $length))) { // want reply
4308 // 4 (packet length) + 1 (padding length) + 4 (minimal padding amount) == 9
4362 $length = $this->lengthEncrypt->encrypt($packet & "\xFF\xFF\xFF\xFF");
4371 $this->encrypt->setAAD($length);
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php281 $length = current(unpack('N', $this->readBytes(4)));
282 $packet = $this->readBytes($length);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php570 $number = $element->childNodes->length;
593 $number = $element->childNodes->length;
H A DSimplePie.php913 * Set the length of time (in seconds) that the contents of a feed will be
924 * Set the length of time (in seconds) that the autodiscovered feed URL will
1848 $microformats = $result->length !== 0;
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php115 $length = strlen($xml);
117 header('Content-Length: ' . $length);
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DLICENSE265 functions (ten lines or less in length), then the use of the object
/dokuwiki/inc/Utf8/
H A DPhpString.php72 * Return part of a string given character offset (and optionally length)
76 * @param int $length (optional) length in UTF-8 characters from offset
82 public static function substr($str, $offset, $length = null)
85 if ($length === null) {
89 return mb_substr($str, $offset, $length);
97 * offset and length, we'll repeat a group of 65535 characters when needed (ok, up to MAXINT-65536)
99 * substr documentation states false can be returned in some cases (e.g. offset > string length)
103 * we only carry it out when necessary. It isn't necessary for +ve offsets and no specified length
109 if ($length !
83 substr($str, $offset, $length = null) global() argument
190 substr_replace($string, $replacement, $start, $length = 0) global() argument
[all...]
/dokuwiki/lib/scripts/
H A Dlinkwiz.js93 if($obj.length > 0){
138 if ($obj.length === 0) {
193 if(a.title == '' || a.title.substr(a.title.length-1) == ':'){
225 if(stxt.charAt(stxt.length - 1) == ' '){
240 var so = link.length;
244 so += dw_linkwiz.val.open.length;
254 eo = dw_linkwiz.val.close.length;
H A Dlocktimer.js32 if($edit.length === 0 || $edit.attr('readonly')) {
113 if(dw_locktimer.draft && jQuery('#dw__editform').find('textarea[name=wikitext]').length > 0){
136 if (data.errors.length) {
H A Dmedia.js34 if (!$tree.length) return;
117 if ($options.length === 0) {
253 opts += (opts.length) ? '&' : '?';
299 if (!$file.length || !$name.length) {
329 if ($content.length === 0) {
347 } else if ($link.closest('form').length > 0) {
361 if (!$form.length) return;
430 } else if ($link.closest('form').length > 0) {
472 if ($container.length
[all...]
H A Dpage.js39 while ($tgt.length > 0 && !($tgt.hasClass('sectionedit' + nr) || $tgt.find('.sectionedit' + nr).length)) {
82 if($fndiv.length === 0){
113 if (!$content.length) {
148 if(!$handle.length) return;
150 if(!$content.length) return;
H A Dqsearch.js32 if (dw_qsearch.$inObj.length === 0 ||
33 dw_qsearch.$outObj.length === 0) {
132 var start, length, replace, nsL, nsR, eli, runaway;
149 length = 2;
153 length = 1;
159 length = 1;
163 replace, start, length);
H A Dsearch.js5 if (!$searchForm.length) {
H A Dtextselection.js79 selection.obj.value.substring(selection.end, selection.obj.value.length);
84 selection.end = selection.start + text.replace(/\r?\n/g, '\r\n').length;
86 selection.end = selection.start + text.length;
117 if(text.charAt(text.length - 1) == ' '){
126 startofs: tagOpen.length,
127 endofs: tagClose.length
H A Dtoolbar.js23 if ($toolbar.length == 0 || $edit.length == 0 || $edit.attr('readOnly')) {
116 startofs: props.open.length,
117 endofs: props.close.length
H A Dtree.js74 if ($sublist.length > 0) {
/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()}
21 * however possible, won't do anything (AES has a fixed block length whereas Rijndael has a variable one).
63 * @param int $length
66 public function setBlockLength($length)
68 throw new \BadMethodCallException('The block length cannot be set for AES.');
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
77 * @param int $length
78 * @throws \LengthException if the key length is
70 setBlockLength($length) global() argument
85 setKeyLength($length) global() argument
[all...]
H A DBase.php
H A DBlowfish.php41 * of data. The average length of back to back _encryptBlock() calls with a fixed P-array is
70 * supports variable length keys, in bcrypt, the initial "key" is the sha512 hash of the
72 * fixed length whereas Blowfish keys are not of a fixed length.
77 * but it can still use the fixed length key optimization discussed above and can do away with
370 * Sets the key length.
374 * @param int $length
376 public function setKeyLength($length)
378 if ($length < 32 || $length > 44
419 setKeyLength($length) global() argument
[all...]
H A DHash.php82 * Byte-length of hash output (Internal HMAC)
87 private $length;
210 * Keys can be of any length.
224 * Keys can be of any length.
238 throw new \LengthException('The nonce length must be between 1 and 16 bytes, inclusive');
295 $this->length = abs(substr($hash, -3)) >> 3;
308 $this->length = 12; // 96 / 8 = 12
312 $this->length = 16;
315 $this->length = 20;
320 $this->length
[all...]

123