Home
last modified time | relevance | path

Searched refs:encoded (Results 1 – 7 of 7) sorted by path

/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;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php8 * ASN.1 provides the semantics for data encoded using various schemes. The most commonly
9 * utilized scheme is DER or the "Distinguished Encoding Rules". PEM's are base64 encoded
132 private static $encoded;
191 * @param Element|string $encoded
194 public static function decodeBER($encoded)
196 if ($encoded instanceof Element) {
197 $encoded = $encoded->element;
200 self::$encoded = $encoded;
133 var $encoded; global() variable in phpseclib\\File\\ASN1
219 decodeBER($encoded) global() argument
243 _decode_ber($encoded, $start = 0, $encoded_pos = 0) global() argument
[all...]
H A DX509.php16 * be encoded. It can be encoded explicitly or left out all together. This would effect the signature value and thus may invalidate the
97 * ie. a base64-encoded PEM with a header and a footer
180 * encoded so we take save the portion of the original cert that the signature would have made for.
1496 * Takes in a base64 encoded "blob" and returns a human readable IP address
1509 * Takes in a base64 encoded "blob" and returns a human readable IP address / mask
1525 * Takes a human readable IP address into a base64-encoded "blob"
2670 $encoded = $subject->ipAddress($ipAddress);
2671 if ($encoded !== false) {
2672 $ipAddresses[] = $encoded;
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/
H A DElement.php36 * @param string $encoded
39 public function __construct($encoded)
41 $this->element = $encoded;
43 __construct($encoded) global() argument
/dokuwiki/vendor/simplepie/simplepie/idn/
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
H A Didna_convert.class.php31 * to be translated between their original (localized) form and their encoded form
313 $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
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php452 $encoded = $this->body;
455 $is_chunked = (bool) preg_match('/^([0-9a-f]+)[^\r\n]*\r\n/i', $encoded, $matches);
471 $decoded .= substr($encoded, $chunk_length, $length);
472 $encoded = substr($encoded, $chunk_length + $length + 2);
475 $encoded = ($encoded === false) ? '' : $encoded;
477 if (trim($encoded) === '0' || empty($encoded)) {
[all...]