/php-src/ext/snmp/tests/ |
H A D | snmp3-error.phpt | 66 …ng a key for authentication pass phrase '': Generic error (The supplied password length is too sho… 69 … a key for authentication pass phrase 'te': Generic error (The supplied password length is too sho… 73 …enerating a key for privacy pass phrase '': Generic error (The supplied password length is too sho… 76 …erating a key for privacy pass phrase 'ty': Generic error (The supplied password length is too sho…
|
/php-src/ext/curl/tests/ |
H A D | curl_multi_segfault.phpt | 15 $password = getenv('PHP_CURL_FTP_REMOTE_PASSWD'); 19 $url = "ftp://$username:$password@$host/" ;
|
H A D | curl_ftp_pasv.phpt | 15 $password = getenv('PHP_CURL_FTP_REMOTE_PASSWD'); 19 $url = "ftp://$username:$password@$host/test.phpt" ;
|
/php-src/ext/standard/ |
H A D | php_crypt.h | 22 PHPAPI zend_string *php_crypt(const char *password, const int pass_len, const char *salt, int salt_…
|
H A D | config.w32 | 3 ARG_WITH("password-argon2", "Argon2 support", "no"); 37 user_filters.c uuencode.c filters.c proc_open.c password.c \
|
/php-src/ext/pdo/tests/ |
H A D | pdo_dsn_containing_credentials.phpt | 27 putenv("PDOTEST_DSN=$orgDsn;user=$orgUser;password=$orgPass"); 36 putenv("PDOTEST_DSN=$orgDsn;user=incorrect;password=ignored");
|
H A D | sensitive_parameter.phpt | 8 new PDO('dsn', 'username', 'password');
|
/php-src/ext/pdo_dblib/tests/ |
H A D | common.phpt | 12 'PDOTEST_PASS' => getenv('PDO_DBLIB_TEST_PASS') ?: 'password',
|
/php-src/ext/openssl/tests/ |
H A D | bug74022.phpt | 2 Bug #74022 PHP Fast CGI crashes when reading from a pfx file with valid password
|
/php-src/ext/pgsql/tests/inc/ |
H A D | config.inc | 8 …L_TEST_CONNSTR') ?: "host=localhost dbname=test port=5432 user=postgres password=postgres"; // …
|
/php-src/ext/soap/tests/bugs/ |
H A D | bug46760.phpt | 11 'password' => "test",
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_report_wo_ps.phpt | 50 …20-456789-30-456789-40-456789-50-456789-60-456789-70-456789-80-456789-90-456789", "password", $db); 69 …change_user($link, "This might work if you accept anonymous users in your setup", "password", $db); 111 Warning: mysqli_change_user(): (%d/%d): Access denied for user '%s'@'%s' (using password: %s) in %s… 116 [011] Access denied for user '%s'@'%s' (using password: YES) 117 [014] Access denied for user '%s'@'%s' (using password: YES)
|
H A D | bug38003.phpt | 10 private function __construct($hostname, $username, $password, $database) {
|
/php-src/ext/pdo_mysql/tests/ |
H A D | bug_64705.phpt | 7 $dsn = 'mysql:host=DonotExistsHost;dbname=test;user=foo;password=wrongpass';
|
/php-src/ext/pdo_pgsql/tests/ |
H A D | bug_64705.phpt | 7 $dsn = 'pgsql:host=DonotExistsHost;dbname=test;user=foo;password=wrongpass';
|
H A D | config.inc | 9 …NV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password=postgres';
|
H A D | common.phpt | 20 …$config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password…
|
/php-src/.github/scripts/windows/ |
H A D | test_task.bat | 33 mysql --host=%PDO_MYSQL_TEST_HOST% --port=%MYSQL_TEST_PORT% --user=%MYSQL_TEST_USER% --password=%MY… 39 rem set PGSQL_TEST_CONNSTR=host=127.0.0.1 dbname=test port=5432 user=postgres password=Password12! 40 echo ^<?php $conn_str = "host=127.0.0.1 dbname=test port=5432 user=%PGUSER% password=%PGPASSWORD%";… 41 set PDO_PGSQL_TEST_DSN=pgsql:host=127.0.0.1 port=5432 dbname=test user=%PGUSER% password=%PGPASSWOR… 64 echo create database '%PDO_FIREBIRD_TEST_DATABASE%' user '%PDO_FIREBIRD_TEST_USER%' password '%PDO_…
|
/php-src/ext/pdo_odbc/ |
H A D | odbc_driver.c | 532 …bool use_pwd_arg = dbh->password != NULL && !php_memnistr(dbh->data_source, "pwd=", strlen("pwd=")… in pdo_odbc_handle_factory() 565 …ld_quote_pwd = !php_odbc_connstr_is_quoted(dbh->password) && php_odbc_connstr_should_quote(dbh->pa… in pdo_odbc_handle_factory() 567 size_t estimated_length = php_odbc_connstr_estimate_quote_length(dbh->password); in pdo_odbc_handle_factory() 569 php_odbc_connstr_quote(pwd, dbh->password, estimated_length); in pdo_odbc_handle_factory() 571 pwd = dbh->password; in pdo_odbc_handle_factory() 604 …dbh->data_source, SQL_NTS, (SQLCHAR *) dbh->username, SQL_NTS, (SQLCHAR *) dbh->password, SQL_NTS); in pdo_odbc_handle_factory()
|
/php-src/ext/openssl/ |
H A D | php_openssl.h | 132 const char *password, size_t password_len, 140 const char *password, size_t password_len,
|
/php-src/ext/pdo/ |
H A D | pdo_dbh.c | 308 char *username=NULL, *password=NULL; in php_pdo_internal_construct_driver() local 320 Z_PARAM_STRING_OR_NULL(password, passwordlen) in php_pdo_internal_construct_driver() 395 password ? password : "", in php_pdo_internal_construct_driver() 402 password ? password : ""); in php_pdo_internal_construct_driver() 454 dbh->password = password ? pestrdup(password, is_persistent) : NULL; in php_pdo_internal_construct_driver() 461 if (!dbh->data_source || (username && !dbh->username) || (password && !dbh->password)) { in php_pdo_internal_construct_driver() 1482 if (dbh->password) { in dbh_free() 1483 pefree(dbh->password, dbh->is_persistent); in dbh_free()
|
/php-src/ext/soap/ |
H A D | php_http.c | 40 if (Z_TYPE_P(password) == IS_STRING) { in proxy_authentication() 41 smart_str_append(&auth, Z_STR_P(password)); in proxy_authentication() 65 zval *password = Z_CLIENT_PASSWORD_P(this_ptr); in basic_authentication() local 66 if (Z_TYPE_P(password) == IS_STRING) { in basic_authentication() 67 smart_str_append(&auth, Z_STR_P(password)); in basic_authentication() 551 zval *cookies, *login, *password; in make_http_soap_request() local 718 password = Z_CLIENT_PASSWORD_P(this_ptr); in make_http_soap_request() 719 if (Z_TYPE_P(password) == IS_STRING) { in make_http_soap_request() 720 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(password), Z_STRLEN_P(password)); in make_http_soap_request() 832 password = Z_CLIENT_PASSWORD_P(this_ptr); in make_http_soap_request() [all …]
|
/php-src/ext/ldap/tests/ |
H A D | ldap_bind_error.phpt | 17 // Invalid password
|
/php-src/.github/actions/setup-windows/ |
H A D | action.yml | 9 …mysql.exe --port=3306 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'P…
|
/php-src/ext/pdo_firebird/tests/ |
H A D | common.phpt | 29 $config['ENV']['PDOTEST_PASS'] = 'password';
|