PageRenderTime 553ms queryTime 110ms sortTime 33ms getByIdsTime 128ms findMatchingLines 167ms

100+ results results for 'php md5 repo:mengqing/magento-mirror' (553 ms)

Not the results you expected?
ps_csv.inc http://phpshop.googlecode.com/svn/trunk/ | PHP | 328 lines
                    
1<?php
                    
2/*
                    
234          else { // Category does not exist - create it
                    
235            $hash_secret="PHPShopIsCool";
                    
236            $category_id = md5(uniqid($hash_secret));
                    
                
Cookie.php http://marocmall.googlecode.com/svn/trunk/ | PHP | 355 lines
                    
1<?php
                    
2/*
                    
9* It is also available through the world-wide-web at this URL:
                    
10* http://opensource.org/licenses/osl-3.0.php
                    
11* If you did not receive a copy of the license and are unable to
                    
23*  @version  Release: $Revision: 6851 $
                    
24*  @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25*  International Registered Trademark & Property of PrestaShop SA
                    
65		$this->_expire = isset($expire) ? (int)($expire) : (time() + 1728000);
                    
66		$this->_name = md5($name);
                    
67		$this->_path = trim(__PS_BASE_URI__.$path, '/\\').'/';
                    
282	/**
                    
283	  * Setcookie according to php version
                    
284	  */
                    
296		}
                    
297		if (PHP_VERSION_ID <= 50200) /* PHP version > 5.2.0 */
                    
298			return setcookie($this->_name, $content, $time, $this->_path, $this->_domain, 0);
                    
                
aws_s3.php git://github.com/gallery/gallery3-contrib.git | PHP | 330 lines
                    
1<?php defined("SYSPATH") or die("No direct script access.");
                    
2
                    
