Home
last modified time | relevance | path

Searched refs:key (Results 226 – 250 of 1053) sorted by relevance

12345678910>>...43

/PHP-7.4/ext/openssl/tests/
H A Dopenssl_sign_basic.phpt8 $privkey = "file://" . __DIR__ . "/private_rsa_1024.key";
18 Warning: openssl_sign(): supplied key param cannot be coerced into a private key in %s on line %d
H A Dopenssl_decrypt_ocb.phpt18 $pt = openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
24 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
28 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
32 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
36 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
H A Dbug36732.phpt23 $key = openssl_pkey_new();
24 $csr = openssl_csr_new($dn, $key, $configargs);
25 $crt = openssl_csr_sign($csr, NULL, $key, 365, $configargs);
H A Dopenssl_open_basic.phpt8 $pub_key = "file://" . __DIR__ . "/public.key";
9 $priv_key = "file://" . __DIR__ . "/private_rsa_1024.key";
25 Warning: openssl_open(): unable to coerce parameter 4 into a private key in %s on line %d
/PHP-7.4/tests/lang/
H A DforeachLoopObjects.001.phpt2 Foreach loop on objects - basic loop with just value and key => value.
23 echo "\nCheck key and value after the loop.\n";
34 echo "\nCheck key and value after the loop.\n";
49 Check key and value after the loop.
65 Check key and value after the loop.
H A DforeachLoop.017.phpt6 foreach ($a as $val=>$key) echo $key;
/PHP-7.4/ext/spl/tests/
H A Dbug32394.phpt9 foreach($object as $key => $value)
11 $object->offsetUnset($key);
H A Diterator_010.phpt8 foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
10 echo "$key=>$val\n";
/PHP-7.4/ext/standard/tests/array/
H A Darray_change_key_case_variation.phpt13 /* should return one value key pair with key being in lowercase */
17 /* should return one value key pair with key being in uppercase */
H A Darray_diff_assoc_variation8.phpt16 * 3. duplicate key names
21 $array_index = array('a', 'b', 'c', 0 => 'd', 'b'); //duplicate key (0), duplicate value (b)
22 $array_assoc = array ('2' => 'c', //same key=>value pair, different order
25 'b' => '3', //key and value from array_index swapped
H A Deach_variation6.phpt6 * Description: Return the currently pointed key..value pair in the passed array,
20 echo key($arr) . " => " . current($arr) . "\n";
26 echo key($arr) . " => " . current($arr) . "\n";
46 ["key"]=>
H A Darray_filter_variation10.phpt19 function dump($value, $key)
21 echo "$key = $value\n";
26 echo "*** Testing array_filter() : usage variations - 'callback' filters based on key value ***\n";
28 function dump2($value, $key)
30 return $key > 4;
67 *** Testing array_filter() : usage variations - 'callback' filters based on key value ***
H A Darray_key_exists_variation1.phpt2 Test array_key_exists() function : usage variations - Pass different data types as $key arg
5 /* Prototype : bool array_key_exists(mixed $key, array $search)
6 * Description: Checks if the given key or index exists in the array
12 * Pass different data types as $key argument to array_key_exists() to test behaviour
18 $search = array ('zero', 'key' => 'val', 'two');
28 return "key";
34 key
40 // unexpected values to be passed to $key argument
72 /*19*/ "key",
73 'key',
/PHP-7.4/ext/phar/tests/
H A Dphar_buildfromiterator7.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
57 key
H A Dphar_buildfromiterator9.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
/PHP-7.4/ext/phar/tests/tar/
H A Dphar_buildfromiterator4.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
H A Dphar_buildfromiterator9.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
/PHP-7.4/ext/phar/tests/zip/
H A Dphar_buildfromiterator4.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
H A Dphar_buildfromiterator9.phpt25 function key() {
26 echo "key\n";
27 return key($this->a);
58 key
/PHP-7.4/TSRM/
H A Dtsrm_win32.h30 key_t key; member
107 TSRM_API int shmget(key_t key, size_t size, int flags);
108 TSRM_API void *shmat(int key, const void *shmaddr, int flags);
110 TSRM_API int shmctl(int key, int cmd, struct shmid_ds *buf);
/PHP-7.4/ext/session/tests/
H A D024.phpt28 function read($key)
30 print "READ: $key\n";
34 function write($key, $val)
36 print "WRITE: $key, $val\n";
41 function destroy($key)
43 print "DESTROY: $key\n";
/PHP-7.4/ext/standard/
H A Dcrypt_freesec.c379 (uint32_t)(u_char)key[3] | in des_setkey()
380 ((uint32_t)(u_char)key[2] << 8) | in des_setkey()
382 ((uint32_t)(u_char)key[0] << 24); in des_setkey()
384 (uint32_t)(u_char)key[7] | in des_setkey()
385 ((uint32_t)(u_char)key[6] << 8) | in des_setkey()
387 ((uint32_t)(u_char)key[4] << 24); in des_setkey()
626 *q++ = *key << 1; in _crypt_extended_r()
627 if (*key) in _crypt_extended_r()
628 key++; in _crypt_extended_r()
655 while (*key) { in _crypt_extended_r()
[all …]
/PHP-7.4/ext/session/
H A Dphp_session.h34 #define PS_READ_ARGS void **mod_data, zend_string *key, zend_string **val, zend_long maxlifetime
35 #define PS_WRITE_ARGS void **mod_data, zend_string *key, zend_string *val, zend_long maxlifetime
36 #define PS_DESTROY_ARGS void **mod_data, zend_string *key
39 #define PS_VALIDATE_SID_ARGS void **mod_data, zend_string *key
40 #define PS_UPDATE_TIMESTAMP_ARGS void **mod_data, zend_string *key, zend_string *val, zend_long max…
128 smart_str key; member
272 PHPAPI int php_session_valid_key(const char *key);
289 zend_string *key; \
295 ZEND_HASH_FOREACH_KEY(_ht, num_key, key) { \
296 if (key == NULL) { \
[all …]
/PHP-7.4/ext/dba/tests/
H A Ddba_lmdb.phpt26 "key number 6" written
27 Failed to write "key number 6" 2nd time
31 ["key number 6"]=>
H A Ddba_qdbm.phpt26 "key number 6" written
27 Failed to write "key number 6" 2nd time
31 ["key number 6"]=>

Completed in 32 milliseconds

12345678910>>...43