Searched refs:key_length (Results 1 – 4 of 4) sorted by relevance
/PHP-8.1/ext/openssl/ |
H A D | openssl.stub.php | 130 function openssl_pbkdf2(string $password, string $salt, int $key_length, int $iterations, string $d… argument 249 function openssl_pkey_derive($public_key, $private_key, int $key_length = 0): string|false {} argument
|
H A D | openssl_arginfo.h | 156 ZEND_ARG_TYPE_INFO(0, key_length, IS_LONG, 0) 361 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, key_length, IS_LONG, 0, "0")
|
H A D | openssl.c | 5225 zend_long key_length = 0, iterations = 0; in PHP_FUNCTION() local 5239 &key_length, &iterations, in PHP_FUNCTION() 5246 PHP_OPENSSL_CHECK_LONG_TO_INT(key_length, key, 3); in PHP_FUNCTION() 5249 if (key_length <= 0) { in PHP_FUNCTION() 5265 out_buffer = zend_string_alloc(key_length, 0); in PHP_FUNCTION() 5267 …n, (unsigned char *)salt, (int)salt_len, (int)iterations, digest, (int)key_length, (unsigned char*… in PHP_FUNCTION() 5268 ZSTR_VAL(out_buffer)[key_length] = 0; in PHP_FUNCTION()
|
/PHP-8.1/ext/opcache/ |
H A D | ZendAccelerator.c | 1156 int key_length; in accel_make_persistent_key() local 1280 key_length = path_length + 1; in accel_make_persistent_key() 1282 key_length += cwd_len; in accel_make_persistent_key() 1285 key[key_length] = ':'; in accel_make_persistent_key() 1286 key_length += 1; in accel_make_persistent_key() 1288 key_length += include_path_len; in accel_make_persistent_key() 1304 key[key_length] = ':'; in accel_make_persistent_key() 1305 key_length += 1; in accel_make_persistent_key() 1307 key_length += parent_script_len; in accel_make_persistent_key() 1309 key[key_length] = '\0'; in accel_make_persistent_key() [all …]
|
Completed in 30 milliseconds