Home
last modified time | relevance | path

Searched refs:hash (Results 101 – 125 of 159) sorted by relevance

1234567

/PHP-5.5/ext/session/
H A Dconfig.m415 PHP_ADD_EXTENSION_DEP(session, hash, true)
/PHP-5.5/ext/soap/
H A Dphp_http.c641 unsigned char hash[16]; in make_http_soap_request() local
646 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
647 make_digest(cnonce, hash); in make_http_soap_request()
670 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
671 make_digest(HA1, hash); in make_http_soap_request()
685 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
686 make_digest(HA1, hash); in make_http_soap_request()
711 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
712 make_digest(HA2, hash); in make_http_soap_request()
733 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Dcompact_variation1.phpt6 * Description: Creates a hash containing variables and their values
H A Dcompact_basic.phpt6 * Description: Creates a hash containing variables and their values
/PHP-5.5/ext/phar/tests/tar/
H A Drequire_hash.phpt52 ["hash"]=>
/PHP-5.5/ext/pdo_mysql/tests/
H A Dbug_33689.phpt29 // libmysql and mysqlnd will show the pdo_type entry at a different position in the hash
/PHP-5.5/ext/phar/
H A Dconfig.w3242 WARNING('Phar: sha256/sha512 signature support disabled if ext/hash is built shared');
/PHP-5.5/ext/openssl/tests/
H A Dopenssl_x509_parse_basic_v9.phpt31 ["hash"]=>
162 ["hash"]=>
H A Dopenssl_x509_parse_basic.phpt31 ["hash"]=>
177 ["hash"]=>
/PHP-5.5/Zend/
H A Dzend_ts_hash.h27 HashTable hash; member
37 #define TS_HASH(table) (&(table->hash))
H A Dmicro_bench.php192 $hash = array('test' => 0);
194 $x = $hash['test'];
/PHP-5.5/ext/standard/tests/strings/
H A Dsha1_basic.phpt7 * Description: Calculate the sha1 hash of a string
H A Dsha1_variation1.phpt7 * Description: Calculate the sha1 hash of a string
H A Dsha1_variation2.phpt7 * Description: Calculate the sha1 hash of a string
/PHP-5.5/ext/hash/
H A Dphp_hash.h120 PHP_FUNCTION(hash);
/PHP-5.5/tests/lang/
H A D031.phpt2 Bug #16227 (Internal hash position bug on assignment)
/PHP-5.5/ext/standard/tests/mail/
H A Dezmlm_hash_error.phpt6 * Description: Calculate the hash value needed by EZMLM.
/PHP-5.5/ext/hash/tests/
H A Dfnv132.phpt4 <?php extension_loaded('hash') or die ('Skip - hash extension not available'); ?>
189 $result = hash('fnv132', $test[0]);
H A Dfnv164.phpt4 <?php extension_loaded('hash') or die ('Skip - hash extension not available'); ?>
189 $result = hash('fnv164', $test[0]);
/PHP-5.5/ext/oci8/tests/
H A Dpassword.phpt32 // Second connect should return a new resource because the hash string will be different from $c1
H A Dpassword_2.phpt31 // Second connect should return a new resource because the hash string will be different from $c1
/PHP-5.5/ext/standard/
H A Dbasic_functions.c1869 ZEND_ARG_INFO(0, hash)
1872 ZEND_ARG_INFO(0, hash)
1878 ZEND_ARG_INFO(0, hash)
5909 ALLOC_ZVAL(hash);
5910 INIT_PZVAL(hash);
5911 array_init(hash);
5919 ALLOC_ZVAL(hash);
5920 INIT_PZVAL(hash);
5930 zval_dtor(hash);
5931 INIT_PZVAL(hash);
[all …]
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c304 HashTable *hash; in really_register_bound_param() local
307 hash = is_param ? stmt->bound_params : stmt->bound_columns; in really_register_bound_param()
309 if (!hash) { in really_register_bound_param()
310 ALLOC_HASHTABLE(hash); in really_register_bound_param()
311 zend_hash_init(hash, 13, NULL, param_dtor, 0); in really_register_bound_param()
314 stmt->bound_params = hash; in really_register_bound_param()
316 stmt->bound_columns = hash; in really_register_bound_param()
400 zend_hash_index_del(hash, param->paramno); in really_register_bound_param()
405 zend_hash_update(hash, param->name, param->namelen, param, in really_register_bound_param()
419 zend_hash_del(hash, pparam->name, pparam->namelen); in really_register_bound_param()
[all …]
/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c1383 HashTable *hash; local
1384 hash = stmt->bound_params;
1386 if (!hash) {
1387 ALLOC_HASHTABLE(hash);
1388 zend_hash_init(hash, 13, NULL, sqlite3_param_dtor, 0);
1389 stmt->bound_params = hash;
1413 zend_hash_index_del(hash, param->param_number);
1417 zend_hash_update(hash, param->name, param->name_len, param, sizeof(*param), NULL);
1419 zend_hash_index_update(hash, param->param_number, param, sizeof(*param), NULL);
/PHP-5.5/ext/mbstring/oniguruma/
H A DREADME129 st.h hash table functions header file
130 st.c hash table functions

Completed in 61 milliseconds

1234567