algo               89 ext/hash/hash.c PHP_HASH_API const php_hash_ops *php_hash_fetch_ops(const char *algo, size_t algo_len) /* {{{ */
algo               91 ext/hash/hash.c 	char *lower = zend_str_tolower_dup(algo, algo_len);
algo               99 ext/hash/hash.c PHP_HASH_API void php_hash_register_algo(const char *algo, const php_hash_ops *ops) /* {{{ */
algo              101 ext/hash/hash.c 	size_t algo_len = strlen(algo);
algo              102 ext/hash/hash.c 	char *lower = zend_str_tolower_dup(algo, algo_len);
algo              122 ext/hash/hash.c 	char *algo, *data;
algo              129 ext/hash/hash.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss|b", &algo, &algo_len, &data, &data_len, &raw_output) == FAILURE) {
algo              133 ext/hash/hash.c 	ops = php_hash_fetch_ops(algo, algo_len);
algo              135 ext/hash/hash.c 		php_error_docref(NULL, E_WARNING, "Unknown hashing algorithm: %s", algo);
algo              239 ext/hash/hash.c 	char *algo, *data, *key;
algo              247 ext/hash/hash.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sss|b", &algo, &algo_len, &data, &data_len,
algo              252 ext/hash/hash.c 	ops = php_hash_fetch_ops(algo, algo_len);
algo              254 ext/hash/hash.c 		php_error_docref(NULL, E_WARNING, "Unknown hashing algorithm: %s", algo);
algo              336 ext/hash/hash.c 	char *algo, *key = NULL;
algo              344 ext/hash/hash.c 	if (zend_parse_parameters(argc, "s|ls", &algo, &algo_len, &options, &key, &key_len) == FAILURE) {
algo              348 ext/hash/hash.c 	ops = php_hash_fetch_ops(algo, algo_len);
algo              350 ext/hash/hash.c 		php_error_docref(NULL, E_WARNING, "Unknown hashing algorithm: %s", algo);
algo              612 ext/hash/hash.c 	char *algo, *salt, *pass = NULL;
algo              620 ext/hash/hash.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sssl|lb", &algo, &algo_len, &pass, &pass_len, &salt, &salt_len, &iterations, &length, &raw_output) == FAILURE) {
algo              624 ext/hash/hash.c 	ops = php_hash_fetch_ops(algo, algo_len);
algo              626 ext/hash/hash.c 		php_error_docref(NULL, E_WARNING, "Unknown hashing algorithm: %s", algo);
algo             1133 ext/hash/hash.c 	ZEND_ARG_INFO(0, algo)
algo             1139 ext/hash/hash.c 	ZEND_ARG_INFO(0, algo)
algo             1145 ext/hash/hash.c 	ZEND_ARG_INFO(0, algo)
algo             1152 ext/hash/hash.c 	ZEND_ARG_INFO(0, algo)
algo             1159 ext/hash/hash.c 	ZEND_ARG_INFO(0, algo)
algo             1194 ext/hash/hash.c 	ZEND_ARG_INFO(0, algo)
algo              142 ext/hash/php_hash.h PHP_HASH_API const php_hash_ops *php_hash_fetch_ops(const char *algo, size_t algo_len);
algo              143 ext/hash/php_hash.h PHP_HASH_API void php_hash_register_algo(const char *algo, const php_hash_ops *ops);
algo              419 ext/openssl/openssl.c 	ZEND_ARG_INFO(0, algo)
algo              878 ext/openssl/openssl.c static const EVP_CIPHER * php_openssl_get_evp_cipher_from_algo(zend_long algo);
algo             1059 ext/openssl/openssl.c static EVP_MD * php_openssl_get_evp_md_from_algo(zend_long algo) { /* {{{ */
algo             1062 ext/openssl/openssl.c 	switch (algo) {
algo             1105 ext/openssl/openssl.c static const EVP_CIPHER * php_openssl_get_evp_cipher_from_algo(zend_long algo) { /* {{{ */
algo             1106 ext/openssl/openssl.c 	switch (algo) {
algo             1504 ext/openssl/openssl.c 	zend_long algo = OPENSSL_ALGO_MD5;
algo             1526 ext/openssl/openssl.c 			algo = Z_LVAL_P(method);
algo             1532 ext/openssl/openssl.c 	mdtype = php_openssl_get_evp_md_from_algo(algo);
algo             2991 ext/phar/phar_object.c 	zend_long algo;
algo             3003 ext/phar/phar_object.c 	if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS(), "l|s", &algo, &key, &key_len) != SUCCESS) {
algo             3007 ext/phar/phar_object.c 	switch (algo) {
algo             3022 ext/phar/phar_object.c 			phar_obj->archive->sig_flags = algo;
algo             1835 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, algo)
algo             1843 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, algo)
algo               50 ext/standard/password.c static char* php_password_get_algo_name(const php_password_algo algo)
algo               52 ext/standard/password.c 	switch (algo) {
algo              149 ext/standard/password.c 	php_password_algo algo;
algo              160 ext/standard/password.c 	algo = php_password_determine_algo(hash, (size_t) hash_len);
algo              161 ext/standard/password.c 	algo_name = php_password_get_algo_name(algo);
algo              163 ext/standard/password.c 	switch (algo) {
algo              178 ext/standard/password.c 	add_assoc_long(return_value, "algo", algo);
algo              186 ext/standard/password.c 	php_password_algo algo;
algo              196 ext/standard/password.c 	algo = php_password_determine_algo(hash, (size_t) hash_len);
algo              198 ext/standard/password.c 	if (algo != new_algo) {
algo              202 ext/standard/password.c 	switch (algo) {
algo              265 ext/standard/password.c 	zend_long algo = 0;
algo              273 ext/standard/password.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sl|H", &password, &password_len, &algo, &options) == FAILURE) {
algo              277 ext/standard/password.c 	switch (algo) {
algo              298 ext/standard/password.c 			php_error_docref(NULL, E_WARNING, "Unknown password hashing algorithm: " ZEND_LONG_FMT, algo);