Searched refs:encoded (Results 1 – 7 of 7) sorted by relevance
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/ |
| H A D | Element.php | 36 * @param string $encoded 39 public function __construct($encoded) argument 41 $this->element = $encoded;
|
| /dokuwiki/vendor/simplepie/simplepie/src/HTTP/ |
| H A D | Parser.php | 463 $encoded = $this->body; 466 $is_chunked = (bool) preg_match('/^([0-9a-f]+)[^\r\n]*\r\n/i', $encoded, $matches); 485 $decoded .= substr($encoded, $chunk_length, $length); 486 $encoded = substr($encoded, $chunk_length + $length + 2); 489 $encoded = ($encoded === false) ? '' : $encoded; 491 if (trim($encoded) === '0' || empty($encoded)) {
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ |
| H A D | ASN1.php | 132 private static $encoded; variable in phpseclib3\\File\\ASN1 191 * @param Element|string $encoded 194 public static function decodeBER($encoded) argument 196 if ($encoded instanceof Element) { 197 $encoded = $encoded->element; 200 self::$encoded = $encoded; 202 $decoded = self::decode_ber($encoded); 217 * @param string $encoded 222 private static function decode_ber($encoded, $start = 0, $encoded_pos = 0) argument 226 if (!isset($encoded[$encoded_pos])) { [all …]
|
| H A D | X509.php | 2671 $encoded = $subject->ipAddress($ipAddress); 2672 if ($encoded !== false) { 2673 $ipAddresses[] = $encoded;
|
| /dokuwiki/vendor/splitbrain/php-archive/src/ |
| H A D | Tar.php | 811 $encoded = str_repeat(chr(255), max(1, $length - PHP_INT_SIZE)); 812 $encoded .= substr($value, max(0, PHP_INT_SIZE - $length + 1)); 815 $encoded = chr(128) . str_repeat(chr(0), max(0, $length - PHP_INT_SIZE - 1)); 816 $encoded .= substr($value, max(0, PHP_INT_SIZE - $length + 1)); 818 $encoded = sprintf("%" . ($length - 1) . "s ", decoct($value)); 820 return $encoded;
|
| /dokuwiki/lib/plugins/authad/adLDAP/classes/ |
| H A D | adLDAPUsers.php | 521 $encoded=""; 522 for ($i=0; $i <strlen($password); $i++){ $encoded.="{$password[$i]}\000"; } 523 return $encoded;
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | CHANGELOG.md | 34 - Stop `SimplePie\File` from mangling UTF-16 and UTF-32 encoded feeds (by @Alkarex in [#916](https:…
|