Searched defs:algo (Results 1 – 9 of 9) sorted by relevance
/PHP-8.0/ext/hash/ |
H A D | hash.stub.php | 5 function hash(string $algo, string $data, bool $binary = false): string {} 7 function hash_file(string $algo, string $filename, bool $binary = false): string|false {} 9 function hash_hmac(string $algo, string $data, string $key, bool $binary = false): string {} 11 function hash_hmac_file(string $algo, string $filename, string $key, bool $binary = false): string|… 13 function hash_init(string $algo, int $flags = 0, string $key = ""): HashContext {} 31 function hash_pbkdf2(string $algo, string $password, string $salt, int $iterations, int $length = 0… 35 function hash_hkdf(string $algo, string $key, int $length = 0, string $info = "", string $salt = ""… 38 function mhash_get_block_size(int $algo): int|false {} 40 function mhash_get_hash_name(int $algo): string|false {} 42 function mhash_keygen_s2k(int $algo, string $password, string $salt, int $length): string|false {} [all …]
|
H A D | hash.c | 98 PHP_HASH_API const php_hash_ops *php_hash_fetch_ops(zend_string *algo) /* {{{ */ in php_hash_fetch_ops() 108 PHP_HASH_API void php_hash_register_algo(const char *algo, const php_hash_ops *ops) /* {{{ */ in php_hash_register_algo() 352 …zval *return_value, zend_string *algo, char *data, size_t data_len, zend_bool raw_output, bool isf… in php_hash_do_hash() 417 zend_string *algo; in PHP_FUNCTION() local 437 zend_string *algo; in PHP_FUNCTION() local 570 zend_string *algo; in PHP_FUNCTION() local 587 zend_string *algo; in PHP_FUNCTION() local 603 zend_string *algo, *key = NULL; in PHP_FUNCTION() local 882 zend_string *returnval, *ikm, *algo, *info = NULL, *salt = NULL; in PHP_FUNCTION() local 975 zend_string *returnval, *algo; in PHP_FUNCTION() local [all …]
|
H A D | php_hash.h | 42 const char *algo; member
|
/PHP-8.0/ext/standard/ |
H A D | password.c | 40 int php_password_algo_register(const char *ident, const php_password_algo *algo) { in php_password_algo_register() 541 const php_password_algo *algo; in php_password_algo_identify_ex() local 556 const php_password_algo *algo; in PHP_FUNCTION() local 627 const php_password_algo *algo; in PHP_FUNCTION() local 646 const php_password_algo *algo; in PHP_FUNCTION() local 676 zend_string *algo; in PHP_FUNCTION() local
|
H A D | basic_functions.stub.php | 1137 function password_hash(string $password, string|int|null $algo, array $options = []): string {} 1139 function password_needs_rehash(string $hash, string|int|null $algo, array $options = []): bool {}
|
/PHP-8.0/ext/phar/ |
H A D | phar_object.stub.php | 134 public function setSignatureAlgorithm(int $algo, ?string $privateKey = null) {} 410 public function setSignatureAlgorithm(int $algo, ?string $privateKey = null) {}
|
H A D | phar_object.c | 3010 zend_long algo; in PHP_METHOD() local
|
/PHP-8.0/ext/sodium/ |
H A D | libsodium.stub.php | 88 … $length, string $password, string $salt, int $opslimit, int $memlimit, int $algo = SODIUM_CRYPTO_…
|
/PHP-8.0/ext/openssl/ |
H A D | openssl.c | 1101 static EVP_MD * php_openssl_get_evp_md_from_algo(zend_long algo) { /* {{{ */ in php_openssl_get_evp_md_from_algo() 1151 static const EVP_CIPHER * php_openssl_get_evp_cipher_from_algo(zend_long algo) { /* {{{ */ in php_openssl_get_evp_cipher_from_algo() 1651 zend_long algo = OPENSSL_ALGO_MD5; in PHP_FUNCTION() local
|
Completed in 54 milliseconds