Home
last modified time | relevance | path

Searched refs:hash (Results 126 – 150 of 199) sorted by relevance

12345678

/PHP-7.2/ext/standard/tests/array/
H A Dcompact_variation2.phpt6 * Description: Creates a hash containing variables and their values
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-7.2/ext/standard/tests/strings/
H A Dsha1_error.phpt8 * Description: Calculate the sha1 hash of a string
H A Dmd5_error.phpt6 * Description: Calculate the md5 hash of a string
H A Dsha1_basic.phpt7 * Description: Calculate the sha1 hash of a string
/PHP-7.2/ext/mbstring/oniguruma/src/
H A Dst.h21 int (*hash)(); member
/PHP-7.2/ext/hash/tests/
H A Dsha3.phpt4 <?php if(!extension_loaded("hash")) print "skip"; ?>
22 echo $bits, ': ', hash("sha3-$bits", $subject), "\n";
H A Dhash_hkdf_rfc5869.phpt4 <?php extension_loaded('hash') or die('skip: hash extension not loaded.'); ?>
10 * Source code: ext/hash/hash.c
/PHP-7.2/ext/phar/phar/
H A Dpharcommand.inc412 * Check whether hash method is valid.
416 function phar_check_hash($hash, $privkey)
418 switch($hash) {
565 $hash = $this->args['h']['val'];
574 $hash = self::phar_check_hash($hash, $privkey);
606 if ($hash) {
1195 $hash = $this->args['h']['val'];
1198 $hash = self::phar_check_hash($hash, $privkey);
1461 $hash = $phar->getSignature();
1468 if (!$hash) {
[all …]
/PHP-7.2/ext/openssl/tests/
H A Dopenssl.cnf44 subjectKeyIdentifier=hash
H A Dopenssl_x509_parse_basic.phpt32 ["hash"]=>
180 ["hash"]=>
/PHP-7.2/ext/zip/lib/
H A Dzipint.h536 bool _zip_hash_add(zip_hash_t *hash, const zip_uint8_t *name, zip_uint64_t index, zip_flags_t flags…
537 bool _zip_hash_delete(zip_hash_t *hash, const zip_uint8_t *key, zip_error_t *error);
538 void _zip_hash_free(zip_hash_t *hash);
539 zip_int64_t _zip_hash_lookup(zip_hash_t *hash, const zip_uint8_t *name, zip_flags_t flags, zip_erro…
541 void _zip_hash_revert(zip_hash_t *hash);
/PHP-7.2/ext/sodium/tests/
H A Dcrypto_generichash.phpt44 $hash = sodium_crypto_generichash('test', '', 128);
/PHP-7.2/ext/soap/
H A Dphp_http.c670 unsigned char hash[16]; in make_http_soap_request() local
678 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
679 make_digest(cnonce, hash); in make_http_soap_request()
702 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
703 make_digest(HA1, hash); in make_http_soap_request()
717 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
718 make_digest(HA1, hash); in make_http_soap_request()
733 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
734 make_digest(HA2, hash); in make_http_soap_request()
755 PHP_MD5Final(hash, &md5ctx); in make_http_soap_request()
[all …]
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_bp.c790 zend_ulong hash = zend_hash_func(name, name_len); in phpdbg_set_breakpoint_opcode() local
792 if (zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_OPCODE], hash)) { in phpdbg_set_breakpoint_opcode()
798 new_break.hash = hash; in phpdbg_set_breakpoint_opcode()
801 …zend_hash_index_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_OPCODE], hash, &new_break, sizeof(phpdbg_bre… in phpdbg_set_breakpoint_opcode()
829 … *brake, const phpdbg_param_t *param, const char *expr, size_t expr_len, zend_ulong hash) /* {{{ */ in phpdbg_create_conditional_break() argument
851 new_break.hash = hash; in phpdbg_create_conditional_break()
894 …brake = zend_hash_index_update_mem(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], hash, &new_break, sizeof(phpd… in phpdbg_create_conditional_break()
926 zend_ulong hash = 0L; in phpdbg_set_breakpoint_at() local
930 hash = zend_inline_hash_func(condition->str, condition->len); in phpdbg_set_breakpoint_at()
932 if (!zend_hash_index_exists(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], hash)) { in phpdbg_set_breakpoint_at()
[all …]
/PHP-7.2/ext/opcache/
H A DZendAccelerator.c1219 persistent_script = zend_accel_hash_find(&ZCSG(hash), realpath); in zend_accel_invalidate()
1239 zend_accel_hash_is_full(&ZCSG(hash)) ? ACCEL_RESTART_HASH : ACCEL_RESTART_OOM; in zend_accel_invalidate()
1258 if (!zend_accel_hash_str_find(&ZCSG(hash), key, key_length)) { in zend_accel_add_key()
1259 if (zend_accel_hash_is_full(&ZCSG(hash))) { in zend_accel_add_key()
1267 if (zend_accel_hash_update(&ZCSG(hash), new_key, key_length, 1, bucket)) { in zend_accel_add_key()
1383 if (zend_accel_hash_is_full(&ZCSG(hash))) { in cache_script_in_shared_memory()
1459 if (zend_accel_hash_update(&ZCSG(hash), key, key_length, 1, bucket)) { in cache_script_in_shared_memory()
1855 persistent_script = zend_accel_hash_str_find(&ZCSG(hash), key, key_length); in persistent_compile_file()
1879 bucket = zend_accel_hash_find_entry(&ZCSG(hash), file_handle->opened_path); in persistent_compile_file()
2317 zend_accel_hash_clean(&ZCSG(hash)); in accel_activate()
[all …]
/PHP-7.2/ext/phar/tests/tar/
H A Drequire_hash.phpt52 ["hash"]=>
/PHP-7.2/ext/session/
H A Dconfig.m415 PHP_ADD_EXTENSION_DEP(session, hash, true)
/PHP-7.2/ext/opcache/tests/
H A Dcompact_literals.phpt12 echo "array key hash" . ":" . PHP_EOL;
162 array key hash:
/PHP-7.2/Zend/
H A Dzend_ts_hash.h27 HashTable hash; member
37 #define TS_HASH(table) (&(table->hash))
/PHP-7.2/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-7.2/ext/phar/
H A Dconfig.w3242 WARNING('Phar: sha256/sha512 signature support disabled if ext/hash is built shared');
/PHP-7.2/ext/hash/
H A Dphp_hash.h137 PHP_FUNCTION(hash);
/PHP-7.2/tests/lang/
H A D031.phpt2 Bug #16227 (Internal hash position bug on assignment)

Completed in 56 milliseconds

12345678