Home
last modified time | relevance | path

Searched refs:md5 (Results 1 – 25 of 356) sorted by relevance

12345678910>>...15

/plugin/freechat/phpfreechat/
Dcheckmd5.php4 if (md5(file_get_contents("./version.txt")) == "84b17206d983a7430710b2a1f8ae52b8")
10 if (md5(file_get_contents("./COPYING.txt")) == "6316f2b9af0cab4497de71b53e26a01f")
16 if (md5(file_get_contents("./misc/doc-archi1.svg")) == "3c2b6ce5c03537846b6ec11eb8aae96e")
22 if (md5(file_get_contents("./misc/login.svg")) == "c89ef14d3f40ec6b555f76722ab140c5")
28 if (md5(file_get_contents("./misc/tabs.svg")) == "02dc973dc9cf45246f3cef1963cc84e2")
34 if (md5(file_get_contents("./misc/clock-off.png")) == "16a6384b230479c258125da0eced5f4c")
40 if (md5(file_get_contents("./misc/color-on.png")) == "5a15495292999a129ef760c8ace8b8b7")
46 if (md5(file_get_contents("./misc/clock-on.png")) == "993a86ff21548368bd912da8c381ee9c")
52 if (md5(file_get_contents("./misc/png2gif.sh")) == "51c749d6e30da2150572587de04b0f9c")
58 if (md5(file_get_contents("./misc/logo_88x31.png")) == "847b945b0951a0f97524815c83f0be8a")
[all …]
/plugin/epub/
Dhelper.php24 $md5 = md5($id);
25 if(isset($this->cache[$md5])) return true;
30 $md5 = md5($id);
31 $this->delete_page($md5);
34 function delete_page($md5) { argument
35 unset($this->cache[$md5]);
36 if(isset($this->cache['current_books'][$md5])) {
37 unset($this->cache['current_books'][$md5]);
42 function delete_media($md5) { argument
43 $epub = $this->cache['current_books'][$md5]['epub'];
[all …]
Dadmin.php35 foreach($_REQUEST['book_id'] as $md5=>$id) {
37 $epub_deletions[] = $this->helper->delete_media($md5);
39 $this->helper->delete_page($md5);
67 foreach($cache as $md5=>$id) {
70 …ptln('<li style="list-style-type:none; color: #333;"><input name="book_id[' . $md5 .']" type="chec…
71 … style="color:#333">' . $current_books[$md5]['title'] . "\n" . ' <li style="color:#333">' . $cur…
72 …ptln(" <!--input type = 'hidden' name='$md5' value='" . $current_books[$md5]['epub'] ."'/ -->\n …
/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DDigestTest.php47 $digestHash = md5(
48 md5($username . ':' . self::REALM . ':' . $password) . ':' .
53 md5('GET' . ':' . '/')
63 …$this->assertTrue($this->auth->validateA1(md5($username . ':' . self::REALM . ':' . $password)), '…
77 $digestHash = md5(
78 md5($username . ':' . self::REALM . ':' . $password) . ':' .
83 md5('GET' . ':' . '/')
91 …$this->assertFalse($this->auth->validateA1(md5($username . ':' . self::REALM . ':' . ($password . …
101 $this->assertFalse($this->auth->validateA1(md5('user:realm:password')));
116 $digestHash = md5(
[all …]
/plugin/do/db/
Dupdate0007.sql3 CREATE TABLE task_assignees (page, md5, user); field
6 INSERT INTO task_assignees (page, md5, user) SELECT page,md5,user FROM tasks WHERE user != '';
9 CREATE TABLE tasks_tmp ( page, md5, date, text , creator , pos ); field
10 INSERT INTO tasks_tmp SElECT page, md5, date, text , creator , pos FROM tasks;
13 CREATE TABLE tasks ( page, md5, date, text , creator , pos); field
14 INSERT INTO tasks SElECT page, md5, date, text , creator , pos FROM tasks_tmp;
Dupdate0001.sql3 md5, field
9 CREATE UNIQUE INDEX idx_tasks_page_md5 ON tasks(page, md5);
13 md5, field
17 CREATE UNIQUE INDEX idx_task_status_page_md5 ON task_status(page, md5);
Dupdate0006.sql4 ….md5 as md5, task_status.status as status, task_status.closedby as closedby, tasks.msg as msg FROM…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
DGoogleCloudApigeeV1GetAsyncQueryResultUrlResponseURLInfo.php25 public $md5; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseURLInfo
38 public function setMd5($md5) argument
40 $this->md5 = $md5;
47 return $this->md5;
/plugin/mantis/lib/
Dclass.wsdlcache.php61 return $this->cache_dir.'/wsdlcache-' . md5($wsdl);
125 if (isset($this->fplock[md5($filename)])) {
129 $this->fplock[md5($filename)] = fopen($filename.".lock", "w");
131 return flock($this->fplock[md5($filename)], LOCK_SH);
133 return flock($this->fplock[md5($filename)], LOCK_EX);
173 $ret = flock($this->fplock[md5($filename)], LOCK_UN);
174 fclose($this->fplock[md5($filename)]);
175 unset($this->fplock[md5($filename)]);
/plugin/do/
Ddomd5changed.php18 $md5 = md5(utf8_strtolower(preg_replace('/\s/', '', $row['tasks.text'])) . variable
21 'md5 = \'' . $md5 . '\' WHERE md5 = \'' . $row['tasks.md5'] . '\'
23 …sqlite_exec($sqlite, 'UPDATE task_status SET md5 = \'' . $md5 . '\' WHERE md5 = \'' . $row['tasks.…
Dhelper.php245 * @param string $md5 tasks md5 hash
253 public function toggleTaskStatus($page, $md5, $commitmsg = '') argument
260 $md5 = trim($md5);
261 if (!$page || !$md5) {
275 $page, $md5
284 $task = $this->loadTasks(array('id' => $ID, 'md5' => $md5))[0];
299 $page, $md5, $stat, $name, $commitmsg
310 $page, $md5
/plugin/authucenter/lib/uc_client/model/
Duser.php123 } elseif($user['password'] != md5(md5($password).$user['salt'])) {
132 $password = md5(md5($password).$salt);
151 if(!$ignoreoldpw && $data['password'] != md5(md5($oldpw).$data['salt'])) {
155 $sqladd = $newpw ? "password='".md5(md5($newpw).$data['salt'])."'" : '';
228 return $questionid > 0 && $answer != '' ? substr(md5($answer.md5($questionid)), 16, 8) : '';
235 $username = substr(md5($username), 8, 15);
273 $username = substr(md5($username), 8, 15);
/plugin/svg/
Dsyntax.php177 . md5( getID() ) . $syntax_plugin_svg_pcount
192 . md5( getID() ) . $syntax_plugin_svg_pcount
205 . md5( getID() ) . $syntax_plugin_svg_pcount . '.svg" width="'
215 . md5( getID() ) . $syntax_plugin_svg_pcount . '.svg" width="'
224 . md5( getID() ) . $syntax_plugin_svg_pcount . '.svg" width="'
/plugin/schedule/
DscheduleRoot.class.php340 $md5 = $request['md5'];
341 if (!$md5)
343 $schedules = new schedules ($this, $request[$md5]['ns']);
347 $md5 = $request['md5'];
348 $date = $this->df2ds ($request[$md5]['date']);
349 $md5bis = $request[$md5]['toNs'];
352 $src = new schedules ($this, $request[$md5]['ns']);
388 foreach ($list as $md5 => $item) {
394 …' <td class="value"><input type="hidden" name="schd['.$md5.'][ns]" value="'.$nameSpace.'"/>'.$n…
398 ' <td class="value">'.$md5.'</td>'.NL.
[all …]
/plugin/news/scripts/
DfeedData.php42 foreach($ar as $md5) {
43 $file = $this->helper->getMetaFN($md5, '.gz');
45 $this->feedDataBaseNames[] = $md5;
130 $md5 = array_shift($this->feedDataBaseNames);
131 if(!$md5) return false;
132 $this->currentMD5BaseName = $md5;
133 return $this->helper->getMetaFN($md5, '.gz');
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DHttpPutTest.php50 'ETag' => ['"' . md5('hello') . '"']
79 'ETag' => ['"' . md5('bar') . '"']
113 'ETag' => ['"' . md5('hello') . '"']
130 ['If-Match' => '"' . md5('foo') . '"'],
147 'ETag' => ['"' . md5('hello') . '"'],
200 'ETag' => ['"' . md5('hello') . '"']
295 'ETag' => ['"' . md5('hello') . '"'],
/plugin/do/syntax/
Ddo.php114 $data['task']['md5'] = md5(
143 * @param string $md5 - the task identifier
147 protected function _oldTask($page, $md5) argument
161 if (empty($oldTasks[$md5])) {
164 return (array)$oldTasks[$md5];
173 protected function _needsSave($page, $md5) argument
175 if (isset($this->saved[$page][$md5])) {
178 $this->saved[$page][$md5] = 1;
/plugin/webdav/vendor/sabre/http/lib/Auth/
DDigest.php50 $this->opaque = md5($realm);
115 $this->A1 = md5($this->digestParts['username'] . ':' . $this->realm . ':' . $password);
146 $A2 .= ':' . md5($body);
153 $A2 = md5($A2);
155 …$validResponse = md5("{$this->A1}:{$this->digestParts['nonce']}:{$this->digestParts['nc']}:{$this-…
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DDigest.php50 $this->opaque = md5($realm);
115 $this->A1 = md5($this->digestParts['username'] . ':' . $this->realm . ':' . $password);
146 $A2 .= ':' . md5($body);
153 $A2 = md5($A2);
155 …$validResponse = md5("{$this->A1}:{$this->digestParts['nonce']}:{$this->digestParts['nc']}:{$this-…
/plugin/quickstats/db/
DdataBaseStructure.txt14 [date] => Array( [md5(<namespace:>page_name)] => timestamp)
100 /* assoc array intermixed md5(page_id) and ip keys */
101 [md5(page_id)] => Array
106 [md5(page_id)] => Array
117 [md5(page_id)] => Array
/plugin/cachestats/
H A DFileStatistics.php73 $md5 = md5_file($path);
74 if (isset($this->hashMap[$md5])) {
75 $this->hashMap[$md5]['count']++;
77 $this->hashMap[$md5] = ['ext' => $ext, 'count' => 1];
/plugin/swiftmail/Swift/Authenticator/
DCRAMMD5.php60 $password = pack('H32', md5($password));
68 $inner = pack('H32', md5($k_ipad.$challenge));
69 $digest = md5($k_opad.$inner);
/plugin/quickstats/
Dhelper.php67 $md5 = md5($id);
68 if(isset($this->cache[$md5])) return true;
89 $this->cache[md5($id)] = $id;
/plugin/authgoogle/google/cache/
DGoogle_FileCache.php89 $storageFile = $this->getCacheFile(md5($key));
109 $storageDir = $this->getCacheDir(md5($key));
110 $storageFile = $this->getCacheFile(md5($key));
132 $file = $this->getCacheFile(md5($key));
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Backend/
DSimplePDO.php176 'etag' => '"' . md5($row['calendardata']) . '"',
214 'etag' => '"' . md5($row['calendardata']) . '"',
249 return '"' . md5($calendarData) . '"';
276 return '"' . md5($calendarData) . '"';

12345678910>>...15