Home
last modified time | relevance | path

Searched refs:hash (Results 51 – 75 of 159) sorted by relevance

1234567

/PHP-5.5/ext/hash/tests/
H A Dhaval.phpt4 <?php if(!extension_loaded("hash")) print "skip"; ?>
11 echo $algo . ': ' . hash($algo,'') . "\n";
18 echo $algo . ': ' . hash($algo,'abc') . "\n";
25 …echo $algo . ': ' . hash($algo,'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMOPQRSTUVWXYZ0123456789abcde…
H A Dhash_file_basic1.phpt4 <?php extension_loaded('hash') or die('skip: hash extension not loaded.'); ?>
9 * Description: Generate a hash value using the contents of a given file
10 * Source code: ext/hash/hash.c
H A Dhash_hmac_basic.phpt4 <?php extension_loaded('hash') or die('skip: hash extension not loaded.'); ?>
9 * Description: Generate a keyed hash value using the HMAC method
10 * Source code: ext/hash/hash.c
H A Dhash_pbkdf2_error.phpt4 <?php extension_loaded('hash') or die('skip: hash extension not loaded.'); ?>
9 Generate a PBKDF2 hash of the given password and salt
31 echo "\n-- Testing hash_pbkdf2() function with invalid hash algorithm --\n";
64 -- Testing hash_pbkdf2() function with invalid hash algorithm --
H A Dhash_hmac_file_basic.phpt4 <?php extension_loaded('hash') or die('skip: hash extension not loaded.'); ?>
10 * Description: Generate a keyed hash value using the HMAC method and the contents of a given file
11 * Source code: ext/hash/hash.c
H A Dbug52240.phpt4 <?php extension_loaded('hash') or die('skip'); ?>
/PHP-5.5/ext/intl/collator/
H A Dcollator_convert.h24 void collator_convert_hash_from_utf8_to_utf16( HashTable* hash, UErrorCode* status );
25 void collator_convert_hash_from_utf16_to_utf8( HashTable* hash, UErrorCode* status );
/PHP-5.5/ext/phar/tests/cache_list/
H A Dcopyonwrite12.phar.phpt13 ["hash"]=>
19 ["hash"]=>
/PHP-5.5/ext/phar/tests/
H A Dphar_get_supported_signatures_001.phpt6 if (extension_loaded("hash")) die("skip extension hash conflicts");
H A Dphar_get_supported_signatures_001a.phpt6 if (extension_loaded("hash")) die("skip extension hash conflicts");
H A Dtest_signaturealgos.phpt6 if (!extension_loaded("hash")) die("skip extension hash conflicts");
9 if (!in_array('SHA-256', $arr)) die("skip hash extension loaded shared");
H A D032.phpt2 Phar: require hash
/PHP-5.5/ext/spl/tests/
H A Diterator_057.phpt8 * From Docs: Construct a new array iterator from anything that has a hash table.
9 * NULL, NOTHING is not a hash table ;)
/PHP-5.5/ext/session/tests/
H A D031.phpt5 <?php if (!extension_loaded('hash')) die('skip hash extension not available'); ?>
/PHP-5.5/ext/oci8/
H A Doci8_statement.c1510 HashTable *hash; in php_oci_bind_array_helper_string() local
1513 hash = HASH_OF(var); in php_oci_bind_array_helper_string()
1522 zend_hash_move_forward(hash); in php_oci_bind_array_helper_string()
1546 zend_hash_move_forward(hash); in php_oci_bind_array_helper_string()
1563 zend_hash_move_forward(hash); in php_oci_bind_array_helper_string()
1579 HashTable *hash; in php_oci_bind_array_helper_number() local
1582 hash = HASH_OF(var); in php_oci_bind_array_helper_number()
1617 HashTable *hash; in php_oci_bind_array_helper_double() local
1620 hash = HASH_OF(var); in php_oci_bind_array_helper_double()
1655 HashTable *hash; in php_oci_bind_array_helper_date() local
[all …]
/PHP-5.5/ext/ereg/regex/
H A Dregex2.h91 uch hash; /* hash code */ member
96 #define CHadd(cs, c) ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c))
97 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c))
/PHP-5.5/ext/phar/
H A Dconfig.m415 AC_MSG_WARN([Phar: sha256/sha512 signature support disabled if ext/hash is built shared])
27 PHP_ADD_EXTENSION_DEP(phar, hash, true)
/PHP-5.5/ext/hash/
H A DCREDITS1 PHP hash
H A Dbench.php82 hash($algo, $data);
/PHP-5.5/ext/standard/html_tables/
H A Dhtml_table_gen.php729 $hash = 5381;
734 $hash = (int)(((int)(((int)($hash << 5)) + $hash)) + ord($str[$pos++]))
737 return $hash;
/PHP-5.5/TSRM/
H A DTODO2 This can probably be done by more careful hash table access
/PHP-5.5/ext/standard/
H A Dcrypt_freesec.c747 char *hash; member
794 for (i = 0; tests[i].hash; i++) { in main()
795 char *hash = crypt(tests[i].pw, tests[i].hash); in main() local
796 if (!hash && strlen(tests[i].hash) < 13) in main()
798 if (!strcmp(hash, tests[i].hash)) in main()
H A Darray.c1741 HashTable *hash; in php_array_data_shuffle() local
1768 hash->pListTail = NULL; in php_array_data_shuffle()
1769 hash->pInternalPointer = hash->pListHead; in php_array_data_shuffle()
1772 if (hash->pListTail) { in php_array_data_shuffle()
1779 temp = hash->pListHead; in php_array_data_shuffle()
1787 zend_hash_rehash(hash); in php_array_data_shuffle()
3037 HashTable *hash; in php_array_intersect() local
3455 HashTable *hash; in php_array_diff() local
3827 HashTable* hash; in PHP_FUNCTION() local
3962 hash->pInternalPointer = hash->pListHead; in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dmd5_basic1.phpt6 * Description: Calculate the md5 hash of a string
/PHP-5.5/ext/dba/libcdb/
H A Dcdb_make.h49 struct cdb_hp *hash; member

Completed in 63 milliseconds

1234567