/PHP-7.0/ext/standard/ |
H A D | crypt_blowfish.c | 684 if (setting[0] != '$' || in BF_crypt() 685 setting[1] != '2' || in BF_crypt() 686 setting[2] < 'a' || setting[2] > 'z' || in BF_crypt() 688 setting[3] != '$' || in BF_crypt() 689 setting[4] < '0' || setting[4] > '3' || in BF_crypt() 690 setting[5] < '0' || setting[5] > '9' || in BF_crypt() 691 (setting[4] == '3' && setting[5] > '1') || in BF_crypt() 692 setting[6] != '$') { in BF_crypt() 697 count = (BF_word)1 << ((setting[4] - '0') * 10 + (setting[5] - '0')); in BF_crypt() 799 if (setting[0] == '*' && setting[1] == '0') in _crypt_output_magic() [all …]
|
H A D | crypt_blowfish.h | 22 extern int _crypt_output_magic(const char *setting, char *output, int size); 24 extern char *php_crypt_blowfish_rn(const char *key, const char *setting,
|
H A D | crypt_freesec.c | 637 if (*setting == _PASSWORD_EFMT1) { in _crypt_extended_r() 644 int value = ascii_to_bin(setting[i]); in _crypt_extended_r() 645 if (ascii64[value] != setting[i]) in _crypt_extended_r() 653 int value = ascii_to_bin(setting[i]); in _crypt_extended_r() 654 if (ascii64[value] != setting[i]) in _crypt_extended_r() 676 memcpy(data->output, setting, 9); in _crypt_extended_r() 687 if (ascii_is_unsafe(setting[0]) || ascii_is_unsafe(setting[1])) in _crypt_extended_r() 690 salt = (ascii_to_bin(setting[1]) << 6) in _crypt_extended_r() 691 | ascii_to_bin(setting[0]); in _crypt_extended_r() 693 data->output[0] = setting[0]; in _crypt_extended_r() [all …]
|
H A D | crypt_freesec.h | 33 char *_crypt_extended_r(const char *key, const char *setting,
|
/PHP-7.0/ext/mysqli/tests/ |
H A D | mysqli_phpinfo.phpt | 27 printf("[003] php.ini setting mysqli.default_host not shown.\n"); 30 printf("[004] php.ini setting mysqli.default_port not shown.\n"); 33 printf("[005] php.ini setting mysqli.default_pw not shown.\n"); 36 printf("[006] php.ini setting mysqli.default_socket not shown.\n"); 39 printf("[007] php.ini setting mysqli.default_user not shown.\n"); 42 printf("[008] php.ini setting mysqli.max_links not shown.\n"); 45 printf("[009] php.ini setting mysqli.reconnect not shown.\n");
|
/PHP-7.0/ext/standard/tests/strings/ |
H A D | setlocale_variation3.phpt | 2 Test setlocale() function : usage variations - setting system locale = 0 21 /* If locale is "0", the locale setting is not affected, only the current setting is returned */ 23 echo "*** Testing setlocale() : usage variations - setting system locale = 0 ***\n"; 30 echo "Locale info, before setting the locale\n"; 40 echo "Locale info, after setting the locale\n"; 57 *** Testing setlocale() : usage variations - setting system locale = 0 *** 58 Locale info, before setting the locale 108 Locale info, after setting the locale
|
H A D | setlocale_variation5.phpt | 25 echo "*** Testing setlocale() : usage variations - setting system locale = \"\" ***\n"; 27 //initially setting the locale 30 echo "Locale info, before setting the locale\n"; 41 echo "Locale info, after setting the locale\n"; 59 *** Testing setlocale() : usage variations - setting system locale = "" *** 60 Locale info, before setting the locale 110 Locale info, after setting the locale
|
H A D | setlocale_variation4.phpt | 2 Test setlocale() function : usage variations - setting system locale as null 27 //initially setting the locale 30 echo "Locale info, before setting the locale\n"; 39 echo "Locale info, after setting the locale\n"; 56 Locale info, before setting the locale 106 Locale info, after setting the locale
|
/PHP-7.0/ext/gd/tests/ |
H A D | imageinterlace_variation2.phpt | 2 Testing setting the interlace bit off with imageinterlace() of GD library 15 //setting the interlace bit to on 18 //setting de interlace bit to off
|
H A D | imageinterlace_variation1.phpt | 2 Testing setting the interlace bit on with imageinterlace() of GD library
|
/PHP-7.0/ext/curl/tests/ |
H A D | curl_basic_004.phpt | 2 Test curl_opt() function with setting referer 20 echo '*** Testing curl setting referer ***' . "\n"; 37 *** Testing curl setting referer ***
|
/PHP-7.0/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_autocommit_1.phpt | 23 echo "Change setting to false - "; 30 echo "Change setting back to true - "; 59 Change setting to false - PDO::ATTR_AUTOCOMMIT: bool(false) 60 Change setting back to true - PDO::ATTR_AUTOCOMMIT: bool(true)
|
/PHP-7.0/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_oracle_nulls.phpt | 17 …printf("[001] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS.… 21 …printf("[002] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS.… 24 …printf("[003] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS.… 85 [002] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS... 86 [003] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS...
|
/PHP-7.0/sapi/cli/ |
H A D | README | 15 php.ini setting. 20 * max_execution_time is set to unlimited, overriding php.ini setting.
|
/PHP-7.0/sapi/cli/tests/ |
H A D | cli_process_title_unix.phpt | 10 echo "*** Testing setting the process title ***\n"; 51 *** Testing setting the process title ***
|
/PHP-7.0/ext/date/tests/ |
H A D | default-timezone-1.phpt | 2 date.timezone setting [1]
|
H A D | default-timezone-2.phpt | 2 date.timezone setting [2]
|
/PHP-7.0/Zend/tests/ |
H A D | bug38461.phpt | 2 Bug #38461 (setting private attribute with __set() produces segfault)
|
H A D | bug52484.phpt | 2 Bug #52484 (__set() ignores setting properties with empty names)
|
H A D | bug52484_2.phpt | 2 Bug #52484.2 (__set() ignores setting properties with empty names)
|
H A D | bug52484_3.phpt | 2 Bug #52484.3 (__set() ignores setting properties with empty names)
|
/PHP-7.0/ext/phar/tests/ |
H A D | pharfileinfo_setmetadata.phpt | 49 Write operations disabled by the php.ini setting phar.readonly 50 Write operations disabled by the php.ini setting phar.readonly
|
/PHP-7.0/ext/session/tests/ |
H A D | 017.phpt | 2 setting $_SESSION before session_start() should not cause segfault
|
H A D | 031.phpt | 2 setting hash_function to sha512 and hash_bits_per_character > 4 should not crash
|
/PHP-7.0/ext/standard/tests/general_functions/ |
H A D | bug40752.phpt | 2 Bug #40752 (parse_ini_file() segfaults when a scalar setting is redeclared as an array)
|