Home
last modified time | relevance | path

Searched +full:encoding -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 89) sorted by relevance

1234

/dokuwiki/vendor/paragonie/constant_time_encoding/
H A DREADME.md1 # Constant-Time Encoding
11 this library aims to offer character encoding functions that do not leak
12 information about what you are encoding/decoding via processor cache
20 * Base16 encoding
21 * Base32 encoding
43 use ParagonIE\ConstantTime\Encoding;
49 echo Encoding::base64Encode($data), "\n";
50 echo Encoding::base32EncodeUpper($data), "\n";
51 echo Encoding::base32Encode($data), "\n";
52 echo Encoding::hexEncode($data), "\n";
[all …]
H A Dcomposer.json3 "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
6 "encoding",
/dokuwiki/vendor/splitbrain/lesserphp/
H A D.phpcs.xml1 <?xml version="1.0" encoding="UTF-8"?>
10 <arg name="encoding" value="UTF-8"/>
/dokuwiki/vendor/paragonie/constant_time_encoding/src/
H A DEncoding.php33 * Class Encoding
37 abstract class Encoding class
40 * RFC 4648 Base32 encoding
54 * RFC 4648 Base32 encoding
96 * RFC 4648 Base32 encoding
110 * RFC 4648 Base32Hex encoding
152 * RFC 4648 Base64 encoding
H A DRFC4648.php42 * RFC 4648 Base64 encoding
76 * RFC 4648 Base64 (URL Safe) encoding
110 * RFC 4648 Base32 encoding
127 * RFC 4648 Base32 encoding
144 * RFC 4648 Base32-Hex encoding
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DGPXCreator.php18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DOPMLCreator.php18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DMBOXCreator.php19 $this->encoding = "ISO-8859-15";
23 * Quoted Printable encoding
81 $feed .= " charset=\"".$this->encoding."\"\n";
82 $feed .= "Content-Transfer-Encoding: quoted-printable\n";
H A DPIECreator01.php19 $this->encoding = "utf-8";
25 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DKMLCreator.php18 $this->encoding = "utf-8";
24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DAtomCreator03.php27 $this->encoding = "utf-8";
33 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
H A DFeedCreator.php49 * This feed's character encoding.
53 protected $encoding = "UTF-8"; //"ISO-8859-1"; variable in FeedCreator
61 * Again: No encoding will be used! This means you can invalidate or enhance the feed
214 …header("Content-Type: ".$this->contentType."; charset=".$this->encoding."; filename=".basename($fi…
/dokuwiki/vendor/simplepie/simplepie/src/XML/Declaration/
H A DParser.php24 * Encoding
29 public $encoding = 'UTF-8'; variable in SimplePie\\XML\\Declaration\\Parser
126 $this->encoding = 'UTF-8';
222 if (substr($this->data, $this->position, 8) === 'encoding') {
244 if ($encoding = $this->get_value()) {
245 $this->encoding = $encoding;
/dokuwiki/lib/plugins/safefnrecode/
H A Dplugin.info.txt6 desc Changes existing page and foldernames for the change in the safe filename encoding
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php286 * Change a string from one encoding to another
288 * @param string $data Raw data in $input encoding
289 * @param string $input Encoding of $data
290 * @param string $output Encoding you want
295 $input = Misc::encoding($input);
296 $output = Misc::encoding($output);
313 …varies only with PHP version (the middle part of this expression checks the encoding is supported).
348 // Check that the encoding is supported
382 * Normalize an encoding name
392 public static function encoding(string $charset) function in SimplePie\\Misc
[all …]
/dokuwiki/vendor/splitbrain/php-archive/
H A Dphpunit.xml1 <?xml version="1.0" encoding="UTF-8"?>
H A Dcomposer.json19 "ext-mbstring": "Can be used alternatively for handling filename encoding",
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPublicKey.php92 // EMSA-PKCS1-v1_5 encoding
96 …// If the encoding operation outputs "intended encoded message length too short," output "RSA modu…
126 * specified the use BER encoding rather than DER encoding that PKCS1 v2.0 specified.
130 * whether the underlying BER encoding is a DER encoding and hence whether the signature
133 * RSA::PADDING_PKCS1... that means BER encoding was used.
335 // EME-PKCS1-v1_5 encoding
380 // EME-OAEP encoding
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/
H A DElement.php20 * will also bypass the normal encoding rules in ASN1::encodeDER()
/dokuwiki/_test/data/media/wiki/
H A Dtest.svg1 <?xml version="1.0" encoding="utf-8"?>
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DNameFilter.php24 * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
H A DCallableNameFilter.php37 * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
/dokuwiki/inc/HTTP/
H A DHTTPClient.php72 if (extension_loaded('zlib')) $this->headers['Accept-encoding'] = 'gzip';
173 isset($this->headers['Accept-encoding']) &&
174 $this->headers['Accept-encoding'] == 'gzip'
176 unset($this->headers['Accept-encoding']);
391 //read body (with chunked encoding if needed)
395 isset($this->resp_headers['transfer-encoding']) &&
396 $this->resp_headers['transfer-encoding'] == 'chunked'
429 !isset($this->resp_headers['transfer-encoding'])
432 … * If a message is received with both a Transfer-Encoding header field and a Content-Length
449 …} elseif (!isset($this->resp_headers['transfer-encoding']) && $this->max_bodysize && !$this->keep_…
[all …]
/dokuwiki/inc/
H A Dfetch.functions.php106 * Try an rfc2231 compatible encoding. This ensures correct
111 * There is no additional checking, just the encoding and setting the key=value for usage in headers
116 * @param string $charset used charset for the encoding of value
/dokuwiki/_test/
H A Dphpunit.xml1 <?xml version="1.0" encoding="UTF-8"?>

1234