/PHP-5.4/ext/hash/tests/ |
H A D | haval.phpt | 10 $algo = sprintf('haval%d,%d',$bits,$pass); 11 echo $algo . ': ' . hash($algo,'') . "\n"; 17 $algo = sprintf('haval%d,%d',$bits,$pass); 18 echo $algo . ': ' . hash($algo,'abc') . "\n"; 24 $algo = sprintf('haval%d,%d',$bits,$pass); 25 …echo $algo . ': ' . hash($algo,'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMOPQRSTUVWXYZ0123456789abcde…
|
H A D | mhash_004.phpt | 10 $algo = MHASH_MD5; 11 var_dump($algo); 12 var_dump(bin2hex(mhash($algo, "test"))); 13 var_dump($algo);
|
H A D | hash_copy_001.phpt | 10 foreach ($algos as $algo) { 11 var_dump($algo); 12 $orig = hash_init($algo); 20 foreach ($algos as $algo) { 21 var_dump($algo); 22 $orig = hash_init($algo);
|
H A D | hash_file_basic.phpt | 9 /* Prototype : string hash_file(string algo, string filename[, bool raw_output = false])
|
H A D | hash_error.phpt | 8 /* Prototype : string hash ( string $algo , string $data [, bool $raw_output ] )
|
H A D | hash_hmac_error.phpt | 8 * proto string hash_hmac ( string algo, string data, string key [, bool raw_output] )
|
H A D | hash_file_error.phpt | 9 /* Prototype : string hash_file(string algo, string filename[, bool raw_output = false])
|
H A D | hash_hmac_file_error.phpt | 8 /* Prototype : string hash_hmac_file ( string algo, string filename, string key [, bool raw_output…
|
H A D | hash_file_basic1.phpt | 8 /* Prototype : string hash_file ( string algo, string filename [, bool raw_output] )
|
H A D | hash_hmac_basic.phpt | 8 /* Prototype : string hash_hmac ( string $algo , string $data , string $key [, bool $raw_outpu…
|
H A D | hash_hmac_file_basic.phpt | 9 /* Prototype : string hash_hmac_file ( string algo, string filename, string key [, bool raw_output…
|
/PHP-5.4/ext/hash/ |
H A D | bench.php | 79 foreach (hash_algos() as $algo) { 82 hash($algo, $data); 84 $time[$algo] += microtime(true)-$start;
|
H A D | hash.c | 91 char *lower = estrndup(algo, algo_len); in php_hash_fetch_ops() 105 int algo_len = strlen(algo); in php_hash_register_algo() 106 char *lower = estrndup(algo, algo_len); in php_hash_register_algo() 127 char *algo, *data, *digest; in php_hash_do_hash() local 208 char *algo, *data, *digest, *key, *K; in php_hash_do_hash_hmac() local 327 char *algo, *key = NULL; in PHP_FUNCTION() local 951 ZEND_ARG_INFO(0, algo) 957 ZEND_ARG_INFO(0, algo) 963 ZEND_ARG_INFO(0, algo) 970 ZEND_ARG_INFO(0, algo) [all …]
|
H A D | php_hash.h | 131 PHP_HASH_API const php_hash_ops *php_hash_fetch_ops(const char *algo, int algo_len); 132 PHP_HASH_API void php_hash_register_algo(const char *algo, const php_hash_ops *ops);
|
/PHP-5.4/ext/mcrypt/tests/ |
H A D | mcrypt_list_algorithms.phpt | 7 foreach (mcrypt_list_algorithms() as $algo) { 8 if (in_array($algo, array('rijndael-256', 'des', 'blowfish', 'twofish'))) {
|
/PHP-5.4/ext/openssl/ |
H A D | openssl.c | 796 static const EVP_CIPHER * php_openssl_get_evp_cipher_from_algo(long algo); 958 static EVP_MD * php_openssl_get_evp_md_from_algo(long algo) { /* {{{ */ in php_openssl_get_evp_md_from_algo() argument 961 switch (algo) { in php_openssl_get_evp_md_from_algo() 1004 static const EVP_CIPHER * php_openssl_get_evp_cipher_from_algo(long algo) { /* {{{ */ in php_openssl_get_evp_cipher_from_algo() argument 1005 switch (algo) { in php_openssl_get_evp_cipher_from_algo()
|
/PHP-5.4/ext/phar/ |
H A D | phar_object.c | 3110 long algo; local 3122 …if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "l|s", &algo, &ke… 3126 switch (algo) { 3141 phar_obj->arc.archive->sig_flags = algo;
|
/PHP-5.4/ext/phar/phar/ |
H A D | pharcommand.inc | 74 'inf' => '<algo> Compression algorithm.',
|
/PHP-5.4/ |
H A D | NEWS | 610 . Fixed bug #66833 (Default disgest algo is still MD5, switch to SHA1). (Remi)
|