Home
last modified time | relevance | path

Searched refs:md5 (Results 1 – 25 of 37) sorted by last modified time

12

/dokuwiki/inc/
H A Dpageutils.php383 return $conf['lockdir'] . '/' . md5(cleanID($id)) . '.lock';
603 * @param string $data This data is used to create a unique md5 name
610 $md5 = md5($data);
611 $file = $conf['cachedir'] . '/' . $md5[0] . '/' . $md5 . $ext;
H A Dparserutils.php794 $optionsmd5 = md5(serialize($options));
H A Dsearch.php234 $info['hash'] = md5(io_readFile(mediaFN($info['id']), false));
366 * $opts['hash'] do md5 sum of content?
410 $item['hash'] = md5(trim(rawWiki($item['id'])));
579 if (!empty($opts['hash'])) $item['hash'] = md5(io_readFile($base . '/' . $file, false));
H A Dtemplate.php247 $tseed = md5($tseed);
H A Dio.php438 $lockDir = $conf['lockdir'] . '/' . md5($file);
467 $lockDir = $conf['lockdir'] . '/' . md5($file);
621 $dir = md5(uniqid(random_int(0, mt_getrandmax()), true));
H A DMailer.class.php49 $this->partid = substr(md5(uniqid(random_int(0, mt_getrandmax()), true)), 0, 8) . '@' . $server;
50 $this->boundary = '__________' . md5(uniqid(random_int(0, mt_getrandmax()), true));
H A Dinit.php121 define('DOKU_COOKIE', 'DW' . md5(DOKU_REL . (($conf['securecookie']) ? $serverPort : '')));
H A DPassHash.php41 // have 'U' added as the first character and need an extra md5().
43 $clear = md5($clear);
77 } elseif (preg_match('/^md5\$(.{5})\$/', $hash, $m)) {
102 $method = 'md5';
206 return "{SMD5}" . base64_encode(md5($clear . $salt, true) . $salt);
230 $bin = pack("H32", md5($clear . $salt . $clear));
237 $bin = pack("H32", md5($text));
243 $bin = pack("H32", md5($new));
262 * Password hashing method 'md5'
271 return md5(
[all...]
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php142 $data['anon_id'] = md5(auth_cookiesalt());
/dokuwiki/lib/exe/
H A Djs.php87 $cache = new Cache('scripts' . $_SERVER['HTTP_HOST'] . $_SERVER['SERVER_PORT'] . md5(serialize($files)), '.js');
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php561 case 'md5':
643 throw new UnsupportedAlgorithmException('md2 and md5 require NULLs');
706 // \phpseclib3\Crypt\Hash supports algorithms that PKCS#1 doesn't support. md5-96 and sha1-96, for example.
709 case 'md5':
721 'The only supported hash algorithms are: md2, md5, sha1, sha256, sha384, sha512, sha224, sha512/224, sha512/256'
741 // \phpseclib3\Crypt\Hash supports algorithms that PKCS#1 doesn't support. md5-96 and sha1-96, for example.
744 case 'md5':
756 'The only supported hash algorithms are: md2, md5, sha1, sha256, sha384, sha512, sha224, sha512/224, sha512/256'
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DMemcache.php106 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
H A DMemcached.php103 $this->name = $this->options['extras']['prefix'] . md5("$name:$type");
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCaption.php123 return md5(serialize($this));
H A DCategory.php119 return md5(serialize($this));
H A DCopyright.php96 return md5(serialize($this));
H A DRating.php96 return md5(serialize($this));
H A DRestriction.php105 return md5(serialize($this));
H A DSimplePie.php558 public $cache_name_function = 'md5';
729 return md5(serialize($this->data));
1323 public function set_cache_name_function($function = 'md5')
H A DSource.php77 return md5(serialize($this->data));
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php145 $lock = $conf['lockdir'] . '/_subscr_' . md5($id) . '.lock';
175 $lock = $conf['lockdir'] . '/_subscr_' . md5($id) . '.lock';
/dokuwiki/inc/Ui/
H A DEditor.php45 $check = md5('');
47 $check = md5($TEXT);
49 $mod = (md5($TEXT) !== $check);
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php305 if (!empty($this->localInfo['email'])) return md5($this->localInfo['email']);
975 $file = md5($url);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
/dokuwiki/inc/Remote/
H A DApiCore.php948 $ftmp = $conf['tmpdir'] . '/' . md5($media . clientIP());

12