Home
last modified time | relevance | path

Searched refs:password (Results 26 – 50 of 142) sorted by relevance

123456

/php-src/.github/actions/setup-x64/
H A Daction.yml14 ….1 -U SA -P "<YourStrong@Passw0rd>" -Q "create login pdo_test with password='password', check_poli…
15 …1 -U SA -P "<YourStrong@Passw0rd>" -Q "create login odbc_test with password='password', check_poli…
/php-src/ext/zip/tests/
H A Dbug70752.phpt2 Bug #70752 (Depacking with wrong password leaves 0 length files)
14 $zip->setPassword('bar'); // correct password would be 'foo'
/php-src/ext/mysqli/tests/
H A DREADME.md22 # Database user password
23 # The default password is empty (no password).
H A Dmysqli_report_new.phpt26 …20-456789-30-456789-40-456789-50-456789-60-456789-70-456789-80-456789-90-456789", "password", $db);
34 …change_user($link, "This might work if you accept anonymous users in your setup", "password", $db);
43 Warning: mysqli_change_user(): (%d/%d): Access denied for user '%s'@'%s' (using password: %s) in %s…
/php-src/ext/mysqli/tests/test_setup/
H A Dtest_helpers.inc25 static $password = null;
26 if ($password === null) {
27 $password = getenv('MYSQL_TEST_PASSWD') ?: '';
29 return $password;
74 string $password,
89 mysqli_real_connect($link, $host, $user, $password, $db, $port, $socket, $flags);
94 $link = @mysqli_connect($host, $user, $password, $db, $port, $socket);
/php-src/.github/actions/test-linux/
H A Daction.yml30 export PDO_DBLIB_TEST_PASS="password"
31 … export PGSQL_TEST_CONNSTR="host=localhost dbname=test port=5432 user=postgres password=postgres"
33 …ort PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=postgres password=postgres"
40 export ODBC_TEST_PASS="password"
/php-src/ext/standard/tests/password/
H A Dpassword_bcrypt_errors.phpt19 var_dump(password_hash("null\0password", PASSWORD_BCRYPT));
27 Bcrypt password must not contain null character
H A Dpassword_hash_sensitive_parameter.phpt2 Test that the password parameter is marked sensitive.
21 ValueError: password_hash(): Argument #2 ($algo) must be a valid password hashing algorithm in%spas…
/php-src/ext/openssl/tests/
H A Dopenssl_encrypt_chacha20_poly1305.phpt25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, ''));
28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 12), $tag, '', 20));
31 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 12)));
H A Dopenssl_encrypt_ccm.phpt27 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, ''));
30 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 10), $tag, '', 14));
34 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 16), $tag, '', 1024));
H A Dopenssl_encrypt_gcm.phpt25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, ''));
28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 32), $tag, '', 20));
31 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 32)));
H A Dopenssl_encrypt_ocb.phpt25 var_dump(openssl_encrypt('data', $method, 'password', 0, '', $tag, ''));
28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 12), $tag, '', 20));
31 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 12)));
/php-src/ext/pdo_sqlite/tests/
H A Dbug48773.phpt15 function __construct($dsn, $username, $password, $driver_options = array()) {
17 parent::__construct($dsn, $username, $password, $driver_options);
/php-src/ext/pdo_firebird/tests/
H A Dpayload_test.phpt18 $password = 'masterkey';
20 new PDO($dsn, $username, $password, [
H A Dbug_76448.phpt18 $password = 'masterkey';
20 $dbh = new PDO($dsn, $username, $password, [PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION]);
H A Dbug_76449.phpt18 $password = 'masterkey';
20 $dbh = new PDO($dsn, $username, $password, [PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION]);
H A Dbug_76450.phpt18 $password = 'masterkey';
20 $dbh = new PDO($dsn, $username, $password, [PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION]);
H A Dbug_76452.phpt19 $password = 'masterkey';
21 $dbh = new PDO($dsn, $username, $password, [PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION]);
/php-src/ext/pdo_pgsql/tests/
H A Dbug62479.phpt2 PDO PgSQL Bug #62479 (PDO-psql cannot connect if password contains spaces)
50 // Create temp user with space in password
51 $sql = sprintf($template, 'my password');
53 $testConn = new PDO($config['ENV']['PDOTEST_DSN'], $user, "my password");
/php-src/ext/snmp/tests/
H A Dsnmp-object-setSecurity_error.phpt66 …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…
74 …enerating a key for privacy pass phrase '': Generic error (The supplied password length is too sho…
77 …erating a key for privacy pass phrase 'ty': Generic error (The supplied password length is too sho…
H A Dsnmp3-error.phpt66 …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/ldap/tests/
H A Dldap_exop_passwd.phpt2 ldap_exop_passwd() - Changing password through EXOP
17 // and optionally returns the NEW password if none was passed.
/php-src/ext/curl/tests/
H A Dcurl_multi_segfault.phpt15 $password = getenv('PHP_CURL_FTP_REMOTE_PASSWD');
19 $url = "ftp://$username:$password@$host/" ;
/php-src/ext/standard/
H A Dphp_crypt.h22 PHPAPI zend_string *php_crypt(const char *password, const int pass_len, const char *salt, int salt_…
/php-src/ext/pdo/tests/
H A Dpdo_dsn_containing_credentials.phpt27 putenv("PDOTEST_DSN=$orgDsn;user=$orgUser;password=$orgPass");
36 putenv("PDOTEST_DSN=$orgDsn;user=incorrect;password=ignored");

Completed in 76 milliseconds

123456