Home
last modified time | relevance | path

Searched refs:strlen (Results 51 – 75 of 101) sorted by path

12345

/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG498 * Use considerably less strlen() calls on various points by caching the results (milian)
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php719 $this->language_path = ('/' == $path[strlen($path) - 1]) ? $path : $path . '/';
2193 $length = strlen($code);
2226 'open_strlen' => strlen($open),
2229 'close_strlen' => strlen($close),
2268 'close_strlen' => strlen($matches_rx['end'][0]),
2276 'close_strlen' => strlen($matches_rx[2][0]),
2390 $hq_strlen = strlen($hq);
2487 $length = strlen($part);
2512 'length' => strlen($match[0][0]),
2540 if ($testchar === substr($part, $i, strlen(
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php74 if (strlen($this->message) <= $chunk_size) {
/dokuwiki/vendor/kissifrot/php-ixr/src/Request/
H A DRequest.php41 return strlen($this->xml);
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php115 $length = strlen($xml);
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DFeedCreator.php100 if (strlen($string) <= $length) {
190 return substr($fileInfo["basename"], 0, -(strlen($fileInfo["extension"]) + 1)).".xml";
H A DHTMLCreator.php159 return substr($fileInfo["basename"], 0, -(strlen($fileInfo["extension"]) + 1)).".html";
H A DJSCreator.php42 return substr($fileInfo["basename"], 0, -(strlen($fileInfo["extension"]) + 1)).".js";
H A DKMLCreator.php103 return substr($fileInfo["basename"], 0, -(strlen($fileInfo["extension"]) + 1)).".kml";
H A DMBOXCreator.php37 $linlen = strlen($line);
49 if ((strlen($newline) + strlen($c)) >= $line_max) { // CRLF is not counted
108 return substr($fileInfo["basename"], 0, -(strlen($fileInfo["extension"]) + 1)).".mbox";
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedDate.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DAES.php105 switch (strlen($key)) {
111 throw new \LengthException('Key of size ' . strlen($key) . ' not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported');
H A DBase.php
H A DDES.php623 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');
H A DHash.php232 case strlen($nonce) > 0 && strlen($nonce) <= 16:
259 if (strlen($this->key) <= $this->getBlockLengthInBytes()) {
473 $last = strlen($nonce) - 1;
537 $b = strlen($m) <= 1024 ? "\0\0\0\0\0\0\0\0$a" : self::L2Hash($L2Key_i, $a);
578 $length = count($m) ? strlen($m[$i]) : 0;
607 //$t = strlen($m) >> 2;
680 if (strlen($m) <= 0x20000) { // 2^14 64-bit words
685 $length = strlen($m_2);
791 if (strlen(
[all...]
H A DRC2.php272 if ($this->current_key_length != 128 || strlen($this->orig_key) < 16) {
322 * strlen($key) <= 128), however, we only use the first 128 bytes if $key
344 if (strlen($key) < 1 || strlen($key) > 128) {
345 throw new \LengthException('Key of size ' . strlen($key) . ' not supported by this algorithm. Only keys of sizes between 8 and 1024 bits, inclusive, are supported');
348 $t = strlen($key);
377 $this->key_length = strlen($this->key);
H A DRC4.php151 $length = strlen($key);
222 $keyLength = strlen($key);
266 $len = strlen($text);
H A DRSA.php523 if (strlen($x) > $xLen) {
587 $tLen = strlen($t);
646 $tLen = strlen($t);
H A DRandom.php182 while (strlen($result) < $length) {
183 $i = $crypto->encrypt(microtime()); // strlen(microtime()) == 21
184 $r = $crypto->encrypt($i ^ $v); // strlen($v) == 20
185 $v = $crypto->encrypt($r ^ $i); // strlen($r) == 20
H A DTripleDES.php232 * Triple DES can use 128-bit (eg. strlen($key) == 16) or 192-bit (eg. strlen($key) == 24) keys.
243 if ($this->explicit_key_length !== false && strlen($key) != $this->explicit_key_length) {
244 throw new \LengthException('Key length has already been set to ' . $this->explicit_key_length . ' bytes and this key is ' . strlen($key) . ' bytes');
247 switch (strlen($key)) {
254 throw new \LengthException('Key of size ' . strlen($key) . ' not supported by this algorithm. Only keys of sizes 16 or 24 are supported');
259 $this->key_length = strlen($key);
283 if ($this->mode_3cbc && strlen($this->key) > 8) {
305 if ($this->mode_3cbc && strlen($this->key) > 8) {
310 str_pad($ciphertext, (strlen(
[all...]
H A DTwofish.php419 switch (strlen($key)) {
425 throw new \LengthException('Key of size ' . strlen($key) . ' not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported');
456 switch (strlen($this->key)) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php210 for ($i = 0; $i < strlen($source); $i++) {
211 if (strlen($this->ansi)) {
220 case strlen($this->ansi) == 2 && $chr >= 64 && $chr <= 95 && $chr != ord('['):
221 case strlen($this->ansi) > 2 && $chr >= 64 && $chr <= 126:
379 //if (!strlen($this->tokenization[count($this->tokenization) - 1])) {
386 if ($this->x > strlen($this->screen[$this->y])) {
H A DASN1.php266 $length = strlen($encoded) - $encoded_pos;
282 if ($length > (strlen($encoded) - $encoded_pos)) {
353 if ($constructed || strlen($content) != 1) {
378 $length -= (strlen($content) - $content_pos);
420 if ($constructed || strlen($content)) {
431 $content_len = strlen($content);
745 $size = (strlen($decoded['content']) - 1) * 8 - $offset;
755 for ($i = strlen($decoded['content']) - 1; $i > 0; $i--) {
935 $temp = $subtag . self::encodeLength(strlen($temp)) . $temp;
969 $temp = $subtag . self::encodeLength(strlen(
[all...]
H A DX509.php1144 if (strlen($line) < 3) {
1516 $size = strlen($ip) >> 1;
2806 $this->currentCert['publicKeyAndChallenge']['challenge'] = $this->challenge & str_repeat("\x7F", strlen($this->challenge));
3061 $temp = chr(ASN1::TYPE_GENERALIZED_TIME) . ASN1::encodeLength(strlen($temp)) . $temp;

12345