Home
last modified time | relevance | path

Searched refs:password (Results 101 – 125 of 142) sorted by last modified time

123456

/php-src/ext/standard/tests/strings/
H A Dcrypt_sha512.phpt29 'we have a short salt string but not a short password',
H A Dbug50052.phpt6 $password = 'test';
8 echo crypt($password,$salt) . "\n";
/php-src/ext/standard/tests/password/
H A Dpassword_hash_error.phpt43 password_hash(): Argument #1 ($password) must be of type string, array given
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/standard/
H A Dconfig.w323 ARG_WITH("password-argon2", "Argon2 support", "no");
37 user_filters.c uuencode.c filters.c proc_open.c password.c \
/php-src/ext/sodium/tests/
H A Dphp_password_hash_argon2i.phpt27 $password = random_bytes(32);
28 echo "Using password: ";
29 var_dump(base64_encode($password));
30 $hash = password_hash($password, 'argon2i', $opts);
32 var_dump(sodium_crypto_pwhash_str_verify($hash, $password));
35 $password[0] = chr(ord($password[0]) ^ 1);
36 var_dump(sodium_crypto_pwhash_str_verify($hash, $password));
42 Using password: string(44) "%s"
46 Using password: string(44) "%s"
50 Using password: string(44) "%s"
[all …]
H A Dpwhash_argon2i.phpt10 $passwd = 'password';
/php-src/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-src/ext/soap/tests/
H A Dbug46760.phpt11 'password' => "test",
/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…
/php-src/ext/phar/tests/files/
H A Dopenssl.cnf27 challengePassword = A challenge password
/php-src/ext/pdo_pgsql/tests/
H A Dbug_64705.phpt7 $dsn = 'pgsql:host=DonotExistsHost;dbname=test;user=foo;password=wrongpass';
H A Dcommon.phpt20 …$config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password
H A Dconfig.inc9 …NV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password=postgres';
/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_mysql/tests/
H A Dbug_64705.phpt7 $dsn = 'mysql:host=DonotExistsHost;dbname=test;user=foo;password=wrongpass';
H A DREADME.md24 # Database user password
/php-src/ext/pdo_dblib/tests/
H A DREADME.md7 ….1 -U SA -P "<YourStrong@Passw0rd>" -Q "create login pdo_test with password='password', check_poli…
10 …master;version=7.0" PDO_DBLIB_TEST_USER="pdo_test" PDO_DBLIB_TEST_PASS="password" TESTS=ext/pdo_db…
H A Dcommon.phpt12 'PDOTEST_PASS' => getenv('PDO_DBLIB_TEST_PASS') ?: 'password',
/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");
H A Dsensitive_parameter.phpt8 new PDO('dsn', 'username', 'password');
/php-src/ext/openssl/tests/
H A Dopenssl.cnf35 challengePassword = A challenge password
H A Dopenssl_decrypt_basic.phpt9 $password = "openssl";
16 $encrypted = openssl_encrypt($data, $method, $password, 0, $iv);
17 $output = openssl_decrypt($encrypted, $method, $password, 0, $iv);
19 $encrypted = openssl_encrypt($data, $method, $password, OPENSSL_RAW_DATA, $iv);
20 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA, $iv);
24 $encrypted = openssl_encrypt($padded_data, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDIN…
25 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $i…
28 $output2 = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $…
35 $encrypted = openssl_encrypt($data, "bf-ecb", $password, OPENSSL_DONT_ZERO_PAD_KEY);
36 $output = openssl_decrypt($encrypted, "bf-ecb", $password, OPENSSL_DONT_ZERO_PAD_KEY);
[all …]
H A Dopenssl_decrypt_error.phpt9 $password = "openssl";
13 $encrypted = openssl_encrypt($data, $method, $password);
15 var_dump(openssl_encrypt($data, $method, $password, 0, $iv));
17 var_dump(openssl_decrypt($encrypted, $wrong, $password));
18 var_dump(openssl_decrypt($wrong, $method, $password));
19 var_dump(openssl_decrypt($wrong, $wrong, $password));
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)));

Completed in 48 milliseconds

123456