Home
last modified time | relevance | path

Searched refs:md5 (Results 26 – 50 of 327) sorted by relevance

12345678910>>...14

/plugin/ditaa/
H A Dsyntax.php101 $return['md5'] = md5($input.$this->_prepareData($return)); // we only pass a hash around
164 * @param string $md5 MD5 of the input data, used to identify the cache files
167 public function _imgfile($md5) { argument
168 $file_cfg = getCacheName($md5, '.ditaa.cfg'); // configs
169 $file_txt = getCacheName($md5, '.ditaa.txt'); // input
170 $file_png = getCacheName($md5, '.ditaa.png'); // ouput
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/
H A DAddressBookQueryTest.php50 … '{DAV:}getetag' => '"' . md5("BEGIN:VCARD\nVERSION:3.0\nUID:12345\nEND:VCARD") . '"',
100 … '{DAV:}getetag' => '"' . md5("BEGIN:VCARD\nVERSION:3.0\nUID:12345\nEND:VCARD") . '"',
184 … '{DAV:}getetag' => '"' . md5("BEGIN:VCARD\nVERSION:3.0\nUID:12345\nEND:VCARD"). '"',
229 … '{DAV:}getetag' => '"' . md5("BEGIN:VCARD\nVERSION:3.0\nUID:12345\nEND:VCARD"). '"',
274 … '{DAV:}getetag' => '"' . md5("BEGIN:VCARD\nVERSION:3.0\nUID:12345\nEND:VCARD"). '"',
H A DMultiGetTest.php47 … '{DAV:}getetag' => '"' . md5("BEGIN:VCARD\nVERSION:3.0\nUID:12345\nEND:VCARD") . '"',
92 … '{DAV:}getetag' => '"' . md5("BEGIN:VCARD\nVERSION:3.0\nUID:12345\nEND:VCARD") . '"',
/plugin/authucenter/lib/api/
H A Duc.php297 $key = md5($key ? $key : UC_KEY);
298 $keya = md5(substr($key, 0, 16));
299 $keyb = md5(substr($key, 16, 16));
300 …$keyc = $ckey_length ? ($operation == 'DECODE' ? substr($string, 0, $ckey_length): substr(md5(micr…
302 $cryptkey = $keya.md5($keya.$keyc);
305 …, $ckey_length)) : sprintf('%010d', $expiry ? $expiry + time() : 0).substr(md5($string.$keyb), 0, …
333 … substr($result, 0, 10) - time() > 0) && substr($result, 10, 16) == substr(md5(substr($result, 26)…
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CardDAV/Backend/
H A DAbstractPDOTest.php26 …ddata, uri, lastmodified, etag, size) VALUES (1, "card1", "card1", 0, "' . md5('card1') . '", 5)');
200 'etag' => '"' . md5('card1') . '"',
218 'etag' => '"' . md5('card1') . '"',
232 $this->assertEquals('"' . md5('data2') . '"', $result);
293 $this->assertEquals('"' . md5('newdata') . '"', $result);
/plugin/news/
H A Dadmin.php117 foreach($this->pagedata as $md5=>$pageinfo) {
118 $this->pagedata_row($md5,$pageinfo);
143 function pagedata_row($md5,$info) { argument
146 if(in_array($md5,$this->is_prev_deleted)) return;
152 …>' . "<input type = 'checkbox' id='$cb_id' name ='" . $type . "[$md5]' value = '$md5'>" .'</td>';
/plugin/issuelinks/helper/
H A Ddata.php117 $lockFN = $conf['lockdir'] . '/' . md5('_' . $id) . '.lock';
150 $lock = $conf['lockdir'] . '/' . md5('_' . $id) . '.lock';
162 $lockFN = $conf['lockdir'] . '/' . md5('_' . $id) . '.lock';
180 $lockFN = $conf['lockdir'] . '/' . md5('_' . $id) . '.lock';
190 $lockFN = $conf['lockdir'] . '/' . md5('_' . $id) . '.lock';
200 $lockFN = $conf['lockdir'] . '/' . md5('_' . $lockID) . '.lock';
/plugin/svg/
H A Dsyntax.php.save102 md5( getID() ) .
116 $filename = md5( getID() ) . $syntax_plugin_svg_pcount . '.svg';
177 . 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/davcal/vendor/sabre/dav/tests/Sabre/DAV/Auth/Backend/
H A DFileTest.php33 file_put_contents(SABRE_TEMPDIR . '/backend','user:realm:' . md5('user:realm:password'));
38 $this->assertEquals(md5('user:realm:password'), $file->getDigesthash('realm','user'));
/plugin/anonip/
H A Daction.php29 $uid = md5($ses);
32 $uid = md5(auth_browseruid());
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DHttpGetTest.php47 'ETag' => ['"' . md5('foo') . '"'],
72 'ETag' => ['"' . md5('foo') . '"'],
119 'ETag' => ['"' . md5('foo') . '"'],
H A DHttpDeleteTest.php106 'If-Match' => '"' . md5('foo') . '"',
125 'If-Match' => '"' . md5('bar') . '"',
/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DAWSTest.php70 $contentMD5 = base64_encode(md5($content, true));
93 $contentMD5 = base64_encode(md5($content, true));
121 $contentMD5 = base64_encode(md5($content, true));
150 $contentMD5 = base64_encode(md5($content, true));
180 $contentMD5 = base64_encode(md5($content, true));
/plugin/struct/meta/
H A DAggregationEditorTable.php31 $hash = md5(var_export($this->data, true));
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Mock/
H A DFile.php87 return '"' . md5($data) . '"';
115 return '"' . md5($this->contents) . '"';
/plugin/remoteinf/
H A Daction.php22 $enmd5=md5($pat_str);
45 $enmd5=md5($pat_str);
/plugin/encryptedpasswords/script/
H A DSubtleAES.js164 const D1 = md5.array(new Uint8Array([...password, ...salt]));
165 const D2 = md5.array(new Uint8Array([...D1, ...password, ...salt]));
166 const D3 = md5.array(new Uint8Array([...D2, ...password, ...salt]));
/plugin/pwaoffline/
H A Daction.php90 echo "const swHashVersion = '" . md5($swjs) . "';\n";
104 'swHashVersion' => md5(file_get_contents(__DIR__ . '/sw.js')),
/plugin/preregister/
H A Daction.php59 $md5= $INPUT->str('prereg');
60 if(!preg_match("/^(\w){32}$/",$md5,$matches)) return;;
61 echo $this->getLang('registering') . $md5;
62 $this->process_registration($md5);
105 $index = md5(microtime() . $salt);
/plugin/blogtng/action/
H A Dentry.php44 $pid = md5($ID);
70 $pid = md5($ID);
/plugin/blogtng/helper/
H A Dlinkback.php31 $ehelper->load_by_pid(md5($ID));
53 $comment->setPid(md5($id));
/plugin/projects/pchart/pchart/
H A Dpcache.php114 $mKey = $mKey.md5($tKey);
116 return(md5($mKey));
/plugin/schedule/
H A Dscript.js35 function scheduleAjax (form, action, md5) { argument
52 params += "&schd[action]="+action+"&schd[md5]="+md5;
/plugin/charter/lib/pchart/
H A DpCache.class.php114 $mKey = $mKey.md5($tKey);
116 return(md5($mKey));
/plugin/captcha/
H A Dhelper.php28 $this->field_in = md5($this->fixedIdent() . $this->field_in);
29 $this->field_sec = md5($this->fixedIdent() . $this->field_sec);
30 $this->field_hp = md5($this->fixedIdent() . $this->field_hp);
195 $ident = hexdec(substr(md5($ident), 5, 5)); // use part of the md5 to generate an int
198 return md5($comb);

12345678910>>...14