/php-src/ext/phar/tests/files/ |
H A D | openssl.cnf | 27 challengePassword = A challenge password
|
/php-src/ext/com_dotnet/ |
H A D | com_com.c | 37 zend_string *user_name = NULL, *password = NULL, *domain_name = NULL; in PHP_METHOD() local 91 password = zval_get_string(tmp); in PHP_METHOD() 123 if (password) { in PHP_METHOD() 124 authid.Password = (OLECHAR*) ZSTR_VAL(password); in PHP_METHOD() 125 authid.PasswordLength = (ULONG) ZSTR_LEN(password); in PHP_METHOD() 211 if (password) zend_string_release(password); in PHP_METHOD()
|
/php-src/ext/sodium/tests/ |
H A D | pwhash_argon2i.phpt | 10 $passwd = 'password';
|
/php-src/ext/standard/tests/password/ |
H A D | password_hash_error.phpt | 43 password_hash(): Argument #1 ($password) must be of type string, array given
|
/php-src/ext/ldap/tests/ |
H A D | ldap_exop_passwd_error.phpt | 2 ldap_exop_passwd() - Giving wrong value for old password
|
H A D | README.md | 22 export SLAPPASS=`slappasswd -s password` 43 ou: extldap" | ldapadd -c -x -H ldap://localhost:389 -D "dc=admin,dc=nodomain" -w password 63 export LDAP_TEST_PASSWD="password"
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_connect_oo.phpt | 20 // Run the following tests without an anoynmous MySQL user and use a password for the test user! 146 …struct(): (%s/%d): Access denied for user '%sunknown%s'@'%s' %r(\(using password: \w+\) ){0,1}%rin… 150 Access denied for user '%s'@'%s'%r( \(using password: \w+\)){0,1}%r
|
H A D | mysqli_pconn_max_links.phpt | 98 // change the password for the second DB user and kill the persistent connection 104 // change the password for the second DB user and kill the persistent connection 134 printf("[010] Can connect using the old password, [%d] %s\n", 159 printf("[012] Cannot connect using the new password, [%d] %s\n",
|
/php-src/ext/openssl/tests/ |
H A D | openssl.cnf | 35 challengePassword = A challenge password
|
H A D | openssl_error_string_basic_openssl3.phpt | 69 // private key file with password (password is 'php') 76 // error because password is longer then key length and
|
H A D | openssl_error_string_basic.phpt | 69 // private key file with password (password is 'php') 76 // error because password is longer then key length and
|
/php-src/ext/hash/ |
H A D | hash.stub.php | 86 function mhash_keygen_s2k(int $algo, string $password, string $salt, int $length): string|false {}
|
/php-src/ext/pdo_mysql/tests/ |
H A D | README.md | 24 # Database user password
|
/php-src/ext/standard/tests/strings/ |
H A D | crypt_sha512.phpt | 29 'we have a short salt string but not a short password',
|
H A D | crypt_sha256.phpt | 34 'we have a short salt string but not a short password',
|
/php-src/ext/pgsql/tests/inc/ |
H A D | skipif.inc | 6 // with no username/password, AND
|
/php-src/ext/pdo_dblib/ |
H A D | dblib_driver.c | 552 if (!dbh->password && vars[7].optval) { in pdo_dblib_handle_factory() 553 dbh->password = pestrdup(vars[7].optval, dbh->is_persistent); in pdo_dblib_handle_factory() 556 if (dbh->password) { in pdo_dblib_handle_factory() 557 if(FAIL == DBSETLPWD(H->login, dbh->password)) { in pdo_dblib_handle_factory()
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_auth.c | 490 ZEND_ASSERT(conn->username.s != user && conn->password.s != passwd); in mysqlnd_auth_change_user() 492 mysqlnd_set_persistent_string(&conn->password, passwd, passwd_len, conn->persistent); in mysqlnd_auth_change_user() 529 …nst buffer, const zend_uchar * const scramble, const zend_uchar * const password, const size_t pas… in php_mysqlnd_scramble() argument 537 PHP_SHA1Update(&context, password, password_len); in php_mysqlnd_scramble() 979 …nst buffer, const zend_uchar * const scramble, const zend_uchar * const password, const size_t pas… in php_mysqlnd_scramble_sha2() argument 987 PHP_SHA256Update(&context, password, password_len); in php_mysqlnd_scramble_sha2() 1271 result_packet.password = (zend_uchar *)passwd; in mysqlnd_caching_sha2_handle_server_response() 1276 …nd_use_key(conn, auth_plugin_data, auth_plugin_data_len, &result_packet.password, passwd, passwd_l… in mysqlnd_caching_sha2_handle_server_response() 1278 efree(result_packet.password); in mysqlnd_caching_sha2_handle_server_response()
|
H A D | mysqlnd_connection.c | 287 mysqlnd_set_persistent_string(&conn->password, NULL, 0, pers); in MYSQLND_METHOD() 499 const MYSQLND_CSTRING * const password, in MYSQLND_METHOD() 510 ret = conn->command->handshake(conn, *username, *password, *database, client_flags); in MYSQLND_METHOD() 558 MYSQLND_CSTRING password, 619 if (!password.s) { 621 password.s = ""; 622 password.l = 0; 638 …if (FAIL == conn->m->connect_handshake(conn, &scheme, &username, &password, &database, mysql_flags… 668 mysqlnd_set_persistent_string(&conn->password, username.s, password.l, conn->persistent); 754 const MYSQLND_CSTRING password, [all …]
|
/php-src/.circleci/ |
H A D | config.yml | 26 … PDO_PGSQL_TEST_DSN: 'pgsql:host=127.0.0.1 port=5432 dbname=test user=postgres password=postgres' 135 --with-password-argon2 \
|
/php-src/ext/pdo_mysql/ |
H A D | mysql_driver.c | 952 if (!dbh->password && vars[6].optval) { 953 dbh->password = pestrdup(vars[6].optval, dbh->is_persistent); 962 if (dbh->password) { 963 password_len = strlen(dbh->password); 966 …if (mysqlnd_connect(H->server, host, dbh->username, dbh->password, password_len, dbname, dbname_le… 969 …if (mysql_real_connect(H->server, host, dbh->username, dbh->password, dbname, port, unix_socket, c…
|
/php-src/ext/pdo_dblib/tests/ |
H A D | config.inc | 32 $pass = 'password';
|
/php-src/ext/zip/tests/ |
H A D | bug80833.phpt | 23 'password' => "first_password",
|
H A D | oo_encryption.phpt | 41 $ctx = stream_context_create(array('zip' => array('password' => $pass)));
|
/php-src/ext/soap/tests/bugs/ |
H A D | bug55639.phpt | 40 'password' => 'pass',
|