| /dokuwiki/vendor/paragonie/constant_time_encoding/ |
| H A D | README.md | 1 # 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 D | composer.json | 3 "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)", 6 "encoding",
|
| /dokuwiki/vendor/splitbrain/lesserphp/ |
| H A D | .phpcs.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 10 <arg name="encoding" value="UTF-8"/>
|
| /dokuwiki/vendor/paragonie/constant_time_encoding/src/ |
| H A D | Encoding.php | 33 * 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 D | RFC4648.php | 42 * 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 D | GPXCreator.php | 18 $this->encoding = "utf-8"; 24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
|
| H A D | OPMLCreator.php | 18 $this->encoding = "utf-8"; 24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
|
| H A D | MBOXCreator.php | 19 $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 D | PIECreator01.php | 19 $this->encoding = "utf-8"; 25 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
|
| H A D | KMLCreator.php | 18 $this->encoding = "utf-8"; 24 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
|
| H A D | AtomCreator03.php | 27 $this->encoding = "utf-8"; 33 $feed = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>\n";
|
| H A D | FeedCreator.php | 49 * 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 D | Parser.php | 24 * 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 D | plugin.info.txt | 6 desc Changes existing page and foldernames for the change in the safe filename encoding
|
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Misc.php | 286 * 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 D | phpunit.xml | 1 <?xml version="1.0" encoding="UTF-8"?>
|
| H A D | composer.json | 19 "ext-mbstring": "Can be used alternatively for handling filename encoding",
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/ |
| H A D | PublicKey.php | 92 // 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 D | Element.php | 20 * will also bypass the normal encoding rules in ASN1::encodeDER()
|
| /dokuwiki/_test/data/media/wiki/ |
| H A D | test.svg | 1 <?xml version="1.0" encoding="utf-8"?>
|
| /dokuwiki/vendor/simplepie/simplepie/src/Cache/ |
| H A D | NameFilter.php | 24 * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
|
| H A D | CallableNameFilter.php | 37 * characters A-Z, a-z, 0-9, _, and . in any order in UTF-8 encoding
|
| /dokuwiki/inc/HTTP/ |
| H A D | HTTPClient.php | 72 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 D | fetch.functions.php | 106 * 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 D | phpunit.xml | 1 <?xml version="1.0" encoding="UTF-8"?>
|