Home
last modified time | relevance | path

Searched refs:magic (Results 1 – 5 of 5) sorted by last modified time

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php685 * Uses magic bytes for existing files, the file extension otherwise
694 // for existing files, try to read the magic bytes
698 $magic = fread($fh, 5);
701 if(strpos($magic, "\x42\x5a") === 0) return Archive::COMPRESS_BZIP;
702 if(strpos($magic, "\x1f\x8b") === 0) return Archive::COMPRESS_GZIP;
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php1230 * Reads the first magic bytes of the given file for content type guessing,
1241 $magic = fread($fh, 5);
1244 if (strpos($magic, "\x42\x5a") === 0) return 'bz';
1245 if (strpos($magic, "\x1f\x8b") === 0) return 'gz';
1246 if (strpos($magic, "\x50\x4b\x03\x04") === 0) return 'zip';
/dokuwiki/inc/
H A DPassHash.php36 $magic = '';
49 $magic = '1';
53 $magic = 'apr1';
57 $magic = 'S';
61 $magic = 'P';
65 $magic = 'H';
68 $magic = ['algo' => $m[1], 'iter' => $m[2]];
72 $magic = ['algo' => $m[1], 'iter' => $m[2]];
95 $magic = ['prefix' => $m[1], 'rounds' => $m[2]];
119 $newhash = $this->$call($clear, $salt, $magic);
226 hash_apr1($clear, $salt = null, $magic = 'apr1') global() argument
398 stretched_hash($algo, $clear, $salt = null, $magic = 'P', $compute = 8) global() argument
462 hash_pmd5($clear, $salt = null, $magic = 'P', $compute = 8) global() argument
483 hash_drupal_sha512($clear, $salt = null, $magic = 'S', $compute = 15) global() argument
498 hash_hmd5($clear, $salt = null, $magic = 'H', $compute = 8) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md19 - Registry: Allow using class-strings instead of magic strings by @jtojnar and @Art4 in [#766](https://github.com/simplepie/simplepie/pull/766)
70 - Do not use magic values for state machine state by @jtojnar in [#735](https://github.com/simplepie/simplepie/pull/735)