12        if (!self::$_s3) {
                    
13            require_once(MODPATH . "aws_s3/lib/s3.php");
                    
14            S3::setAuth(module::get_var("aws_s3", "access_key"), module::get_var("aws_s3", "secret_key"));
                    
121
                    
122        $item->s3_item_hash = md5($item->relative_path());
                    
123
                    
234    static function validate_access_details($access_key, $secret_key, $bucket_name) {
                    
235        require_once(MODPATH . "aws_s3/lib/s3.php");
                    
236        S3::setAuth($access_key, $secret_key);
                    
                
class.Cache.inc.php http://flaimo-php.googlecode.com/svn/trunk/ | PHP | 326 lines
                    
1<?php
                    
2/* vim: set expandtab tabstop=4 shiftwidth=4: */
                    
33*
                    
34* Tested with Apache 1.3.24 and PHP 4.2.3
                    
35*
                    
126		//return $filename;
                    
127		return (string) md5($filename);
                    
128	} // end function
                    
                
odf.php https://bitbucket.org/chamilo/chamilo/ | PHP | 369 lines
                    
1<?php
                    
2require 'zip/PclZipProxy.php';
                    
2require 'zip/PclZipProxy.php';
                    
3require 'zip/PhpZipProxy.php';
                    
4require 'Segment.php';
                    
8 * Templating class for odt file
                    
9 * You need PHP 5.2 at least
                    
10 * You need Zip Extension or PclZip library
                    
14 * SVN Revision - $Rev: 42 $
                    
15 * Id : $Id: odf.php 42 2009-06-17 09:11:57Z neveldo $
                    
16 *
                    
52        if (! class_exists($this->config['ZIP_PROXY'])) {
                    
53            throw new OdfException($this->config['ZIP_PROXY'] . ' class not found - check your php settings');
                    
54        }
                    
68
                    
69        $tmp = tempnam($this->config['PATH_TO_TMP'], md5(uniqid()));
                    
70        copy($filename, $tmp);
                    
                
template_header.php https://github.com/azeckoski/az-php-sandbox.git | PHP | 175 lines
                    
1<?php
                    
2// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/template_header.php,v 1.6.4.5 2005/12/09 14:32:37 wurley Exp $
                    
3
                    
9
                    
10include './header.php';
                    
11
                    
12$time = gettimeofday();
                    
13$random_junk = md5(strtotime('now').$time['usec']);
                    
14$url_base = sprintf('server_id=%s&amp;dn=%s',$ldapserver->server_id,$encoded_dn);
                    
19$copy_href = sprintf('copy_form.php?%s',$url_base);
                    
20$intattr_href = sprintf('template_engine.php?%s&amp;show_internal_attrs=true',$url_base);
                    
21$delete_href = sprintf('delete_form.php?%s',$url_base);
                    
138			if ($ldapserver->isAttrBinary($attr)) {
                    
139				$href = sprintf('download_binary_attr.php?server_id=%s&amp;dn=%s&amp;attr=%s',$server_id,$encoded_dn,$attr);
                    
140
                    
                
cas_user_request.class.php https://bitbucket.org/chamilo/chamilo-app-cas-user-dev/ | PHP | 221 lines
                    
1<?php
                    
2namespace application\cas_user;
                    
14
                    
15require_once dirname(__FILE__) . '/cas_account.class.php';
                    
16
                    
214        $cas_account->set_group('-');
                    
215        $cas_account->set_password(md5(Text :: generate_password()));
                    
216        $cas_account->set_status(CasAccount :: STATUS_ENABLED);
                    
                
contact-dist.php http://simplemodal.googlecode.com/svn/trunk/ | PHP | 203 lines
                    
1<?php
                    
2
                    
9 * Licensed under the MIT license:
                    
10 *   http://www.opensource.org/licenses/mit-license.php
                    
11 */
                    
94function smcf_token($s) {
                    
95	return md5("smcf-" . $s . date("WY"));
                    
96}
                    
130	}
                    
131	$headers .= "X-Mailer: PHP/SimpleModalContactForm";
                    
132
                    
                
util.php http://oregon-caspages.googlecode.com/svn/trunk/ | PHP | 517 lines
                    
1<?php
                    
2include 'editor_conf.php';
                    
25   //echo 'pass = ' . $password . '<br>';
                    
26   $password = md5($password);
                    
27   //echo $password;
                    
182      $link = connect_db();
                    
183      $new_pass = md5($new_pass);
                    
184      $user_list[$user_name] = $new_pass;
                    
195
                    
196$index_page = '<?php
                    
197include "../../../editor_conf.php";
                    
200                <div id="global_nav">
                    
201                        <?php include $basepath."global_nav.php";?>
                    
202                </div>
                    
203                <div id="main_content">
                    
204                        <?php echo file_get_contents("content.html");?>
                    
205                </div>
                    
                
People.Class.Session.php http://lussumo-vanilla.googlecode.com/svn/trunk/ | PHP | 214 lines
                    
1<?php
                    
2/**
                    
132		if (session_id()) {
                    
133			if (version_compare(phpversion(), '5.0.0', '>=')) {
                    
134				session_regenerate_id(true);
                    
137				session_destroy();
                    
138				session_id(md5(uniqid(rand(), true) . rand()));
                    
139				if ($Context->Configuration['SESSION_NAME']) {
                    
187	/**
                    
188	 * Start the PHP session
                    
189	 *
                    
201			$UseSsl = ($Context->Configuration['HTTP_METHOD'] === "https");
                    
202			if (version_compare(PHP_VERSION, '5.2.0', '>=')) {
                    
203				session_set_cookie_params(0, $Context->Configuration['COOKIE_PATH'],
                    
                
usuarios.php https://gestion001.svn.codeplex.com/svn | PHP | 110 lines
                    
52<head>
                    
53<?php include_once ("inc_head_adm.php"); ?>
                    
54<title><?php echo $titulo_seccion;?></title>
                    
62  <tr align="right">
                    
63    <td colspan="2" class="tr2" >&nbsp;<?php echo ($startRow_rs_usuarios_administrativos + 1) ?> a <?php echo min($startRow_rs_usuarios_administrativos + $maxRows_rs_usuarios_administrativos, $totalRows_rs_usuarios_administrativos) ?> de <?php echo $totalRows_rs_usuarios_administrativos ?> </td>
                    
64  </tr>
                    
71    <tr>
                    
72      <td class="tr1"><?php echo $row_rs_usuarios_administrativos['nombre1']; ?>&nbsp;<?php echo $row_rs_usuarios_administrativos['nombre2']; ?>&nbsp;<?php echo $row_rs_usuarios_administrativos['apellido1']; ?>&nbsp;<?php echo $row_rs_usuarios_administrativos['apellido2']; ?>&nbsp;(<?php echo $row_rs_usuarios_administrativos['Usuario']; ?>)</td>
                    
73      <td width="20%" class="tr1"><a href="usuarios_editar.php?idUsuario=<?php echo $row_rs_usuarios_administrativos['idUsuario']; ?>">Editar</a> -
                    
73      <td width="20%" class="tr1"><a href="usuarios_editar.php?idUsuario=<?php echo $row_rs_usuarios_administrativos['idUsuario']; ?>">Editar</a> -
                    
74          <a href="javascript:abrirlink('borrar','delete_main.php?tabla=Usuario&nombre_campo=idUsuario&idUsuario=<?php echo $row_rs_usuarios_administrativos['idUsuario']; ?>','<?php echo str_replace(" ",'',md5(microtime()))?>');">Borrar</a></td>
                    
75    </tr>
                    
106</table>
                    
107<?php include_once ("inc_bottom_adm.php");?>
                    
108</body>
                    
                
MessageParser.php https://gitlab.com/BGCX261/zibo-svn-to-git.git | PHP | 401 lines
                    
1<?php
                    
2
                    
397    private function generateSalt($salt = '') {
                    
398        return md5($salt . microtime());
                    
399    }
                    
                
getLocations.php http://webpagetest.googlecode.com/svn/trunk/ | PHP | 200 lines
                    
1<?php
                    
2include 'common.inc';
                    
176    
                    
177    $server_hash = md5($server);
                    
178    
                    
180    if (!array_key_exists($server_hash, $remote_cache)) {
                    
181        $remote = json_decode(json_encode((array)simplexml_load_file("$server/getLocations.php?hidden=1")), true);
                    
182        if (is_array($remote) && array_key_exists('data', $remote) && array_key_exists('location', $remote['data'])) {
                    
                
PackageXmlParserTest.php git://github.com/c9s/Onion.git | PHP | 133 lines
                    
84        <dir name="/">
                    
85            <file install-as="Onion/Application.php" name="src/Onion/Application.php" role="php" md5sum="cd08c9e1a21ce6d2f7ef0c0fc2ed849f"/>
                    
86            <file install-as="Onion/Command/BuildCommand.php" name="src/Onion/Command/BuildCommand.php" role="php" md5sum="c6c609136de4828b2f4e9d1624dbfd6c"/>
                    
91            <file install-as="Onion/GlobalConfig.php" name="src/Onion/GlobalConfig.php" role="php" md5sum="b2de5f4a4f385dea7e86598d6f3f11d9"/>
                    
92            <file install-as="Onion/Onion.php" name="src/Onion/Onion.php" role="php" md5sum="6a4e7d381b3cb0d8d67d3a7e35ac2537"/>
                    
93            <file install-as="Onion/PackageConfigReader.php" name="src/Onion/PackageConfigReader.php" role="php" md5sum="22fd847bbffeec43e82563351540441f"/>
                    
93            <file install-as="Onion/PackageConfigReader.php" name="src/Onion/PackageConfigReader.php" role="php" md5sum="22fd847bbffeec43e82563351540441f"/>
                    
94            <file install-as="Onion/Packager.php" name="src/Onion/Packager.php" role="php" md5sum="2fffec686af34345d9faef2efc04eb4a"/>
                    
95            <file install-as="Onion/PackageXml/PackageXmlWriter.php" name="src/Onion/PackageXml/PackageXmlWriter.php" role="php" md5sum="0913c185e0731fc1f8b2a126d24a39fb"/>
                    
95            <file install-as="Onion/PackageXml/PackageXmlWriter.php" name="src/Onion/PackageXml/PackageXmlWriter.php" role="php" md5sum="0913c185e0731fc1f8b2a126d24a39fb"/>
                    
96            <file install-as="Onion/SpecUtils.php" name="src/Onion/SpecUtils.php" role="php" md5sum="3acf35cf3fd15ae23eef6dabb0d210bd"/>
                    
97            <file install-as="Onion/TestCommand/ParentCommand/SubCommand.php" name="src/Onion/TestCommand/ParentCommand/SubCommand.php" role="php" md5sum="a69e9e6477f7d4d82f30b5769eae073e"/>
                    
97            <file install-as="Onion/TestCommand/ParentCommand/SubCommand.php" name="src/Onion/TestCommand/ParentCommand/SubCommand.php" role="php" md5sum="a69e9e6477f7d4d82f30b5769eae073e"/>
                    
98            <file install-as="Onion/TestCommand/ParentCommand.php" name="src/Onion/TestCommand/ParentCommand.php" role="php" md5sum="9bec2094c780a962306c2febc669f8b8"/>
                    
99            <file install-as="bootstrap.php" name="tests/bootstrap.php" role="test" md5sum="a4dcfe19452fe6d10e9349fdb424b80d"/>
                    
                
Mail.php git://github.com/jakubkulhan/shopaholic.git | PHP | 458 lines
                    
1<?php
                    
2
                    
10 *
                    
11 * For more information please see http://nettephp.com
                    
12 *
                    
13 * @copyright  Copyright (c) 2004, 2009 David Grudl
                    
14 * @license    http://nettephp.com/license  Nette license
                    
15 * @link       http://nettephp.com
                    
17 * @package    Nette\Mail
                    
18 * @version    $Id: Mail.php 368 2009-06-25 14:26:59Z david@grudl.com $
                    
19 */
                    
22
                    
23require_once dirname(__FILE__) . '/../Mail/MailMimePart.php';
                    
24
                    
290		$part->setHeader('Content-Disposition', 'inline; filename="' . basename($file) . '"');
                    
291		$part->setHeader('Content-ID', '<' . md5(uniqid('', TRUE)) . '>');
                    
292		return $this->inlines[$file] = $part;
                    
                
geofence_mgnt_ctrl.php https://bitbucket.org/tonygeorge2017/icat2.git | PHP | 199 lines
                    
1<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
                    
2class Geofence_mgnt_ctrl extends CI_Controller {
                    
135		
                    
136		$delete=($opt==md5('delete'))?true:false;
                    
137		$result=$this->geofence_mgnt_model->get_VhRouteList( null, null, $vhRouteOrVehicleID, $delete);
                    
150			}
                    
151			else if($opt==md5('delete'))
                    
152			{
                    
181		$config['uri_segment']=URI_SEGMENT_FOR_FOUR;
                    
182		$config['base_url'] = base_url("index.php/geofence_mgnt_ctrl/table_pagination");
                    
183		$config['total_rows'] = count($this->geofence_mgnt_model->get_VhRouteList());
                    
                
Form.php git://github.com/pmjones/php-framework-benchmarks.git | PHP | 457 lines
                    
1<?php
                    
2
                    
28 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
                    
29 * @version    SVN: $Id: Form.php 245 2010-01-31 22:22:39Z flo $
                    
30 */
                    
62        } else {
                    
63            $this->setCsrfSecret(md5(__FILE__.php_uname()));
                    
64        }
                    
242    {
                    
243        return md5($this->csrfSecret.session_id().get_class($this));
                    
244    }
                    
421            switch (strtolower(substr($max, -1))) {
                    
422                // The 'G' modifier is available since PHP 5.1.0
                    
423                case 'g':
                    
                
genmenu.php http://opixido-ocms.googlecode.com/svn/trunk/ | PHP | 325 lines
                    
1<?php
                    
2
                    
82         */
                    
83        $this->cache2 = new GenCache('arbo' . md5($this->site->g_url->topRubId . '-' . $this->site->getCurId() . '_' . $this->nom_menu), GetParam('date_update_arbo'));
                    
84        if (!$this->cache2->cacheExists()) {
                    
                
phmagick.php http://bedita.googlecode.com/svn/trunk/ | PHP | 341 lines
                    
1<?php
                    
2/*
                    
51        if(is_null($this->escapeChars) ){
                    
52            $this->escapeChars = !( strtolower ( substr( php_uname('s'), 0, 3))  == "win" ) ;
                    
53        }
                    
86            $ext = end (explode('.', $source)) ;
                    
87            $this->destinationFile = dirname($source) . '/' . md5(microtime()) . '.' . $ext;
                    
88        }
                    
163        $base = dirname(__FILE__) . '/plugins';
                    
164        $plugins = glob($base . '/*.php');
                    
165        foreach($plugins as $plugin){
                    
166            include_once $plugin ;
                    
167            $name = basename($plugin, '.php');
                    
168            $className = 'phMagick_'.$name ;
                    
                
PasswordEncryptorTest.php git://github.com/silverstripe/sapphire.git | PHP | 168 lines
                    
8use SilverStripe\Dev\SapphireTest;
                    
9use SilverStripe\Security\PasswordEncryptor_LegacyPHPHash;
                    
10use SilverStripe\Security\PasswordEncryptor_PHPHash;
                    
52
                    
53    public function testEncryptorPHPHashWithArguments()
                    
54    {
                    
57            'encryptors',
                    
58            ['test_md5' => [PasswordEncryptor_PHPHash::class=>'md5']]
                    
59        );
                    
60        /** @var PasswordEncryptor_PHPHash $e */
                    
61        $e = PasswordEncryptor::create_for_algorithm('test_md5');
                    
62        $this->assertEquals('md5', $e->getAlgorithm());
                    
64
                    
65    public function testEncryptorPHPHash()
                    
66    {
                    
                
logs.php http://viet-group.googlecode.com/svn/trunk/ | PHP | 336 lines
                    
1<?php
                    
2
                    
24$sql = "SELECT SQL_CALC_FOUND_ROWS * FROM `" . $db_config['prefix'] . "_logs` WHERE `id`!=0";
                    
25$base_url = NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&" . NV_OP_VARIABLE . "=" . $op;
                    
26
                    
39	$checksess = filter_text_input( 'checksess', 'get', '', 1 );
                    
40	if ( $checksess != md5 ( "siteinfo_" . session_id() . "_" . $admin_info['userid'] ) )
                    
41	{
                    
42		nv_insert_logs( NV_LANG_DATA, $module_name, sprintf ( $lang_module['filter_check_log'], $op ), $admin_info['username'] . " - " . $admin_info['userid'], 0 );
                    
43		Header( "Location: " . NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&" . NV_OP_VARIABLE . "=" . $op );
                    
44		exit();
                    
276$xtpl->assign( 'OP', $op );
                    
277$xtpl->assign( 'checksess', md5 ( "siteinfo_" . session_id() . "_" . $admin_info['userid'] ) );
                    
278$xtpl->assign( 'URL_DEL', $base_url . "&" . NV_OP_VARIABLE . "=logs_del" );
                    
278$xtpl->assign( 'URL_DEL', $base_url . "&" . NV_OP_VARIABLE . "=logs_del" );
                    
279$xtpl->assign( 'URL_CANCEL', NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name . "&" . NV_OP_VARIABLE . "=" . $op );
                    
280$xtpl->assign( 'DISABLE', $disabled );
                    
                
Alignment.php https://gitlab.com/BGCX262/zy-sms-svn-to-git.git | PHP | 409 lines
                    
22 * @package	PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license	http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
33 * @package	PHPExcel_Style
                    
34 * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
35 */
                    
36class PHPExcel_Style_Alignment extends PHPExcel_Style_Supervisor implements PHPExcel_IComparable
                    
37{
                    
143	 *		array(
                    
144	 *			'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,
                    
145	 *			'vertical'   => PHPExcel_Style_Alignment::VERTICAL_CENTER,
                    
338	 * @param boolean $pValue
                    
339	 * @return PHPExcel_Style_Alignment
                    
340	 */
                    
                
l10n_client.php git://github.com/gallery/gallery3.git | PHP | 323 lines
                    
1<?php defined("SYSPATH") or die("No direct script access.");
                    
2/**
                    
31  static function client_token() {
                    
32    return md5("l10n_client_client_token" . access::private_key());
                    
33  }
                    
49    $api_key = $api_key == null ? l10n_client::api_key() : $api_key;
                    
50    return md5($api_key . $payload . l10n_client::client_token());
                    
51  }
                    
194    //   uid = <l10n server user id>
                    
195    //   signature = md5(user_api_key($uid, $client_token) . $data . $client_token))
                    
196    //   data = // JSON payload
                    
                
cloud.mod.php https://gitlab.com/llqbaimao/o2o.git | PHP | 404 lines
                    
1<?php
                    
2/**
                    
10	return array(
                    
11		'/framework/function/communication.func.php',
                    
12		'/framework/model/cloud.mod.php',
                    
12		'/framework/model/cloud.mod.php',
                    
13		'/web/source/cloud/upgrade.ctrl.php',
                    
14		'/web/source/cloud/process.ctrl.php',
                    
14		'/web/source/cloud/process.ctrl.php',
                    
15		'/web/source/cloud/dock.ctrl.php',
                    
16		'/web/themes/default/cloud/upgrade.html',
                    
32	$pars['module'] = $name;
                    
33	$dat = ihttp_post('http://v2.addons.we7.cc/gateway.php', $pars);
                    
34	if (is_error($dat)) {
                    
52	$pars['key'] = $_W['setting']['site']['key'];
                    
53	$pars['password'] = md5($_W['setting']['site']['key'] . $_W['setting']['site']['token']);
                    
54	$clients = cloud_client_define();
                    
                
user_add.php http://viet-group.googlecode.com/svn/trunk/ | PHP | 275 lines
                    
1<?php
                    
2
                    
63    }
                    
64    elseif ( $db->sql_numrows( $db->sql_query( "SELECT `userid` FROM `" . NV_USERS_GLOBALTABLE . "` WHERE `md5username`=" . $db->dbescape( md5( $_user['username'] ) ) ) ) != 0 )
                    
65    {
                    
118        $sql = "INSERT INTO `" . NV_USERS_GLOBALTABLE . "` (
                    
119        `userid`, `username`, `md5username`, `password`, `email`, `full_name`, `gender`, `birthday`, `sig`, `regdate`, 
                    
120        `website`, `location`, `yim`, `telephone`, `fax`, `mobile`, `question`, `answer`, `passlostkey`, `view_mail`, 
                    
124		" . $db->dbescape( $_user['username'] ) . ",
                    
125		" . $db->dbescape( md5( $_user['username'] ) ) . ",
                    
126		" . $db->dbescape( $password ) . ",
                    
153            {
                    
154                @require_once ( NV_ROOTDIR . "/includes/class/upload.class.php" );
                    
155                
                    
195            
                    
196            Header( "Location: " . NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name );
                    
197            exit();
                    
                
instagram.php https://gitlab.com/mina/kirbycms-extensions.git | PHP | 152 lines
                    
1<?php
                    
2
                    
51            
                    
52            $images_cache_id    = 'instagram/images.' . md5($_token) . '.' . $_count . '.php';
                    
53            $images_cache_data  = false;
                    
                
storageverification.php https://github.com/sfsergey/knowledgetree.git | PHP | 190 lines
                    
1<?php
                    
2/**
                    
37
                    
38require_once(dirname(__FILE__) . '/../config/dmsDefaults.php');
                    
39require_once(KT_LIB_DIR . '/storage/storagemanager.inc.php');
                    
134        $sql = "SELECT
                    
135                    dmv.id as metadata_version_id, dcv.document_id, dcv.md5hash, dcv.size
                    
136               FROM
                    
170
                    
171            $expectedHash = $row['md5hash'];
                    
172            $currentHash = md5_file($tmpPath);
                    
                
Array.php https://github.com/OpenMage/magento-mirror.git | PHP | 355 lines
                    
1<?php
                    
2/**
                    
25 */
                    
26#require_once 'Zend/Queue/Adapter/AdapterAbstract.php';
                    
27
                    
28/**
                    
29 * Class for using a standard PHP array as a queue
                    
30 *
                    
148             */
                    
149            #require_once 'Zend/Queue/Exception.php';
                    
150            throw new Zend_Queue_Exception('Queue does not exist');
                    
174        if (!$this->isExists($queue->getName())) {
                    
175            #require_once 'Zend/Queue/Exception.php';
                    
176            throw new Zend_Queue_Exception('Queue does not exist:' . $queue->getName());
                    
182            'body'       => $message,
                    
183            'md5'        => md5($message),
                    
184            'handle'     => null,
                    
                
DKIMSignerTest.php git://github.com/swiftmailer/swiftmailer.git | PHP | 220 lines
                    
1<?php
                    
2
                    
67        $sig = reset($dkim);
                    
68        $this->assertEquals($sig->getValue(), 'v=1; a=rsa-sha256; bh=f+W+hu8dIhf2VAni89o8lF6WKTXi7nViA4RrMdpD5/U=; d=dummy.nxdomain.be; h=; i=@dummy.nxdomain.be; s=dummySelector; t=1299879181; b=jqPmieHzF5vR9F4mXCAkowuphpO4iJ8IAVuioh1BFZ3VITXZj5jlOFxULJMBiiApm2keJirnh u4mzogj444QkpT3lJg8/TBGAYQPdcvkG3KC0jdyN6QpSgpITBJG2BwWa+keXsv2bkQgLRAzNx qRhP45vpHCKun0Tg9LrwW/KCg=');
                    
69    }
                    
92        $sig = reset($dkim);
                    
93        $this->assertEquals($sig->getValue(), 'v=1; a=rsa-sha256; bh=f+W+hu8dIhf2VAni89o8lF6WKTXi7nViA4RrMdpD5/U=; d=dummy.nxdomain.be; h=; i=@dummy.nxdomain.be; s=dummySelector; c=relaxed/relaxed; t=1299879181; b=gzOI+PX6HpZKQFzwwmxzcVJsyirdLXOS+4pgfCpVHQIdqYusKLrhlLeFBTNoz75HrhNvGH6T0 Rt3w5aTqkrWfUuAEYt0Ns14GowLM7JojaFN+pZ4eYnRB3CBBgW6fee4NEMD5WPca3uS09tr1E 10RYh9ILlRtl+84sovhx5id3Y=');
                    
94    }
                    
                
Fuzzer.pm https://code.google.com/p/perl-http-fuzzer/ | Perl | 376 lines
                    
88=item BASE64
                    
89=item MD5
                    
90=item SHA1
                    
94
                    
95 my $url = 'login.php?username=URLENCODE{{username}}&password=URLENCODE{SHA1{{username}:{password}}}';
                    
96 
                    
                
UserTest.php git://github.com/croogo/croogo.git | PHP | 348 lines
                    
1<?php
                    
2namespace Croogo\Users\Test\TestCase\Model;
                    
71            'website' => 'http://croogo.org',
                    
72            'activation_key' => md5(uniqid()),
                    
73        ]);
                    
124            'website' => 'http://croogo.org',
                    
125            'activation_key' => md5(uniqid()),
                    
126            'status' => true,
                    
147            'website' => 'http://croogo.org',
                    
148            'activation_key' => md5(uniqid()),
                    
149            'status' => true,
                    
159            'website' => 'http://croogo.org',
                    
160            'activation_key' => md5(uniqid()),
                    
161            'status' => true,
                    
                
sha1.c https://github.com/ifeghali/php-src.git | C | 434 lines
                    
23
                    
24/* This code is heavily based on the PHP md5 implementation */ 
                    
25
                    
186 */
                    
187PHPAPI void PHP_SHA1Init(PHP_SHA1_CTX * context)
                    
188{
                    
204 */
                    
205PHPAPI void PHP_SHA1Update(PHP_SHA1_CTX * context, const unsigned char *input,
                    
206			   unsigned int inputLen)
                    
245 */
                    
246PHPAPI void PHP_SHA1Final(unsigned char digest[20], PHP_SHA1_CTX * context)
                    
247{
                    
421	for (i = 0, j = 0; j < len; i++, j += 4)
                    
422		output[i] = ((php_uint32) input[j + 3]) | (((php_uint32) input[j + 2]) << 8) |
                    
423			(((php_uint32) input[j + 1]) << 16) | (((php_uint32) input[j]) << 24);
                    
                
admin.php https://gitlab.com/jaydee888/Jirafeau.git | PHP | 286 lines
                    
1<?php
                    
2/*
                    
21
                    
22require (JIRAFEAU_ROOT . 'lib/config.original.php');
                    
23require (JIRAFEAU_ROOT . 'lib/settings.php');
                    
23require (JIRAFEAU_ROOT . 'lib/settings.php');
                    
24require (JIRAFEAU_ROOT . 'lib/functions.php');
                    
25require (JIRAFEAU_ROOT . 'lib/lang.php');
                    
27/* Check if installation is OK. */
                    
28if (file_exists (JIRAFEAU_ROOT . 'install.php')
                    
29    && !file_exists (JIRAFEAU_ROOT . 'lib/config.local.php'))
                    
30{
                    
31    header('Location: install.php'); 
                    
32    exit;
                    
129        require (JIRAFEAU_ROOT . 'lib/template/header.php');
                    
130        ?><h2><?php echo t('Admin interface'); ?></h2><?php
                    
131
                    
                
Fill.php https://PHPExcel.svn.codeplex.com/svn | PHP | 332 lines
                    
22 * @package    PHPExcel_Style
                    
23 * @copyright  Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
119		$this->_startColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_WHITE);
                    
120		$this->_endColor			= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
                    
121    }
                    
141     *
                    
142     * Returns the PHPExcel_Style_Fill that is actual bound to PHPExcel_Style
                    
143	 *
                    
158     *
                    
159     * If no PHPExcel_Style_Fill has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
160	 *
                    
                
ApiTestCase.php https://gitlab.com/mcepl/dumpathome.git | PHP | 239 lines
                    
1<?php
                    
2
                    
132			// add token to request parameters
                    
133			$params['token'] = md5( $session['wsToken'] ) . User::EDIT_TOKEN_SUFFIX;
                    
134			return $this->doApiRequest( $params, $session, false, $user );
                    
170	public function testApiTestGroup() {
                    
171		$groups = PHPUnit_Util_Test::getGroups( get_class( $this ) );
                    
172		$constraint = PHPUnit_Framework_Assert::logicalOr(
                    
                
_md5_8php_source.html http://openbiz-cubi.googlecode.com/svn/trunk/ | HTML | 132 lines
                    
34<a name="l00026"></a>00026 
                    
35<a name="l00035"></a><a class="code" href="class_zend___validate___file___md5.html">00035</a> <span class="keyword">class </span><a class="code" href="class_zend___validate___file___md5.html">Zend_Validate_File_Md5</a> <span class="keyword">extends</span> <a class="code" href="class_zend___validate___file___hash.html">Zend_Validate_File_Hash</a>
                    
36<a name="l00036"></a>00036 {
                    
36<a name="l00036"></a>00036 {
                    
37<a name="l00040"></a><a class="code" href="class_zend___validate___file___md5.html#a0e9755eea7ef4ea25cd96ff8ced4d734">00040</a>     <span class="keyword">const</span> <a class="code" href="class_zend___validate___file___md5.html#a0e9755eea7ef4ea25cd96ff8ced4d734">DOES_NOT_MATCH</a> = <span class="stringliteral">&#39;fileMd5DoesNotMatch&#39;</span>;
                    
38<a name="l00041"></a>00041     <span class="keyword">const</span> NOT_DETECTED   = <span class="stringliteral">&#39;fileMd5NotDetected&#39;</span>;
                    
62<a name="l00081"></a>00081 
                    
63<a name="l00087"></a><a class="code" href="class_zend___validate___file___md5.html#a8ffe7cebad881b26dc1bb014dea34d4b">00087</a>     <span class="keyword">public</span> function <a class="code" href="class_zend___validate___file___md5.html#a8ffe7cebad881b26dc1bb014dea34d4b">getMd5</a>()
                    
64<a name="l00088"></a>00088     {
                    
78<a name="l00109"></a>00109 
                    
79<a name="l00116"></a><a class="code" href="class_zend___validate___file___md5.html#a838c699d63acedd05f69035892db10fd">00116</a>     <span class="keyword">public</span> function <a class="code" href="class_zend___validate___file___md5.html#a838c699d63acedd05f69035892db10fd">setMd5</a>($options)
                    
80<a name="l00117"></a>00117     {
                    
95<a name="l00139"></a>00139 
                    
96<a name="l00146"></a><a class="code" href="class_zend___validate___file___md5.html#addb853ff803761b2c0bb04759046d2a4">00146</a>     <span class="keyword">public</span> function <a class="code" href="class_zend___validate___file___md5.html#addb853ff803761b2c0bb04759046d2a4">addMd5</a>($options)
                    
97<a name="l00147"></a>00147     {
                    
                
PDO.php git://github.com/evert/SabreDAV.git | PHP | 331 lines
                    
1<?php
                    
2
                    
270
                    
271        return '"' . md5($cardData) . '"';
                    
272
                    
307
                    
308        return '"' . md5($cardData) . '"';
                    
309
                    
                
NormalModule.js https://bitbucket.org/nanakokono/webstocker.git | JavaScript | 322 lines
                    
1/*
                    
2	MIT License http://www.opensource.org/licenses/mit-license.php
                    
3	Author Tobias Koppers @sokra
                    
119NormalModule.prototype.source = function(dependencyTemplates, outputOptions, requestShortener) {
                    
120	var hash = require("crypto").createHash("md5");
                    
121	this.updateHash(hash);
                    
221	if(!this._source) return "";
                    
222	var hash = require("crypto").createHash("md5");
                    
223	hash.update(this._source.source());
                    
                
Font.php https://PHPExcel.svn.codeplex.com/svn | PHP | 505 lines
                    
32/** PHPExcel_IComparable */
                    
33require_once 'PHPExcel/IComparable.php';
                    
34
                    
42 */
                    
43class PHPExcel_Style_Font implements PHPExcel_IComparable
                    
44{
                    
136		$this->_striketrough		= false;
                    
137		$this->_color				= new PHPExcel_Style_Color(PHPExcel_Style_Color::COLOR_BLACK);
                    
138    }
                    
158     *
                    
159     * Returns the PHPExcel_Style_Font that is actual bound to PHPExcel_Style
                    
160	 *
                    
175     *
                    
176     * If no PHPExcel_Style_Font has been bound to PHPExcel_Style then bind this one. Return the actual bound one.
                    
177	 *
                    
                
Array.php https://gitlab.com/cakephp-2-x-plugins/zendframework.git | PHP | 355 lines
                    
1<?php
                    
2/**
                    
25 */
                    
26require_once 'Zend/Queue/Adapter/AdapterAbstract.php';
                    
27
                    
28/**
                    
29 * Class for using a standard PHP array as a queue
                    
30 *
                    
148             */
                    
149            require_once 'Zend/Queue/Exception.php';
                    
150            throw new Zend_Queue_Exception('Queue does not exist');
                    
174        if (!$this->isExists($queue->getName())) {
                    
175            require_once 'Zend/Queue/Exception.php';
                    
176            throw new Zend_Queue_Exception('Queue does not exist:' . $queue->getName());
                    
182            'body'       => $message,
                    
183            'md5'        => md5($message),
                    
184            'handle'     => null,
                    
                
default.py http://seppius-xbmc-repo.googlecode.com/svn/trunk/ | Python | 407 lines
                    
21try:
                    
22    from hashlib import md5
                    
23except:
                    
23except:
                    
24    from md5 import md5
                    
25
                    
92    err=0
                    
93    m = hashlib.md5()
                    
94    m.update(str(n))
                    
125def get_inf_db(n):
                    
126    m = hashlib.md5()
                    
127    m.update(str(n))
                    
336        sts=kbd.getText();
                    
337        params['href'] = 'http://serialonline.net/index.php?do=search'
                    
338	post={}
                    
                
cnt1.inc.php http://phpwcms.googlecode.com/svn/trunk/ | PHP | 205 lines
                    
82			      <td><input name="cimage_name" type="text" id="cimage_name" class="f11b" style="width: 300px; color: #727889;" value="<?php echo  isset($content["image_name"]) ? html_specialchars($content["image_name"]) : '' ?>" size="40" maxlength="250" onfocus="this.blur()" /></td>
                    
83			      <td><img src="img/leer.gif" alt="" width="3" height="1" /><a href="javascript:;" title="<?php echo  $BL['be_cnt_openimagebrowser'] ?>" onclick="openFileBrowser('filebrowser.php?opt=0&amp;target=nolist')"><img src="img/button/open_image_button.gif" alt="" width="20" height="15" border="0" /></a></td>
                    
84			      <td><img src="img/leer.gif" alt="" width="3" height="1" /><a href="javascript:;" title="<?php echo  $BL['be_cnt_delimage'] ?>" onclick="document.articlecontent.cimage_name.value='';document.articlecontent.cimage_id.value='0';this.blur();return false;"><img src="img/button/del_image_button.gif" alt="" width="15" height="15" border="0" /></a>
                    
102			    <option value="4" <?php is_selected(4, $content["image_pos"]) ?>><?php echo  $BL['be_cnt_pos4'] ?></option>
                    
103			    <option value="5" <?php is_selected(5, $content["image_pos"]) ?>><?php echo  $BL['be_cnt_pos5'] ?></option>
                    
104			    <option value="6" <?php is_selected(6, $content["image_pos"]) ?>><?php echo  $BL['be_cnt_pos6'] ?></option>
                    
104			    <option value="6" <?php is_selected(6, $content["image_pos"]) ?>><?php echo  $BL['be_cnt_pos6'] ?></option>
                    
105			    <option value="7" <?php is_selected(7, $content["image_pos"]) ?>><?php echo  $BL['be_cnt_pos7'] ?></option>
                    
106				<option value="8" <?php is_selected(8, $content["image_pos"]) ?>><?php echo  $BL['be_cnt_pos8'] ?></option>
                    
106				<option value="8" <?php is_selected(8, $content["image_pos"]) ?>><?php echo  $BL['be_cnt_pos8'] ?></option>
                    
107			    <option value="9" <?php is_selected(9, $content["image_pos"]) ?>><?php echo  $BL['be_cnt_pos9'] ?></option>
                    
108		      </select></td>
                    
190								"image_name"	=>	$content["image_hash"] . '.' . $content["image_ext"],
                    
191								"thumb_name"	=>	md5($content["image_hash"].$phpwcms["img_list_width"].$phpwcms["img_list_height"].$phpwcms["sharpen_level"])
                    
192        					  )
                    
                
sys_repair.php http://pj-photohost.googlecode.com/svn/trunk/ | PHP | 286 lines
                    
1<?php
                    
2require_once(dirname(__FILE__).'/config.php');
                    
3CheckPurview('sys_ArcBatch');
                    
4require_once(dirname(__FILE__).'/../include/oxwindow.class.php');
                    
5ShowMsg("?????????????????????????????<br /><a href='index_body.php'>&lt;&lt;?????&gt;&gt;</a>", "javascript:;");
                    
9	$win = new OxWindow();
                    
10	$win->Init("sys_repair.php","js/blank.js","POST' enctype='multipart/form-data' ");
                    
11	$win->mainTitle = "??????";
                    
11	$win->mainTitle = "??????";
                    
12	$wecome_info = "<a href='index_body.php'>????</a> &gt;&gt; ????????";
                    
13	$win->AddTitle('?????????????????????');
                    
25    <br />
                    
26    <a href='sys_repair.php?dopost=1' style='font-size:14px;color:red'><b>???????????&gt;&gt;</b></a>
                    
27    <br /><br /><br />
                    
72	$upsqls[] = "INSERT INTO `#@__sysconfig` (`aid` ,`varname` ,`info` ,`value` ,`type` ,`groupid`) VALUES (713, 'cfg_need_typeid2', '???????', 'N', 'bool', 6); ";
                    
73  $upsqls[] = "INSERT INTO `#@__sysconfig` (`aid` ,`varname` ,`info` ,`value` ,`type` ,`groupid`) VALUES (715, 'cfg_mb_pwdtype', '???????????32 — 32?md5????<br />l16 — ?16?? r16 — ?16?? m16 — ??16?', '32', 'string', 4); ";
                    
74  $upsqls[] = "Update `#@__sysconfig` set `groupid` = '8' where `varname` like 'cfg_group_%'; ";
                    
                
UsersController.php git://github.com/CauanCabral/Comitiva.git | PHP | 471 lines
                    
1<?php
                    
2class UsersController extends AppController
                    
441
                    
442		$token = sha1(md5($this->request->data['User']['password']) . time());
                    
443
                    
                
user_waiting.php http://nuke-viet.googlecode.com/svn/trunk/ | PHP | 229 lines
                    
1<?php
                    
2
                    
34	{
                    
35		Header( "Location: " . NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name );
                    
36		die();
                    
43	{
                    
44		Header( "Location: " . NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name );
                    
45		die();
                    
49	$sql = "INSERT INTO `" . NV_USERS_GLOBALTABLE . "` (
                    
50    `userid`, `username`, `md5username`, `password`, `email`, `full_name`, `gender`, `photo`, `birthday`, 
                    
51    `regdate`, `website`, `location`, `yim`, `telephone`, `fax`, `mobile`, `question`, 
                    
56    " . $db->dbescape( $row['username'] ) . ", 
                    
57    " . $db->dbescape( md5( $row['username'] ) ) . ", 
                    
58    " . $db->dbescape( $row['password'] ) . ", 
                    
74		$subject = $lang_module['adduser_register'];
                    
75		$message = sprintf( $lang_module['adduser_register_info'], $full_name, $global_config['site_name'], NV_MY_DOMAIN . NV_BASE_SITEURL . "index.php?" . NV_LANG_VARIABLE . "=" . NV_LANG_DATA . "&" . NV_NAME_VARIABLE . "=" . $module_name, $row['username'] );
                    
76		$message .= "<br /><br />------------------------------------------------<br /><br />";
                    
                
install_check.php http://nuke-viet.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2
                    
18
                    
19$filename = NV_ROOTDIR . '/' . NV_TEMP_DIR . '/' . NV_TEMPNAM_PREFIX . 'auto_' . md5( $global_config['sitekey'] . session_id() ) . '.zip';
                    
20if ( file_exists( $filename ) )
                    
21{
                    
22    require_once NV_ROOTDIR . '/includes/class/pclzip.class.php';
                    
23    $zip = new PclZip( $filename );
                    
26    $overwrite = $nv_Request->get_string( 'overwrite', 'get', '' );
                    
27    if ( $overwrite != md5( $filename . $global_config['sitekey'] . session_id() ) )
                    
28    {
                    
47    {
                    
48        $temp_extract_dir = NV_TEMP_DIR . '/' . md5( $filename . $global_config['sitekey'] . session_id() );
                    
49		
                    
199		$xtpl->assign( 'MODULE_NAME', $module_name );
                    
200		$xtpl->assign( 'CHECKSESS', md5( $filename . $global_config['sitekey'] . session_id() ) );
                    
201		
                    
                
bookmark.php https://bitbucket.org/samuel-oldra/pousada-katedral-wordpress.git | PHP | 414 lines
                    
1<?php
                    
2/**
                    
88 *
                    
89 * Attempts to retrieve from the cache first based on MD5 hash of arguments. If
                    
90 * that fails, then the query will be built from the arguments and executed. The
                    
129
                    
130	$key = md5( serialize( $r ) );
                    
131	if ( $cache = wp_cache_get( 'get_bookmarks', 'bookmark' ) ) {
                    
199			wp_cache_set( 'get_bookmarks', $cache, 'bookmark' );
                    
200			/** This filter is documented in wp-includes/bookmark.php */
                    
201			return apply_filters( 'get_bookmarks', array(), $r );
                    
290
                    
291	/** This filter is documented in wp-includes/bookmark.php */
                    
292	return apply_filters( 'get_bookmarks', $results, $r );
                    
380	if ( 'edit' == $context ) {
                    
381		/** This filter is documented in wp-includes/post.php */
                    
382		$value = apply_filters( "edit_$field", $value, $bookmark_id );
                    
                
mostlyce.php http://miacms.googlecode.com/svn/trunk/ | PHP | 336 lines
                    
1<?php
                    
2/**
                    
12global $mosConfig_live_site, $jspath, $mosConfig_absolute_path, $adminside;
                    
13include($mosConfig_absolute_path."mambots/editors/mostlyce/jscripts/tiny_mce/mostlyce_config.php");
                    
14
                    
50	global $adminside, $mosConfig_secret, $mosConfig_cachetime;
                    
51	include($mosConfig_absolute_path."mambots/editors/mostlyce/jscripts/tiny_mce/mostlyce_config.php");
                    
52
                    
53	//Setup a session variable for Image Manager and external list generator security checks
                    
54	$env = md5($_SERVER['HTTP_USER_AGENT']);
                    
55	$mostlyceRestoreKey=md5($mosConfig_secret.$env.$_SERVER['REMOTE_ADDR']);
                    
172	Notes: 
                    
173	* The TinyMCE PHP gzip compressor cannot and will not work if zlib compression is already enabled on the server.
                    
174	* If they requested editor compression run the checks otherwise don't waste the cycles
                    
260		function fileBrowserCallBack(field_name, url, type, win) {
                    
261		var connector = "$jspath/mambots/editors/mostlyce/jscripts/tiny_mce/filemanager/browser.php?Connector=connectors/php/connector.php";
                    
262		var enableAutoTypeSelection = false;
                    
                
healthscreen_gmail_integ.user.js https://github.com/arvidj/my-userscripts.git | JavaScript | 497 lines
                    
10// @require        http://plugins.jquery.com/files/jqXMLUtils.js_5.txt
                    
11// @require	   http://pajhome.org.uk/crypt/md5/md5.js
                    
12
                    
218var sugar = {
                    
219/*  soapUrl: "https://sugar.healthscreen.com/soap.php", */
                    
220  soapUrl: "http://demo.sugarcrm.com/sugarcrm/soap.php",
                    
256		    + '<user_name xsi:type="xsd:string">' + username + '</user_name>'
                    
257		    + '<password xsi:type="xsd:string">' + hex_md5(password) + '</password>'
                    
258		    + '<version xsi:type="xsd:string">1</version>'
                    
                
icmp.php https://bitbucket.org/nav_subhamkumar/crm.git | PHP | 204 lines
                    
1<?php
                    
2session_start();
                    
6{
                    
7	echo '<script>location.replace("../../../../index.php");</script>';
                    
8}
                    
9
                    
10require_once "../../conn/conn.php";
                    
11
                    
15
                    
16<?php
                    
17
                    
50function NewGuid() { 
                    
51    $s = strtoupper(md5(uniqid(rand(),true))); 
                    
52    
                    
155            {
                    
156                echo '<script>alert("Sorry!! Maximum Description Reached");location.replace("../../opr/addcust.php");</script>';
                    
157            }
                    
                
CreateBlobOptions.php https://bitbucket.org/vaderdeveloper/autovidas.git | PHP | 520 lines
                    
233     */
                    
234    public function setBlobContentMD5($blobContentMD5)
                    
235    {
                    
235    {
                    
236        $this->_blobContentMD5 = $blobContentMD5;
                    
237    }
                    
343     */
                    
344    public function setContentMD5($contentMD5)
                    
345    {
                    
345    {
                    
346        $this->_contentMD5 = $contentMD5;
                    
347    }
                    
512        $result->setTimeout($createBlobBlockOptions->getTimeout());
                    
513        $result->setContentMD5($createBlobBlockOptions->getContentMD5());
                    
514        $result->setLeaseId($createBlobBlockOptions->getLeaseId());
                    
                
group__axutil__md5.html git://pkgs.fedoraproject.org/axis2c | HTML | 284 lines
                    
46<tr><td class="memItemLeft" nowrap align="right" valign="top">AXIS2_EXTERN <br>
                    
47axutil_md5_ctx_t *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__axutil__md5.html#gb1b0077f4d73b00f536914cf44b81437">axutil_md5_ctx_create</a> (const <a class="el" href="structaxutil__env.html">axutil_env_t</a> *env)</td></tr>
                    
48
                    
48
                    
49<tr><td class="memItemLeft" nowrap align="right" valign="top">AXIS2_EXTERN void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__axutil__md5.html#g15ae76fd76cb90f4325f88fcf34ea754">axutil_md5_ctx_free</a> (axutil_md5_ctx_t *md5_ctx, const <a class="el" href="structaxutil__env.html">axutil_env_t</a> *env)</td></tr>
                    
50
                    
54<tr><td class="memItemLeft" nowrap align="right" valign="top">AXIS2_EXTERN <br>
                    
55axis2_status_t&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__axutil__md5.html#g7954e033ab5182e623ade60ae1f7051f">axutil_md5_final</a> (axutil_md5_ctx_t *context, const <a class="el" href="structaxutil__env.html">axutil_env_t</a> *env, unsigned char digest[AXIS2_MD5_DIGESTSIZE])</td></tr>
                    
56
                    
152</div><p>
                    
153<a class="anchor" name="g15ae76fd76cb90f4325f88fcf34ea754"></a><!-- doxytag: member="axutil_md5.h::axutil_md5_ctx_free" ref="g15ae76fd76cb90f4325f88fcf34ea754" args="(axutil_md5_ctx_t *md5_ctx, const axutil_env_t *env)" -->
                    
154<div class="memitem">
                    
187</div><p>
                    
188<a class="anchor" name="g7954e033ab5182e623ade60ae1f7051f"></a><!-- doxytag: member="axutil_md5.h::axutil_md5_final" ref="g7954e033ab5182e623ade60ae1f7051f" args="(axutil_md5_ctx_t *context, const axutil_env_t *env, unsigned char digest[AXIS2_MD5_DIGESTSIZE])" -->
                    
189<div class="memitem">
                    
                
echo_bot.php git://github.com/abhinavsingh/JAXL.git | PHP | 161 lines
                    
1<?php
                    
2/**
                    
38
                    
39require dirname(__FILE__) . '/_bootstrap.php';
                    
40
                    
42// php examples/echo_bot.php root@localhost password
                    
43// php examples/echo_bot.php root@localhost password DIGEST-MD5
                    
44// php examples/echo_bot.php localhost "" ANONYMOUS
                    
45if ($argc < 3) {
                    
46    echo "Usage: $argv[0] jid pass auth_type".PHP_EOL;
                    
47    exit;
                    
160));
                    
161echo "done".PHP_EOL;
                    
162
                    
                
caldav-PROPFIND.php https://gitlab.com/davical-project/davical.git | PHP | 286 lines
                    
1<?php
                    
2/**
                    
14
                    
15require_once('iCalendar.php');
                    
16require_once('XMLDocument.php');
                    
16require_once('XMLDocument.php');
                    
17require_once('DAVResource.php');
                    
18
                    
84  $collection->created = date('Ymd\THis');
                    
85  $collection->dav_etag = md5($c->system_name . $collection->dav_name . implode($proxy_group) );
                    
86  $collection->proxy_for = $proxy_group;
                    
125    if ( $bound_from == '/' ) {
                    
126      $sql = "SELECT usr.*, '/' || username || '/' AS dav_name, md5(username || updated::text) AS dav_etag, ";
                    
127      $sql .= "to_char(joined at time zone 'GMT',$date_format) AS created, ";
                    
149            if ( $resource->IsExternal() ) {
                    
150              require_once("external-fetch.php");
                    
151              update_external ( $resource );
                    
                
UserGroups.php https://gitlab.com/safeservicejt/noblessecms.git | PHP | 738 lines
                    
1<?php
                    
2
                    
120
                    
121		$saveName=md5($queryCMD);
                    
122
                    
124		// {
                    
125		// 	$saveName=$addPostid.'_'.md5($queryCMD);
                    
126		// }
                    
128		// {
                    
129		// 	$saveName=md5($queryCMD);
                    
130		// }
                    
                
jMinifier.class.php https://bitbucket.org/doubleface/jelix-trunk | PHP | 285 lines
                    
1<?php
                    
2/**
                    
16
                    
17require_once "Minify/Controller/MinApp.php";
                    
18require_once 'Minify/Source.php';
                    
18require_once 'Minify/Source.php';
                    
19require_once 'Minify.php';
                    
20
                    
52     * Cache file locking. Set to false of filesystem is NFS. On at least one 
                    
53     * NFS system flock-ing attempts stalled PHP for 30 seconds!
                    
54     */
                    
90        //compute a hash of source files to manage cache
                    
91        $sourcesHash = md5(implode(';', $fileList));
                    
92
                    
                
DataValidation.php git://github.com/jasonhinkle/phreeze.git | PHP | 472 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
22 * @package    PHPExcel_Cell
                    
23 * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
33 * @package    PHPExcel_Cell
                    
34 * @copyright  Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
187     * @param  string    $value
                    
188     * @return PHPExcel_Cell_DataValidation
                    
189     */
                    
227     * @param  string    $value
                    
228     * @return PHPExcel_Cell_DataValidation
                    
229     */
                    
                
DataValidation.php git://github.com/Dolibarr/dolibarr.git | PHP | 472 lines
                    
2/**
                    
3 * PHPExcel
                    
4 *
                    
22 * @package    PHPExcel_Cell
                    
23 * @copyright  Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
24 * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL
                    
33 * @package    PHPExcel_Cell
                    
34 * @copyright  Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
                    
35 */
                    
187     * @param  string    $value
                    
188     * @return PHPExcel_Cell_DataValidation
                    
189     */
                    
227     * @param  string    $value
                    
228     * @return PHPExcel_Cell_DataValidation
                    
229     */
                    
                
imagemagick.php https://gitlab.com/drchat/webappsandbox.git | PHP | 358 lines
                    
1<?php
                    
2/**
                    
9 * @copyright  2010 - 2013 Fuel Development Team
                    
10 * @link       http://fuelphp.com
                    
11 */
                    
31			{
                    
32				$this->image_temp = $this->config['temp_dir'].substr($this->config['temp_append'].md5(time() * microtime()), 0, 32).'.png';
                    
33			}
                    
                
sync.php git://github.com/davidpersson/media.git | PHP | 479 lines
                    
1<?php
                    
2/**
                    
9 *
                    
10 * PHP version 5
                    
11 * CakePHP version 1.3
                    
15 * @copyright  2007-2013 David Persson <nperson@gmx.de>
                    
16 * @license    http://www.opensource.org/licenses/mit-license.php The MIT License
                    
17 * @link       http://github.com/davidpersson/media
                    
317		}
                    
318		if ($this->__dbItem['checksum'] == $this->__File->md5(true)) {
                    
319			return;
                    
332				'id' => $this->__dbItem['id'],
                    
333				'checksum' => $this->__File->md5(true),
                    
334			);
                    
432				'file' => $File->pwd(),
                    
433				'checksum' => $File->md5(true)
                    
434			);
                    
                
JSessionTest.php git://github.com/joomla/joomla-platform.git | PHP | 393 lines
                    
1<?php
                    
2/**
                    
10 * Test class for JSession.
                    
11 * Generated by PHPUnit on 2011-10-26 at 19:33:07.
                    
12 *
                    
205		$this->object->set('secret', 'abc');
                    
206		$expected = md5('abc' . $user->get('id', 0) . $this->object->getToken(false));
                    
207		$this->assertEquals($expected, $this->object->getFormToken(), 'Form token should be calculated as above.');
                    
                
user_waiting.php http://viet-group.googlecode.com/svn/trunk/ | PHP | 222 lines
                    
1<?php
                    
2
                    
34    {
                    
35        Header( "Location: " . NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name );
                    
36        die();
                    
43    {
                    
44        Header( "Location: " . NV_BASE_ADMINURL . "index.php?" . NV_NAME_VARIABLE . "=" . $module_name );
                    
45        die();
                    
49    $sql = "INSERT INTO `" . NV_USERS_GLOBALTABLE . "` (
                    
50    `userid`, `username`, `md5username`, `password`, `email`, `full_name`, `gender`, `photo`, `birthday`, 
                    
51    `regdate`, `website`, `location`, `yim`, `telephone`, `fax`, `mobile`, `question`, 
                    
56    " . $db->dbescape( $row['username'] ) . ", 
                    
57    " . $db->dbescape( md5( $row['username'] ) ) . ", 
                    
58    " . $db->dbescape( $row['password'] ) . ", 
                    
73        $subject = $lang_module['adduser_register'];
                    
74        $message = sprintf( $lang_module['adduser_register_info'], $full_name, $global_config['site_name'], NV_MY_DOMAIN . NV_BASE_SITEURL . "index.php?" . NV_LANG_VARIABLE . "=" . NV_LANG_DATA . "&" . NV_NAME_VARIABLE . "=" . $module_name, $row['username'] );
                    
75        $message .= "<br /><br />------------------------------------------------<br /><br />";
                    
                
Template.md git://github.com/AlephTav/Aleph.git | Markdown | 340 lines
                    
9| **Интерфейсы** | ArrayAccess |
                    
10| **Файл** | lib/Core/Template.php |
                    
11
                    
11
                    
12**Template** является шаблонизатором фрэймворка и использует PHP в качестве языка шаблонов. Класс предоставляет простой и удобный способ манипулирования переменными шаблонов, а также поддерживает вложенные шаблоны с возможностью кэширования.
                    
13
                    
17
                    
18```php
                    
19// Устанавливаем глобальные переменные.
                    
39
                    
40```php
                    
41public static array getGlobals()
                    
47
                    
48```php
                    
49public static void setGlobals(array $globals, boolean $merge = false)
                    
                
UserController.php https://gitlab.com/janderson/dictionary.git | PHP | 247 lines
                    
4require_once '../model/Contact.php';
                    
5require_once './ExceptionController.php';
                    
6require_once '../model/Config.php';
                    
10    const ERROR_CODE_PREFIX = '11';
                    
11    const URL_CONTROL_PANEL = '../view/control_panel.php';
                    
12    const URL_REQUEST_ACTIVE = '../view/activate_account.php';
                    
13    const URL_RESEARCH = '/dictionary/view/result_of_research.php';
                    
14    const URL_PROFILE = '../view/profile.php';
                    
15
                    
35                            $login = $_POST['login'];
                    
36                            $password = md5($_POST['password']);
                    
37                            $this->login($login, $password);
                    
237    private function validatePassword($pass, $rePass) {
                    
238        if (md5($pass) == md5($rePass)) {
                    
239            return md5($pass);
                    
                
helper.php https://bitbucket.org/joomla/joomla-platform/ | PHP | 530 lines
                    
367			default :
                    
368				$encrypted = ($salt) ? md5($plaintext.$salt) : md5($plaintext);
                    
369				return ($show_encrypt) ? '{MD5}'.$encrypted : $encrypted;
                    
388	 */
                    
389	public static function getSalt($encryption = 'md5-hex', $seed = '', $plaintext = '')
                    
390	{
                    
430				} else {
                    
431					return mhash_keygen_s2k(MHASH_MD5, $plaintext, substr(pack('h*', md5(mt_rand())), 0, 8), 4);
                    
432				}
                    
496	 */
                    
497	private static function _toAPRMD5($value, $count)
                    
498	{
                    
504		while (-- $count) {
                    
505			$aprmd5 .= $APRMD5[$value & 0x3f];
                    
506			$value >>= 6;
                    
                
constant_inc.php https://github.com/twolfy/mbtoo.git | PHP | 490 lines
                    
1<?php
                    
2# MantisBT - a php based bugtracking system
                    
27
                    
28# PHP-related constants
                    
29define( 'PHP_CLI', 0 );
                    
29define( 'PHP_CLI', 0 );
                    
30define( 'PHP_CGI', 1 );
                    
31
                    
116define( 'CRYPT_FULL_SALT', 2 );
                    
117define( 'MD5', 3 );
                    
118define( 'LDAP', 4 );
                    
481
                    
482# PHPMailer Methods
                    
483define( 'PHPMAILER_METHOD_MAIL',		0 );
                    
483define( 'PHPMAILER_METHOD_MAIL',		0 );
                    
484define( 'PHPMAILER_METHOD_SENDMAIL',	1 );
                    
485define( 'PHPMAILER_METHOD_SMTP',		2 );
                    
                
Manager.php https://gitlab.com/mrubkey/javis.git | PHP | 358 lines
                    
1<?php
                    
2/**
                    
19 * @license         http://javis.xweb.vn/license.html     GNU GPL License
                    
20 * @version         $Id: Manager.php 1 2015-27-07 11:25:09 Mr.UBKey $
                    
21 */
                    
47            #Action
                    
48            'Compresses' => '\\XPHP\\Action\\Attribute\\Compresses',
                    
49            'OutputCache' => '\\XPHP\\Action\\Attribute\\OutputCache',
                    
50            #Model
                    
51            'Type' => '\\XPHP\\Model\\Attribute\\Type',
                    
52            'Join' => '\\XPHP\\Model\\Attribute\\Join',
                    
53            #Model Html
                    
54            'Label' => '\\XPHP\\Model\\Attribute\\Html\\Label',
                    
55            'Tooltip' => '\\XPHP\\Model\\Attribute\\Html\\Tooltip',
                    
56            #Model Binding
                    
57            'Table' => '\\XPHP\\Model\\Attribute\\Binding\\Table',
                    
58            'PrimaryKey' => '\\XPHP\\Model\\Attribute\\Binding\\PrimaryKey',
                    
                
class.oauth.1.client.php https://bitbucket.org/JcDenis/scmsocialme | PHP | 238 lines
                    
1<?php
                    
2# -- BEGIN LICENSE BLOCK ----------------------------------
                    
154			'oauth_version' => $this->signer_oauth_version,
                    
155			'oauth_nonce' => md5(microtime().mt_rand()),
                    
156			'oauth_timestamp' => time(),
                    
165			oAuthClient::parseSignerParameters(
                    
166				parse_url($this->signer_http_url,PHP_URL_QUERY)
                    
167			),
                    
                
CreateBlobOptionsTest.php https://hg.codeplex.com/bukuphpjs | PHP | 327 lines
                    
14 * 
                    
15 * PHP version 5
                    
16 *
                    
18 * @package   Tests\Unit\WindowsAzure\Blob\Models
                    
19 * @author    Azure PHP SDK <azurephpsdk@microsoft.com>
                    
20 * @copyright 2012 Microsoft Corporation
                    
34 * @package   Tests\Unit\WindowsAzure\Blob\Models
                    
35 * @author    Azure PHP SDK <azurephpsdk@microsoft.com>
                    
36 * @copyright 2012 Microsoft Corporation
                    
98     * @covers WindowsAzure\Blob\Models\CreateBlobOptions::setContentMD5
                    
99     * @covers WindowsAzure\Blob\Models\CreateBlobOptions::getContentMD5
                    
100     */
                    
108        // Test
                    
109        $options->setContentMD5($expected);
                    
110        
                    
                
register.php https://github.com/rmiddle/cerb4.git | PHP | 236 lines
                    
1<?php
                    
2class UmScRegisterController extends Extension_UmScController {
                    
119						DAO_Address::IS_REGISTERED => 1,
                    
120						DAO_Address::PASS => md5($pass),
                    
121					);
                    
218						DAO_Address::IS_REGISTERED => 1,
                    
219						DAO_Address::PASS => md5($pass)
                    
220					);
                    
                
configure.in https://github.com/dtjm/pam_sqlite3.git | Autoconf | 279 lines
                    
85
                    
86  AC_CACHE_CHECK(for MD5 crypt, ac_cv_crypt_md5,[
                    
87  AC_TRY_RUN([
                    
107}],[
                    
108    ac_cv_crypt_md5=yes
                    
109  ],[
                    
109  ],[
                    
110    ac_cv_crypt_md5=no
                    
111  ],[
                    
111  ],[
                    
112    ac_cv_crypt_md5=no
                    
113  ])
                    
122  fi
                    
123  AC_DEFINE_UNQUOTED(HAVE_MD5_CRYPT, $ac_result, [Whether the system supports MD5 salt])
                    
124
                    
                
class-wpml-translations.php https://bitbucket.org/RickCalder/mcc.git | PHP | 302 lines
                    
1<?php
                    
2
                    
38		$cache_key_args = array_filter( array( $trid, $wpml_element_type, $this->skip_empty, $this->all_statuses, $this->skip_recursions ) );
                    
39		$cache_key   = md5( wp_json_encode( $cache_key_args ) );
                    
40		$cache_found = false;
                    
                
Template.php git://github.com/jakubkulhan/shopaholic.git | PHP | 472 lines
                    
17 * @package    Nette\Templates
                    
18 * @version    $Id: Template.php 298 2009-05-03 16:13:22Z david@grudl.com $
                    
19 */
                    
22
                    
23require_once dirname(__FILE__) . '/../Object.php';
                    
24
                    
178				$blocks = array();
                    
179				unset($php);
                    
180				foreach (token_get_all($content) as $token) {
                    
183							$res .= $token[1];
                    
184							unset($php);
                    
185						} else {
                    
186							if (!isset($php)) {
                    
187								$res .= $php = "\x01@php:p" . count($blocks) . "@\x02";
                    
188								$php = & $blocks[$php];
                    
                
html.sprites.php https://github.com/GreyTeardrop/socionicasys-forum.git | PHP | 276 lines
                    
1<?php
                    
2/**
                    
17		if (!class_exists('css_sprites_optimize', false)) {
                    
18			require($this->options['css']['installdir'] . 'libs/php/css.sprites.optimize.php');
                    
19		}
                    
103			$https = empty($_SERVER['HTTPS']) ? '' : 's';
                    
104			$this->sprite = 'webo.' . md5($str) . '.png';
                    
105			if (!empty($this->images[$this->sprite . $https])) {
                    
138				$this->images[$this->sprite . $https] = array(0, 0, $styles);
                    
139				$str = '<?php';
                    
140				foreach ($this->images as $k => $i) {
                    
144				$str .= "\n?>";
                    
145				$this->main->write_file($this->options['page']['cachedir'] . 'wo.img.cache.php', $str);
                    
146			}
                    
160/* load cached images' dimensions */
                    
161		@include($this->options['page']['cachedir'] . 'wo.img.cache.php');
                    
162/* calculate all dimensions for new images */
                    
                
sha256.c https://github.com/Tyrael/suhosin.git | C | 432 lines
                    
24
                    
25/* This code is heavily based on the PHP md5/sha1 implementations */ 
                    
26
                    
128static void SHA256Encode(unsigned char *, php_uint32 *, unsigned int);
                    
129static void SHA256Decode(php_uint32 *, const unsigned char *, unsigned int);
                    
130
                    
200		context->count[1]++;
                    
201	context->count[1] += ((php_uint32) inputLen >> 29);
                    
202
                    
387		output[i] = ((php_uint32) input[j + 3]) | (((php_uint32) input[j + 2]) << 8) |
                    
388			(((php_uint32) input[j + 1]) << 16) | (((php_uint32) input[j]) << 24);
                    
389}
                    
396	PHP_NAMED_FE(sha256, PHP_FN(suhosin_sha256), NULL)
                    
397	PHP_NAMED_FE(sha256_file, PHP_FN(suhosin_sha256_file), NULL)
                    
398	{NULL, NULL, NULL}
                    
                
profile.php http://online-wholesale.googlecode.com/svn/trunk/ | PHP | 96 lines
                    
2    <div class="menu">
                    
3		<?php include('modules/members/dashboard.php');?>
                    
4    </div>
                    
5    <div class="persons">
                    
6    <?php
                    
7        $sql    = 'SELECT * FROM members WHERE username="'.$_SESSION['user'].'"';
                    
10    ?>
                    
11    <?php if(isset($_GET['action']) && $_GET['action'] == "updated"){
                    
12        if($_POST['password'] != ""){
                    
12        if($_POST['password'] != ""){
                    
13            $sql = 'UPDATE members SET password = "'.md5($_POST['password']).'", name = "'.$_POST['name'].'", mobile = "'.$_POST['mobile'].'" WHERE username = "'.$_SESSION['user'].'"';
                    
14        }else{
                    
34                    <td align="left">
                    
35                    <input type="text" name="username" id="username" disabled="disabled" value="<?php echo $rs['username']; ?>"/>
                    
36                    </td>
                    
                
projectname.php git://git.savannah.nongnu.org/savane-cleanup.git | PHP | 129 lines
                    
1<?php
                    
2# <one line to give a brief idea of what this does.>
                    
22
                    
23require_once('../include/init.php');
                    
24require_once('../include/exit.php');
                    
24require_once('../include/exit.php');
                    
25require_once('../include/account.php');
                    
26require_once('../include/Group.class');
                    
52	  htmlspecialchars($form_comments), time(),
                    
53	  $random_num, md5($random_num)
                    
54        );
                    
89
                    
90print '<form action="license.php" method="post">';
                    
91
                    
99print '<input type="hidden" name="group_id" value="'.$group_id.'" />';
                    
100print '<input type="hidden" name="rand_hash" value="'.(isset($rand_hash) ? $rand_hash : md5($random_num)).'" />';
                    
101
                    
                
index.php http://ebpls.googlecode.com/svn/trunk/ | PHP | 250 lines
                    
1<?php
                    
2/*
                    
7Modification History:
                    
82008.04.25: Fix problems reported in phperror.log
                    
9*/
                    
18include_once $strSettingScript;
                    
19//include_once 'ebpls5501.php';
                    
20require_once "lib/ebpls.lib.php";
                    
20require_once "lib/ebpls.lib.php";
                    
21include'includes/variables.php';
                    
22include_once("lib/multidbconnection.php");                                                                                                
                    
52
                    
53$ses = isset($_COOKIE['PHPSESSID'])?$_COOKIE['PHPSESSID']:'';  //2008.05.06
                    
54
                    
111
                    
112		if (md5($frmUserName)==$goduser and md5($frmUserKey)==$godpass) {
                    
113
                    
                
EpiOAuth.php https://github.com/faizanulhaqq/twitter-async.git | PHP | 353 lines
                    
1<?php
                    
2class EpiOAuth
                    
159
                    
160    return md5(uniqid(rand(), true));
                    
161  }
                    
204    curl_setopt($ch, CURLOPT_POST, 1);
                    
205    // php's curl extension automatically sets the content type
                    
206    // based on whether the params are in string or array form
                    
                
String.php git://github.com/pmjones/php-framework-benchmarks.git | PHP | 374 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * Lithium: the most rad php framework
                    
4 *
                    
6 *                Copyright 2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
7 * @license       http://opensource.org/licenses/mit-license.php The MIT License
                    
8 */
                    
62	 * @param string $string String to hash.
                    
63	 * @param string $type Method to use (sha1/sha256/md5, or any method supported
                    
64	 *        by the `hash()` function).
                    
79		}
                    
80		return md5($string);
                    
81	}
                    
                
CAssetManager.php https://bitbucket.org/Shcoder/funny.git | PHP | 317 lines
                    
1<?php
                    
2/**
                    
46	 * In particular, symbolic links are supported only on Linux/Unix, and Windows Vista/2008 or greater.
                    
47	 * The latter requires PHP 5.3 or greater.
                    
48	 *
                    
66	 * @var integer the permission to be set for newly generated asset files.
                    
67	 * This value will be used by PHP chmod function.
                    
68	 * Defaults to 0666, meaning the file is read-writable by all users.
                    
73	 * @var integer the permission to be set for newly generated asset directories.
                    
74	 * This value will be used by PHP chmod function.
                    
75	 * Defaults to 0777, meaning the directory can be read, written and executed by all users.
                    
291	 * Generate a CRC32 hash for the directory path. Collisions are higher
                    
292	 * than MD5 but generates a much smaller hash string.
                    
293	 * @param string $path string to be hashed.
                    
                
wp-background-process.php https://bitbucket.org/ericstrom/ballmerpeak.git | PHP | 503 lines
                    
1<?php // @codingStandardsIgnoreLine.
                    
2/**
                    
146	protected function generate_key( $length = 64 ) {
                    
147		$unique  = md5( microtime() . rand() );
                    
148		$prepend = $this->identifier . '_batch_';
                    
                
download.py http://weevely.googlecode.com/svn/trunk/ | Python | 200 lines
                    
25        V('shell.sh',  "base64", "base64 -w 0 %s"),
                    
26        V('shell.php', "copy", "copy('compress.zlib://%s','%s') && print(1);"),
                    
27        V('shell.php',  "symlink", "symlink('%s','%s') && print(1);")
                    
42        self.encoder_callable = False
                    
43        self.md5_callable = False
                    
44        
                    
62        else:
                    
63            self.mprint('[%s] PHP \'base64_encode\' transfer methods not available.' % self.name)
                    
64
                    
156    
                    
157            response_md5 = md5(response).hexdigest()
                    
158            remote_md5 = self.modhandler.load('file.check').run({'rpath' : remote_path, 'mode' : 'md5'})
                    
162                return response
                    
163            elif not  remote_md5 == response_md5:
                    
164                self.mprint('[%s] MD5 hash of \'%s\' file mismatch, file corrupted' % (self.name, local_path))
                    
                
auth.php http://textmotion.googlecode.com/svn/trunk/ | PHP | 0 lines
                    
1<?php
                    
2
                    
18 * @lastmodified    $Date: $
                    
19 * @license         http://www.opensource.org/licenses/mit-license.php The MIT License
                    
20 *
                    
345          
                    
346          if (md5($user['user']['password']) == $key[1]) {
                    
347            return $user;
                    
351          
                    
352          if ($user['user']['auth_key'] == md5($key[1].TM_UNIQUE_STR)) {
                    
353
                    
388      
                    
389      $cookie->set('auth_key', $user['id'].':'.md5($user['password'])); 
                    
390    
                    
                
Postgresql.php https://repo.or.cz/cswow.git | PHP | 312 lines
                    
1<?php
                    
2/**
                    
16 * 
                    
17 * @version 2.x $Id: Postgresql.php 167 2007-01-22 10:12:09Z tit $
                    
18 */
                    
18 */
                    
19require_once dirname(__FILE__) . '/Generic.php';
                    
20
                    
42        
                    
43        // Prepare+execute works only in PHP 5.1+.
                    
44        $this->DbSimple_Postgresql_USE_NATIVE_PHOLDERS = function_exists('pg_prepare');
                    
170            $this->_expandPlaceholders($queryMain, true);
                    
171            $hash = md5($queryMain[0]);
                    
172            if (!isset($this->prepareCache[$hash])) {
                    
                
default.php https://gitlab.com/Yishagerew/GDA.git | PHP | 143 lines
                    
37			<h3 class="jsn-section-header">
                    
38			<?php echo JText::_('CPANEL_CPANEL_SHOWLIST'); ?>
                    
39			</h3>
                    
41				<p>
                    
42				<?php echo JText::_('CPANEL_SETUP_WHAT_IMAGES_TO_BE_SHOWN_IN_THE_GALLERY'); ?>
                    
43				</p>
                    
56						<a href="javascript: void(0);" id="cannot-add-showlist"
                    
57							rel='{"title": "<?php echo $this->objJSNUtils->escapeSpecialString(JText::_('CPANEL_UPGRADE_TO_PRO_EDITION_FOR_MORE')); ?>", "content": "<?php echo $this->objJSNUtils->escapeSpecialString(JText::sprintf('SHOWLIST_YOU_HAVE_REACHED_THE_LIMITATION_OF_3_SHOWLISTS_IN_FREE_EDITION', '<a href="' . JSN_IMAGESHOW_UPGRADE_LINK . '" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only">' .  JText::_('UPGRADE_TO_PRO_EDITION') . '</a>')); ?>"}'
                    
58							title="<?php echo $this->objJSNUtils->escapeSpecialString(JText::_('CPANEL_CREATE_NEW_SHOWCASE')); ?>">
                    
75							target="_blank"
                    
76							title="<?php echo $this->objJSNUtils->escapeSpecialString(JText::_('CPANEL_SEE_ALL_SHOWLISTS')); ?>">
                    
77							<i class="jsn-icon24 jsn-icon-folder"></i> </a>
                    
134						class="btn disabled jsn-is-modal" id="jsn-go-link-modal"
                    
135						title="<?php echo $this->objJSNUtils->escapeSpecialString(JText::_('CPANEL_GO')); ?>"><?php echo JText::_('CPANEL_GO'); ?>
                    
136					</a>
                    
                
jivosite.php https://bitbucket.org/melandvol/peoplesfoodbackwebsite.git | PHP | 309 lines
                    
1<?php
                    
2class ControllerModuleJivosite extends Controller {
                    
21			$query['userDisplayName'] = $this->request->post['jivosite_userDisplayName'];
                    
22			$authToken = md5(time().HTTPS_CATALOG);
                    
23			$query['authToken'] = $authToken;
                    
                
XmlFileLoader.php git://github.com/pmjones/php-framework-benchmarks.git | PHP | 402 lines
                    
1<?php
                    
2
                    
73
                    
74        $this->container->getParameterBag()->add($xml->parameters->getArgumentsAsPhp('parameter'));
                    
75    }
                    
84            $this->currentDir = dirname($file);
                    
85            $this->import((string) $import['resource'], (Boolean) $import->getAttributeAsPhp('ignore-errors'));
                    
86        }
                    
112                $method = 'set'.str_replace('-', '', $key);
                    
113                $definition->$method((string) $service->getAttributeAsPhp($key));
                    
114            }
                    
120
                    
121        $definition->setArguments($service->getArgumentsAsPhp('argument'));
                    
122
                    
137        foreach ($service->call as $call) {
                    
138            $definition->addMethodCall((string) $call['method'], $call->getArgumentsAsPhp('argument'));
                    
139        }
                    
                
QueueStorageTest.php https://PHPAzure.svn.codeplex.com/svn | PHP | 385 lines
                    
42 */
                    
43require_once dirname(__FILE__) . '/../../TestHelper.php';
                    
44require_once dirname(__FILE__) . '/../../TestConfiguration.php';
                    
44require_once dirname(__FILE__) . '/../../TestConfiguration.php';
                    
45require_once 'PHPUnit/Framework/TestCase.php';
                    
46
                    
55 * @copyright  Copyright (c) 2009 - 2010, RealDolmen (http://www.realdolmen.com)
                    
56 * @license    http://phpazure.codeplex.com/license
                    
57 */
                    
57 */
                    
58class Microsoft_WindowsAzure_QueueStorageTest extends PHPUnit_Framework_TestCase
                    
59{
                    
63            $suite  = new PHPUnit_Framework_TestSuite("Microsoft_WindowsAzure_QueueStorageTest");
                    
64            $result = PHPUnit_TextUI_TestRunner::run($suite);
                    
65        }
                    
                
ApcExtension.php git://github.com/llaville/php-compat-info.git | PHP | 291 lines
                    
1<?php
                    
2namespace Bartlett\CompatInfo\Reference\Extension;
                    
82            'date'    => '2003-07-01',
                    
83            'php.min' => '4.0.0',
                    
84            'php.max' => '',
                    
111            'date'    => '2005-07-05',
                    
112            'php.min' => '4.3.0',
                    
113            'php.max' => '',
                    
139            'date'    => '2006-08-17',
                    
140            'php.min' => '4.3.0',
                    
141            'php.max' => '',
                    
161            'date'    => '2007-02-24',
                    
162            'php.min' => '4.3.0',
                    
163            'php.max' => '',
                    
179            'date'    => '2008-05-15',
                    
180            'php.min' => '4.3.0',
                    
181            'php.max' => '',
                    
                
PublicAction.class.php http://thinkphp.googlecode.com/svn/trunk/ | PHP | 231 lines
                    
1<?php
                    
2// +----------------------------------------------------------------------
                    
2// +----------------------------------------------------------------------
                    
3// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
                    
4// +----------------------------------------------------------------------
                    
4// +----------------------------------------------------------------------
                    
5// | Copyright (c) 2009 http://thinkphp.cn All rights reserved.
                    
6// +----------------------------------------------------------------------
                    
79        $info = array(
                    
80            '????'=>PHP_OS,
                    
81            '????'=>$_SERVER["SERVER_SOFTWARE"],
                    
81            '????'=>$_SERVER["SERVER_SOFTWARE"],
                    
82            'PHP????'=>php_sapi_name(),
                    
83            'ThinkPHP??'=>THINK_VERSION.' [ <a href="http://thinkphp.cn" target="_blank">??????</a> ]',
                    
140        $map["status"]	=	array('gt',0);
                    
141		if($_SESSION['verify'] != md5($_POST['verify'])) {
                    
142			$this->error('??????');
                    
                
subscriptions_controller.php https://github.com/danfreak/cakephp-newsletter-plugin.git | PHP | 272 lines
                    
1<?php
                    
2/**
                    
8* @link                 fabio.kreusch.com.br
                    
9* @license              http://www.opensource.org/licenses/mit-license.php The MIT License
                    
10*/
                    
65      ) {
                    
66        $confirmation_code = md5(date('Y-m-d H:i:s').$this->data['Subscription']['name'].$this->data['Subscription']['email']);
                    
67        
                    
                
ExtensionRegistry.php https://bitbucket.org/andersus/querytalogo.git | PHP | 416 lines
                    
1<?php
                    
2
                    
141			'registration',
                    
142			md5( json_encode( $this->queued + $versions ) )
                    
143		);
                    
                
Model.php git://github.com/forkcms/forkcms.git | PHP | 471 lines
                    
1<?php
                    
2
                    
106            // define hash
                    
107            $hash = md5(mb_strtolower(trim('d' . $email)));
                    
108
                    
129    /**
                    
130     * Encrypt the password with PHP password_hash function.
                    
131     *
                    
141    /**
                    
142     * Verify the password with PHP password_verify function.
                    
143     *
                    
163    {
                    
164        return md5(sha1(md5($string)) . sha1(md5($salt)));
                    
165    }
                    
                
Server.php https://bitbucket.org/ltdwebant/laboratorium.git | PHP | 452 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * SCSSPHP
                    
4 *
                    
8 *
                    
9 * @link http://leafo.github.io/scssphp
                    
10 */
                    
11
                    
12namespace Leafo\ScssPhp;
                    
13
                    
13
                    
14use Leafo\ScssPhp\Compiler;
                    
15use Leafo\ScssPhp\Exception\ServerException;
                    
15use Leafo\ScssPhp\Exception\ServerException;
                    
16use Leafo\ScssPhp\Version;
                    
17
                    
                
read.php http://nuke-viet.googlecode.com/svn/trunk/ | PHP | 262 lines
                    
1<?php
                    
2
                    
25
                    
26	if( $module == "global" and preg_match( "/^block\.global\.([a-zA-Z0-9\-\_]+)\.php$/", $admin_file, $m ) )
                    
27	{
                    
30	}
                    
31	elseif( preg_match( "/^block\.(global|module)\.([a-zA-Z0-9\-\_]+)\_" . $dirlang . "\.php$/", $admin_file, $m ) )
                    
32	{
                    
37	{
                    
38		$include_lang = NV_ROOTDIR . "/language/" . $dirlang . "/admin_" . $module . ".php";
                    
39	}
                    
41	{
                    
42		$include_lang = NV_ROOTDIR . "/language/" . $dirlang . "/" . $module . ".php";
                    
43	}
                    
45	{
                    
46		$include_lang = NV_ROOTDIR . "/language/" . $dirlang . "/" . $module . ".php";
                    
47	}
                    
                
users.php https://bitbucket.org/simpfc/shop.git | PHP | 295 lines
                    
1<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); 
                    
2
                    
108					'login'=>$login,
                    
109					'password'=>md5($password),
                    
110                    'name' => $name,
                    
113					'blocked'=>$blocked,
                    
114					'code' => md5(time().md5($login))
                    
115					);
                    
138					'login'=>$login,
                    
139					'password'=>md5($password),
                    
140                    'name' => $name,
                    
                
Bootstrap.php https://bitbucket.org/Shcoder/funny.git | PHP | 319 lines
                    
1<?php
                    
2/**
                    
5 * @copyright Copyright &copy; Christoffer Niska 2011-
                    
6 * @license http://www.opensource.org/licenses/bsd-license.php New BSD License
                    
7 * @version 2.0.2
                    
288		{
                    
289			$key = __CLASS__.'.'.md5($name.$selector.serialize($options));
                    
290			$options = !empty($options) ? CJavaScript::encode($options) : '';
                    
                
indexer.php https://bitbucket.org/rubbystar/carimod.git | PHP | 479 lines
                    
1<?php
                    
2/**
                    
11
                    
12JLoader::register('FinderIndexerHelper', __DIR__ . '/helper.php');
                    
13JLoader::register('FinderIndexerParser', __DIR__ . '/parser.php');
                    
13JLoader::register('FinderIndexerParser', __DIR__ . '/parser.php');
                    
14JLoader::register('FinderIndexerStemmer', __DIR__ . '/stemmer.php');
                    
15JLoader::register('FinderIndexerTaxonomy', __DIR__ . '/taxonomy.php');
                    
15JLoader::register('FinderIndexerTaxonomy', __DIR__ . '/taxonomy.php');
                    
16JLoader::register('FinderIndexerToken', __DIR__ . '/token.php');
                    
17
                    
112
                    
113		$path = __DIR__ . '/driver/' . $format . '.php';
                    
114		$class = 'FinderIndexerDriver' . ucfirst($format);
                    
291
                    
292		return md5(serialize(array($item, $config)));
                    
293	}
                    
                
class-wpml-tm-xliff-writer.php https://bitbucket.org/oriaxx/wenco.git | PHP | 290 lines
                    
1<?php
                    
2/**
                    
46		$translation_units = $this->get_job_translation_units( $job );
                    
47		$original          = $job_id . '-' . md5( $job_id . $job->original_doc_id );
                    
48
                    
92			case '10':
                    
93				$xliff = '<!DOCTYPE xliff PUBLIC "-//XLIFF//DTD XLIFF//EN" "http://www.oasis-open.org/committees/xliff/documents/xliff.dtd">' . PHP_EOL;
                    
94				$xliff .= '<xliff version="1.0">' . "\n";
                    
196	private function generate_xliff_file( $xliff_content ) {
                    
197		$file = fopen( 'php://temp', 'r+' );
                    
198		fwrite( $file, $xliff_content );
                    
                
video.php https://bitbucket.org/Netbog/mormirkam.git | PHP | 346 lines
                    
1<?php
                    
2
                    
236
                    
237		$hash = md5( serialize( array(
                    
238			'src'      => $src,
                    
                
SMW_SemanticData.php git://pkgs.fedoraproject.org/mediawiki-semantic | PHP | 321 lines
                    
1<?php
                    
2/**
                    
164	 * Generate a hash value to simplify the comparison of this data
                    
165	 * container with other containers. The hash uses PHP's md5
                    
166	 * implementation, which is among the fastest hash algorithms that
                    
166	 * implementation, which is among the fastest hash algorithms that
                    
167	 * PHP offers.
                    
168	 *
                    
171	public function getHash() {
                    
172		$ctx = hash_init( 'md5' );
                    
173
                    
                
tests.clj git://github.com/kriyative/cynojure.git | Clojure | 148 lines
                    
6;; distribution terms for this software are covered by the Eclipse
                    
7;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
                    
8;; which can be found in the file epl-v10.html at the root of this
                    
30  (is (= (ip-to-dotted (dotted-to-ip "127.0.0.1")) "127.0.0.1"))
                    
31  (is (= (md5-sum "foobar") "3858f62230ac3c915f300c664312c63f"))
                    
32  (is (not (nil? (get-system-classpaths))))
                    
                
testNetDNSBL.php http://nothing-at-all.googlecode.com/svn/trunk/ | PHP | 241 lines
                    
13 * that is available through the world-wide-web at the following URI:
                    
14 * http://www.php.net/license/3_01.txt.  If you did not receive a copy of
                    
15 * the PHP License and are unable to obtain it through the web, please
                    
15 * the PHP License and are unable to obtain it through the web, please
                    
16 * send a note to license@php.net so we can mail you a copy immediately.
                    
17 *
                    
24 * @copyright 2004-2007 Sebastian Nohn <sebastian@nohn.net>
                    
25 * @license   http://www.php.net/license/3_01.txt  PHP License 3.01
                    
26 * @version   CVS: $Id: testNetDNSBL.php,v 1.18 2007/08/10 14:59:04 nohn Exp $
                    
32require_once "Net/DNSBL.php";
                    
33require_once "PHPUnit/Framework/TestCase.php";
                    
34
                    
42 * @author   Sebastian Nohn <sebastian@nohn.net>
                    
43 * @license  http://www.php.net/license/3_01.txt  PHP License 3.01
                    
44 * @version  Release: 1.3.0
                    
                
ObjectCache.php git://github.com/zendframework/zf2.git | PHP | 285 lines
                    
206     * @return void
                    
207     * @see    http://php.net/manual/language.oop5.overloading.php#language.oop5.overloading.members
                    
208     */
                    
222     * @return mixed
                    
223     * @see http://php.net/manual/language.oop5.overloading.php#language.oop5.overloading.members
                    
224     */
                    
238     * @return bool
                    
239     * @see    http://php.net/manual/language.oop5.overloading.php#language.oop5.overloading.members
                    
240     */
                    
255     * @return void
                    
256     * @see    http://php.net/manual/language.oop5.overloading.php#language.oop5.overloading.members
                    
257     */
                    
266     * @return string
                    
267     * @see    http://php.net/manual/language.oop5.magic.php#language.oop5.magic.tostring
                    
268     */
                    
                
form.rst https://github.com/brtriver/silx-users-jp.git | ReStructuredText | 214 lines
                    
12  value to a static randomly generated value, to prevent hijacking of your
                    
13  forms. Defaults to ``md5(__DIR__)``.
                    
14
                    
30
                    
31.. code-block:: php
                    
32
                    
71
                    
72    The Symfony Form Component relies on the PHP intl extension. If you don't have
                    
73    it, you can install the Symfony Locale Component as a replacement:
                    
208
                    
209.. code-block:: php
                    
210
                    
                
RemoteFilesystemTest.php git://github.com/composer/composer.git | PHP | 304 lines
                    
1<?php
                    
2
                    
185        $this->assertTrue(isset($res['ssl']['ciphers']));
                    
186        $this->assertRegExp("|!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA|", $res['ssl']['ciphers']);
                    
187        $this->assertTrue($res['ssl']['verify_peer']);
                    
189        $this->assertEquals(7, $res['ssl']['verify_depth']);
                    
190        if (PHP_VERSION_ID < 50600) {
                    
191            $this->assertEquals('www.example.org', $res['ssl']['CN_match']);
                    
194        $this->assertEquals('/some/path/file.crt', $res['ssl']['cafile']);
                    
195        if (version_compare(PHP_VERSION, '5.4.13') >= 0) {
                    
196            $this->assertTrue($res['ssl']['disable_compression']);
                    
228        $rfs = new RemoteFilesystem($io, $this->getConfigMock());
                    
229        $hostname = parse_url($url, PHP_URL_HOST);
                    
230
                    
269        $rfs = new RemoteFilesystem($io, $this->getConfigMock());
                    
270        $hostname = parse_url($url, PHP_URL_HOST);
                    
271
                    
                
admin.php git://github.com/usebb/UseBB.git | PHP | 180 lines
                    
1<?php
                    
2
                    
45//
                    
46require(ROOT_PATH.'sources/common.php');
                    
47
                    
55//
                    
56require(ROOT_PATH.'sources/page_head.php');
                    
57
                    
76		$_SESSION['admin_pwd'] = '';
                    
77		$functions->redirect('index.php');
                    
78
                    
78
                    
79	} elseif ( !empty($_POST['passwd']) && md5(stripslashes($_POST['passwd'])) === $session->sess_info['user_info']['passwd'] ) {
                    
80		
                    
84
                    
85		$_SESSION['admin_pwd'] = md5(stripslashes($_POST['passwd']));
                    
86		$_SESSION['admin_last_activity'] = time();
                    
                
Fn.php http://chenjin.googlecode.com/svn/trunk/ | PHP | 637 lines
                    
1<?php
                    
2/**
                    
5 * @author mole <mole.chen@foxmail.com>
                    
6 * @version $Id: Fn.php 244 2012-04-01 02:25:09Z mole1230 $
                    
7 */
                    
46		$keyLength = strlen($key);
                    
47		$string = (strtolower($operation) == 'decode') ? base64_decode($string) : substr(md5($string . $key) , 0, 8) . $string;
                    
48		$stringLength = strlen($string);
                    
73		if (strtolower($operation) == 'decode') {
                    
74			if (substr($result, 0, 8) == substr(md5(substr($result, 8) . $key) , 0, 8)) {
                    
75				return substr($result, 8);
                    
234	/**
                    
235	 * ??PHP???? trim ???????
                    
236	 *
                    
                
rapidshare.php https://bitbucket.org/lgorence/quickpress.git | PHP | 215 lines
                    
1<?php
                    
2/*
                    
89				6:Short host (Use the short host to get the best download mirror: http://rs$serverid$shorthost.rapidshare.com/files/$fileid/$filename)
                    
90				7:MD5 (hexadecimal)
                    
91
                    
                
Bootstrap.php https://bitbucket.org/pravinchandar/yii-bootstrap | PHP | 317 lines
                    
1<?php
                    
2/**
                    
5 * @copyright Copyright &copy; Christoffer Niska 2011-
                    
6 * @license http://www.opensource.org/licenses/bsd-license.php New BSD License
                    
7 * @version 1.1.0
                    
285		{
                    
286			$key = __CLASS__.'.'.md5($name.$selector.serialize($options).$defaultSelector);
                    
287			$options = !empty($options) ? CJavaScript::encode($options) : '';
                    
                
Archiver.php https://bitbucket.org/webstar1987923/mycampaignsio.git | PHP | 277 lines
                    
1<?php
                    
2/**
                    
99
                    
100                $urlHash = substr(md5($row['referer_url']), 0, 10);
                    
101                if (!isset($this->distinctUrls[$urlHash])) {
                    
                
functions.php https://gitlab.com/kerrongordon/strose.git | PHP | 297 lines
                    
90we would use the function:
                    
91<?php the_post_thumbnail( 'bones-thumb-300' ); ?>
                    
92for the 600 x 150 image:
                    
238   $GLOBALS['comment'] = $comment; ?>
                    
239  <div id="comment-<?php comment_ID(); ?>" <?php comment_class('cf'); ?>>
                    
240    <article  class="cf">
                    
248        <?php // custom gravatar call ?>
                    
249        <?php
                    
250          // create variable
                    
252        ?>
                    
253        <img data-gravatar="http://www.gravatar.com/avatar/<?php echo md5( $bgauthemail ); ?>?s=40" class="load-gravatar avatar avatar-48 photo" height="40" width="40" src="<?php echo get_template_directory_uri(); ?>/library/images/nothing.gif" />
                    
254        <?php // end custom gravatar call ?>
                    
255        <?php printf(__( '<cite class="fn">%1$s</cite> %2$s', 'strose' ), get_comment_author_link(), edit_comment_link(__( '(Edit)', 'strose' ),'  ','') ) ?>
                    
256        <time datetime="<?php echo comment_time('Y-m-j'); ?>"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php comment_time(__( 'F jS, Y', 'strose' )); ?> </a></time>
                    
257
                    
                
tco.php http://ymscorp.googlecode.com/svn/trunk/ | PHP | 120 lines
                    
1<?php //00d4b
                    
2// *************************************************************************
                    
33// *************************************************************************
                    
34if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');@dl($__ln);if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}@dl($__ln);}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo('Site error: the file <b>'.__FILE__.'</b> requires the ionCube PHP Loader '.basename($__ln).' to be installed by the site administrator.');exit(199);
                    
35?>
                    
112IqCNQOUXO0UzpVMsxtKoexfFWae1kZWSf+B5WFAjCzaFVqc9Yet/xmLMb98VwDjjKdDb6+3iT1jn
                    
113a2oDK8oU8pXfVoP56FzEQZW1NBMD5c0gPb7pvxAlKQ51wfLbrK3WnMDKkn9wTdcvojLV2KFncWQF
                    
114pqejdB4a+rbWH086Pvf65hXB+5FGlTGNlX/0y+Hl6IoJBlUI5uXPQ3Z/z2sdoRz255ComQRq9sAd
                    
                
iclear_wsdl.php https://github.com/tisoft/xtcmodified.git | PHP | 347 lines
                    
1<?php
                    
2// $Id: iclear_wsdl.php,v 1.1 2007/03/18 19:51:15 dis Exp $
                    
35
                    
36// some installation come with php5 SOAP extension
                    
37include(DIR_FS_CATALOG . 'includes/iclear/nusoap.php');
                    
37include(DIR_FS_CATALOG . 'includes/iclear/nusoap.php');
                    
38require(DIR_FS_CATALOG . 'includes/iclear/iclear_error.php');
                    
39
                    
96    if($type) {
                    
97// check if we're working with nusoap or the PHP extension and setup options
                    
98      switch($type) {
                    
191// here the basket processing goes
                    
192      $this->basketID = md5(microtime() . $this->sessionID);
                    
193    }
                    
275    } else {
                    
276      $res = $this->proxy->sendOrderS2S($this->requestID, $userAddrID, $this->shopID, md5(time()), $currence, $basket, $this->sessionID);
                    
277      if(!$this->isError()) {
                    
                
users.php https://gitlab.com/kidaa/quantum.git | PHP | 200 lines
                    
1<?php
                    
2namespace A;
                    
68        if (isset($_POST['chp']) && isset($_POST['pass'])) {
                    
69            $query = ", `password`='" . md5(md5($_POST['pass'])) . "'";
                    
70        }
                    
88        $_SESSION['msg'] = 'success';
                    
89        $this->engine->url->redirect(PRTCL . "://" . $this->engine->host . ADM_PATH . "index.php?page=users&view=tiny&id=" .
                    
90            $this->engine->db->getLastId());
                    
172                'caption'   => $this->language['users'],
                    
173                'link'      => 'index.php?page=users'
                    
174            );
                    
                
mail.php https://bitbucket.org/learn1thing/learn1thing.git | PHP | 427 lines
                    
103		$header .= 'Return-Path: ' . $this->from . PHP_EOL;
                    
104		$header .= 'X-Mailer: PHP/' . phpversion() . PHP_EOL;
                    
105		$header .= 'Content-Type: multipart/related; boundary="' . $boundary . '"' . PHP_EOL . PHP_EOL;
                    
113			$message  = '--' . $boundary . PHP_EOL;
                    
114			$message .= 'Content-Type: multipart/alternative; boundary="' . $boundary . '_alt"' . PHP_EOL . PHP_EOL;
                    
115			$message .= '--' . $boundary . '_alt' . PHP_EOL;
                    
116			$message .= 'Content-Type: text/plain; charset="utf-8"' . PHP_EOL;
                    
117			$message .= 'Content-Transfer-Encoding: 8bit' . PHP_EOL . PHP_EOL;
                    
118
                    
126			$message .= 'Content-Type: text/html; charset="utf-8"' . PHP_EOL;
                    
127			$message .= 'Content-Transfer-Encoding: 8bit' . PHP_EOL . PHP_EOL;
                    
128			$message .= $this->html . PHP_EOL;
                    
144				$message .= 'Content-ID: <' . basename(urlencode($attachment)) . '>' . PHP_EOL;
                    
145				$message .= 'X-Attachment-Id: ' . basename(urlencode($attachment)) . PHP_EOL . PHP_EOL;
                    
146				$message .= chunk_split(base64_encode($content));
                    
                
wp-background-process.php https://bitbucket.org/rhiana/calebs.git | PHP | 500 lines
                    
1<?php
                    
2if ( ! defined( 'ABSPATH' ) ) {
                    
145	protected function generate_key( $length = 64 ) {
                    
146		$unique  = md5( microtime() . rand() );
                    
147		$prepend = $this->identifier . '_batch_';
                    
                
Session.php https://github.com/petrvacha/ART-MACHINE.git | PHP | 555 lines
                    
1<?php
                    
2
                    
33		// security
                    
34		'referer_check' => '',    // must be disabled because PHP implementation is invalid
                    
35		'use_cookies' => 1,       // must be enabled to prevent NSession Hijacking and Fixation
                    
49		'cache_expire' => NULL,   // (default "180")
                    
50		'hash_function' => NULL,  // (default "0", means MD5)
                    
51		'hash_bits_per_character' => NULL, // (default "4")
                    
                
 

Source

Language