Home
last modified time | relevance | path

Searched refs:password (Results 151 – 175 of 223) sorted by relevance

123456789

/PHP-7.4/ext/mysqli/
H A Dmysqli_fe.c153 ZEND_ARG_INFO(0, password)
159 ZEND_ARG_INFO(0, password)
167 ZEND_ARG_INFO(0, password)
177 ZEND_ARG_INFO(0, password)
187 ZEND_ARG_INFO(0, password)
/PHP-7.4/ext/openssl/tests/
H A Dopenssl_error_string_basic.phpt65 // private key file with password (password is 'php')
72 // error because password is longer then key length and
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_connect_oo.phpt25 // Run the following tests without an anoynmous MySQL user and use a password for the test user!
150 Warning: mysqli::__construct(): (%s/%d): Access denied for user '%sunknown%s'@'%s' (using password:…
152 Access denied for user '%s'@'%s' (using password: %s)
H A Dmysqli_pconn_max_links.phpt94 // change the password for the second DB user and kill the persistent connection
100 // change the password for the second DB user and kill the persistent connection
129 printf("[010] Can connect using the old password, [%d] %s\n",
154 printf("[012] Cannot connect using the new password, [%d] %s\n",
H A Dmysqli_real_connect_pconn.phpt35 // Run the following tests without an anoynmous MySQL user and use a password for the test user!
155 Warning: mysqli_real_connect(): (%s/%d): Access denied for user '%s'@'%s' (using password: YES) in …
/PHP-7.4/ext/pdo_mysql/
H A Dmysql_driver.c846 if (!dbh->password && vars[6].optval) {
847 dbh->password = pestrdup(vars[6].optval, dbh->is_persistent);
856 if (dbh->password) {
857 password_len = strlen(dbh->password);
860 …if (mysqlnd_connect(H->server, host, dbh->username, dbh->password, password_len, dbname, dbname_le…
863 …if (mysql_real_connect(H->server, host, dbh->username, dbh->password, dbname, port, unix_socket, c…
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_connection.c291 if (conn->password.s) { in MYSQLND_METHOD()
292 mnd_pefree(conn->password.s, pers); in MYSQLND_METHOD()
293 conn->password.s = NULL; in MYSQLND_METHOD()
529 const MYSQLND_CSTRING * const password, in MYSQLND_METHOD()
589 MYSQLND_CSTRING password,
657 if (!password.s) {
659 password.s = "";
660 password.l = 0;
708 conn->password.l = password.l;
709 conn->password.s = mnd_pestrndup(password.s, conn->password.l, conn->persistent);
[all …]
/PHP-7.4/ext/imap/tests/
H A Dimap_body.phpt19 $stream_id = imap_open($default_mailbox, $username, $password) or
H A Dimap_close_error.phpt27 $stream_id = imap_open($server, $username, $password);
H A Dimap_lsub_basic.phpt19 $stream_id = imap_open($default_mailbox, $username, $password) or
H A Dimap_mail_copy.phpt25 $stream_id = imap_open($default_mailbox, $username, $password) or
H A Dimap_mail_move.phpt25 $stream_id = imap_open($default_mailbox, $username, $password) or
H A Dimap_close_basic.phpt33 $stream_id = imap_open($mailbox, $username, $password);
H A Dimap_fetchheader_error.phpt24 $stream_id = imap_open($server, $username, $password);
H A Dimap_getsubscribed_basic.phpt19 $stream_id = imap_open($default_mailbox, $username, $password) or
H A Dimap_open_error.phpt24 imap_open($default_mailbox, $username, $password, NIL, -1);
H A Dimap_createmailbox_basic.phpt18 $imap_stream = imap_open($default_mailbox, $username, $password) or
/PHP-7.4/ext/oci8/tests/
H A Dlob_017.phpt13 $c = oci_pconnect($user, $password, $dbase);
H A Dbug41069.phpt26 …"create shared database link bug41069_dblink authenticated by $user identified by $password using …
74 $c = oci_new_connect($user, $password, $dbase);
/PHP-7.4/ext/pdo_oci/
H A Doci_driver.c770 if (!dbh->password && vars[3].optval) { in pdo_oci_handle_factory()
771 dbh->password = pestrdup(vars[3].optval, dbh->is_persistent); in pdo_oci_handle_factory()
774 if (dbh->password) { in pdo_oci_handle_factory()
776 dbh->password, (ub4) strlen(dbh->password), in pdo_oci_handle_factory()
/PHP-7.4/ext/zip/tests/
H A Doo_encryption.phpt40 $ctx = stream_context_create(array('zip' => array('password' => $pass)));
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug69362.phpt2 PDO PgSQL Bug #69362 (PDO-pgsql fails to connect if password contains a leading single quote)
/PHP-7.4/ext/ldap/tests/
H A Dldap_sasl_bind_error.phpt30 // Invalid password
H A Dconnect.inc4 Default values are "localhost", "cn=Manager,dc=my-domain,dc=com", and password "secret".
/PHP-7.4/ext/openssl/
H A Dopenssl.c278 ZEND_ARG_INFO(0, password)
411 ZEND_ARG_INFO(0, password)
422 ZEND_ARG_INFO(0, password)
3783 if (password == NULL || password->key == NULL) { in php_openssl_pem_password_cb()
3787 size = (password->len > size) ? size : password->len; in php_openssl_pem_password_cb()
3788 memcpy(buf, password->key, size); in php_openssl_pem_password_cb()
3955 password.key = passphrase; in php_openssl_evp_from_zval()
5092 char *password; in PHP_FUNCTION() local
5103 &password, &password_len, in PHP_FUNCTION()
6783 efree(password); in php_openssl_encrypt()
[all …]

Completed in 65 milliseconds

123456789