Home
last modified time | relevance | path

Searched refs:encoded (Results 1 – 8 of 8) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/
H A DElement.php36 * @param string $encoded
39 public function __construct($encoded) argument
41 $this->element = $encoded;
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php313 $encoded = '';
314 … $encoded = $this->_encode(array_slice($decoded, $last_begin, (($k)-$last_begin)));
315 if ($encoded) {
316 $output .= $encoded;
328 $encoded = '';
329 $encoded = $this->_encode(array_slice($decoded, $last_begin, (($inp_len)-$last_begin)));
330 if ($encoded) {
331 $output .= $encoded;
360 function _decode($encoded) argument
363 if (!preg_match('!^'.preg_quote($this->_punycode_prefix, '!').'!', $encoded)) {
[all …]
H A DReadMe.txt8 * This file is encoded in UTF-8 *
17 and their encoded form as it will be used in the DNS (Domain Name System).
28 Errors, incorrectly encoded or invalid strings will lead to either a FALSE
91 3. The input is read from a UCS-4 coded file and encoded line by line. By
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php451 $encoded = $this->body;
454 $is_chunked = (bool) preg_match('/^([0-9a-f]+)[^\r\n]*\r\n/i', $encoded, $matches);
470 $decoded .= substr($encoded, $chunk_length, $length);
471 $encoded = substr($encoded, $chunk_length + $length + 2);
474 $encoded = ($encoded === false) ? '' : $encoded;
476 if (trim($encoded) === '0' || empty($encoded)) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php132 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 DX509.php2665 $encoded = $subject->ipAddress($ipAddress);
2666 if ($encoded !== false) {
2667 $ipAddresses[] = $encoded;
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php811 $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 DadLDAPUsers.php521 $encoded="";
522 for ($i=0; $i <strlen($password); $i++){ $encoded.="{$password[$i]}\000"; }
523 return $encoded;