Home
last modified time | relevance | path

Searched refs:decoded (Results 1 – 5 of 5) sorted by path

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php202 $decoded = self::decode_ber($encoded);
203 if ($decoded === false) {
207 return [$decoded];
514 * @param array $decoded
519 public static function asn1map(array $decoded, $mapping, $special = [])
521 if (isset($mapping['explicit']) && is_array($decoded['content'])) {
522 $decoded = $decoded['content'][0];
527 $intype = $decoded['type'];
529 if (isset($decoded['constan
540 asn1map($decoded, $mapping, $special = array()) global() argument
[all...]
H A DX509.php464 $decoded = ASN1::decodeBER($cert);
466 if ($decoded) {
467 $x509 = ASN1::asn1map($decoded[0], Maps\Certificate::MAP);
474 $this->signatureSubject = substr($cert, $decoded[0]['content'][0]['start'], $decoded[0]['content'][0]['length']);
590 $decoded = ASN1::decodeBER($value);
591 if (!$decoded) {
594 $mapped = ASN1::asn1map($decoded[0], $map, ['iPAddress' => $decoder]);
595 $value = $mapped === false ? $decoded[0] : $mapped;
607 $decoded
[all...]
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php267 function encode($decoded, $one_time_encoding = false) argument
273 $decoded = $this->_utf8_to_ucs4($decoded);
276 $decoded = $this->_ucs4_string_to_ucs4($decoded);
285 if (empty($decoded)) return '';
291 foreach ($decoded as $k => $v) {
297 $decoded[$k] = 0x2E;
314 $encoded = $this->_encode(array_slice($decoded, $last_begin, (($k)-$last_begin)));
318 $output .= $this->_ucs4_to_utf8(array_slice($decoded,
419 _encode($decoded) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php451 $decoded = '';
466 $this->body = $decoded;
471 $decoded .= substr($encoded, $chunk_length, $length);
479 $this->body = $decoded;