Home
last modified time | relevance | path

Searched refs:password (Results 126 – 150 of 223) sorted by last modified time

123456789

/PHP-7.4/ext/standard/tests/mail/
H A Dmail_skipif.inc17 $password = 'p4ssw0rd';
21 $mbox = imap_open($mailbox, $username, $password, $options, $retries);
/PHP-7.4/ext/sodium/tests/
H A Dphp_password_hash_argon2i.phpt24 $password = random_bytes(32);
25 echo "Using password: ";
32 $password[0] = chr(ord($password[0]) ^ 1);
38 Using password: string(44) "%s"
42 Using password: string(44) "%s"
46 Using password: string(44) "%s"
50 Using password: string(44) "%s"
54 Using password: string(44) "%s"
58 Using password: string(44) "%s"
62 Using password: string(44) "%s"
[all …]
H A Dphp_password_hash_argon2id.phpt24 $password = random_bytes(32);
25 echo "Using password: ";
32 $password[0] = chr(ord($password[0]) ^ 1);
38 Using password: string(44) "%s"
42 Using password: string(44) "%s"
46 Using password: string(44) "%s"
50 Using password: string(44) "%s"
54 Using password: string(44) "%s"
58 Using password: string(44) "%s"
62 Using password: string(44) "%s"
[all …]
H A Dphp_password_verify.phpt35 $password = random_bytes(32);
36 echo "Using password: ";
43 $password[0] = chr(ord($password[0]) ^ 1);
49 Using password: string(44) "%s"
53 Using password: string(44) "%s"
57 Using password: string(44) "%s"
61 Using password: string(44) "%s"
65 Using password: string(44) "%s"
69 Using password: string(44) "%s"
73 Using password: string(44) "%s"
[all …]
H A Dpwhash_argon2i.phpt8 $passwd = 'password';
/PHP-7.4/ext/soap/tests/bugs/
H A Dmultiport.phpt11 $response = $client->GetSessionId(array('userId'=>'user', 'password'=>'password'));
16 …ENV:Body><ns1:GetSessionId><ns1:userId>user</ns1:userId><ns1:password>password</ns1:password></ns1…
/PHP-7.4/ext/soap/tests/
H A Dbug46760.phpt11 'password' => "test",
/PHP-7.4/ext/phar/tests/files/
H A Dopenssl.cnf27 challengePassword = A challenge password
/PHP-7.4/ext/pgsql/tests/
H A Dconfig.inc8 …L_TEST_CONNSTR') ?: "host=localhost dbname=test port=5432 user=postgres password=postgres"; // …
H A Dskipif.inc5 // with no username/password, AND
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dconfig.inc9 …$config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password
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");
H A Dbug69362.phpt2 PDO PgSQL Bug #69362 (PDO-pgsql fails to connect if password contains a leading single quote)
H A Dcommon.phpt21 …$config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password
/PHP-7.4/ext/pdo_sqlite/tests/
H A Dbug48773.phpt17 function __construct($dsn, $username, $password, $driver_options = array()) {
19 parent::__construct($dsn, $username, $password, $driver_options);
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpecl_bug_5780.phpt16 $db->exec("CREATE TABLE test2 (login varchar(32) NOT NULL, password varchar(64) NOT NULL)");
17 $db->exec("INSERT INTO test2 (login, password) VALUES ('testing', 'testing')");
18 $db->exec("INSERT INTO test2 (login, password) VALUES ('test2', 'testpw2')");
21 $authstmt = $db->prepare('SELECT * FROM test2 WHERE login = :varlog AND password = :varpass');
H A DREADME.md24 # Database user password
H A Dpdo_mysql___construct.phpt302 [009] SQLSTATE[%s] [1045] Access denied for user 'dont%s'@'%s' (using password: YES), [n/a] n/a
/PHP-7.4/ext/pdo/tests/
H A Dpdo_dsn_containing_credentials.phpt26 putenv("PDOTEST_DSN=$orgDsn;user=$orgUser;password=$orgPass");
35 putenv("PDOTEST_DSN=$orgDsn;user=incorrect;password=ignored");
/PHP-7.4/ext/pdo_dblib/tests/
H A Dcommon.phpt14 'PDOTEST_PASS' => getenv('PDO_DBLIB_TEST_PASS') ?: 'password',
H A Dconfig.inc41 $pass = 'password';
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_pbkdf2_basic.phpt8 var_dump(bin2hex(openssl_pbkdf2('password', 'salt', 20, 1)));
9 var_dump(bin2hex(openssl_pbkdf2('password', 'salt', 20, 2)));
10 var_dump(bin2hex(openssl_pbkdf2('password', 'salt', 20, 4096)));
14 var_dump(bin2hex(openssl_pbkdf2('password', 'salt', 20, 16777216)));
H A Dbug73833.phpt12 foreach($passwords as $password) {
15 if (openssl_pkey_export($key, $privatePEM, $password, $conf) === false) {
20 if (openssl_pkey_get_private($privatePEM, $password) === false) {
H A Dopenssl.cnf34 challengePassword = A challenge password
H A Dopenssl_encrypt_gcm.phpt25 var_dump(openssl_encrypt('data', $method, 'password', 0, NULL, $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)));

Completed in 53 milliseconds

123456789