| /PHP_5_4/ext/oci8/tests/ |
| H A D | conn_attr.inc | 72 $password = 'testuser'; 77 return(oci_connect($user,$password,$dbase)); 81 return(oci_pconnect($user,$password,$dbase)); 85 return(oci_new_connect($user,$password,$dbase));
|
| H A D | connect.inc | 6 $c = @oci_connect($user, $password, $dbase); 9 $c = @oci_connect($user, $password);
|
| H A D | details.inc | 4 * Please change $user, $password and $dbase to match your configuration. 19 $password = getenv('PHP_OCI8_TEST_PASS'); // Password for $user 29 $password = "oracle";
|
| /PHP_5_4/ext/pdo_firebird/tests/ |
| H A D | testdb.inc | 4 $password = 'masterkey'; 6 ini_set('ibase.default_password',$password); 13 global $test_base, $user, $password; 16 $test_base, $user, $password));
|
| /PHP_5_4/ext/standard/tests/mail/ |
| H A D | mail_include.inc | 8 $password = 'p4ssw0rd'; 21 global $server, $default_mailbox, $username, $password; 24 $imap_stream = imap_open($default_mailbox, $username, $password);
|
| /PHP_5_4/ext/zip/lib/ |
| H A D | zip_fopen_encrypted.c | 2 zip_fopen_encrypted.c -- open file for reading with password 44 const char *password) 51 return zip_fopen_index_encrypted(za, idx, flags, password); 41 zip_fopen_encrypted(struct zip *za, const char *fname, int flags, const char *password) argument
|
| H A D | zip_fopen_index_encrypted.c | 2 zip_fopen_index_encrypted.c -- open file for reading by index w/ password 50 const char *password) 83 if (password == NULL) { 119 password)) == NULL) { 47 zip_fopen_index_encrypted(struct zip *za, zip_uint64_t fileno, int flags, const char *password) argument
|
| H A D | zip_source_pkware.c | 72 zip_uint16_t em, int flags, const char *password) 77 if (password == NULL || src == NULL || em != ZIP_EM_TRAD_PKWARE) { 99 decrypt(ctx, NULL, (const zip_uint8_t *)password, strlen(password), 1); 167 /* stat failed, skip password validation */ 68 zip_source_pkware(struct zip *za, struct zip_source *src, zip_uint16_t em, int flags, const char *password) argument
|
| /PHP_5_4/ext/imap/tests/ |
| H A D | imap_include.inc | 8 $password = 'p4ssw0rd'; 67 global $server, $default_mailbox, $username, $password; 70 $imap_stream = imap_open($default_mailbox, $username, $password);
|
| /PHP_5_4/ext/interbase/tests/ |
| H A D | interbase.inc | 6 $password = 'masterkey'; 8 ini_set('ibase.default_password',$password); 15 global $test_base, $user, $password; 19 $user, $password, ($charset = ini_get('ibase.default_charset')) ? $charset : 'NONE'));
|
| /PHP_5_4/ext/mysqli/tests/ |
| H A D | connect.inc | 4 database "stest" and empty password.
|
| /PHP_5_4/ext/com_dotnet/ |
| H A D | com_com.c | 39 char *user_name = NULL, *domain_name = NULL, *password = NULL; local 98 password = Z_STRVAL_PP(tmp); 134 if (password) { 135 authid.Password = (OLECHAR*)password;
|
| /PHP_5_4/ext/hash/ |
| H A D | hash.c | 754 char *password, *salt; local 758 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lssl", &algorithm, &password, &password_len, &salt, &salt_len, &l_bytes) == FAILURE) { 803 ops->hash_update(context, (unsigned char *)password, password_len);
|
| /PHP_5_4/ext/interbase/ |
| H A D | interbase.c | 61 ZEND_ARG_INFO(0, password) 71 ZEND_ARG_INFO(0, password) 235 ZEND_ARG_INFO(0, password) 244 ZEND_ARG_INFO(0, password) 253 ZEND_ARG_INFO(0, password) 1037 /* {{{ proto resource ibase_connect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]) 1045 /* {{{ proto resource ibase_pconnect(string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])
|
| /PHP_5_4/ext/mysqli/ |
| H A D | mysqli_fe.c | 93 ZEND_ARG_INFO(0, password) 99 ZEND_ARG_INFO(0, password) 107 ZEND_ARG_INFO(0, password) 117 ZEND_ARG_INFO(0, password) 127 ZEND_ARG_INFO(0, password)
|
| /PHP_5_4/ext/oci8/ |
| H A D | oci8.c | 147 static int php_oci_create_session(php_oci_connection *connection, php_oci_spool *session_pool, char *dbname, int dbname_len, char *username, int username_len, char *password, int password_len, char *new_password, int new_password_len, int session_mode TSRMLS_DC); 148 static int php_oci_old_create_session(php_oci_connection *connection, char *dbname, int dbname_len, char *username, int username_len, char *password, int password_len, char *new_password, int new_password_len, int session_mode TSRMLS_DC); 149 static php_oci_spool *php_oci_get_spool(char *username, int username_len, char *password, int password_len, char *dbname, int dbname_len, int charsetid TSRMLS_DC); 150 static php_oci_spool *php_oci_create_spool(char *username, int username_len, char *password, int password_len, char *dbname, int dbname_len, char *hash_key, int hash_key_len, int charsetid TSRMLS_DC); 393 ZEND_ARG_INFO(0, password) 401 ZEND_ARG_INFO(0, password) 409 ZEND_ARG_INFO(0, password) 1430 * If oci_password_change() changed the password of a persistent connection, close the 1432 * will be prevented from being able to present the old (now invalid) password to a usable 1433 * connection to the database; they must use the new password 1730 char *username, *password; local 1759 php_oci_do_connect_ex(char *username, int username_len, char *password, int password_len, char *new_password, int new_password_len, char *dbname, int dbname_len, char *charset, long session_mode, int persistent, int exclusive TSRMLS_DC) argument 2707 php_oci_create_spool(char *username, int username_len, char *password, int password_len, char *dbname, int dbname_len, char *hash_key, int hash_key_len, int charsetid TSRMLS_DC) argument 2836 php_oci_get_spool(char *username, int username_len, char *password, int password_len, char *dbname, int dbname_len, int charsetid TSRMLS_DC) argument 2943 php_oci_old_create_session(php_oci_connection *connection, char *dbname, int dbname_len, char *username, int username_len, char *password, int password_len, char *new_password, int new_password_len, int session_mode TSRMLS_DC) argument 3116 php_oci_create_session(php_oci_connection *connection, php_oci_spool *session_pool, char *dbname, int dbname_len, char *username, int username_len, char *password, int password_len, char *new_password, int new_password_len, int session_mode TSRMLS_DC) argument [all...] |
| H A D | php_oci8_int.h | 139 unsigned passwd_changed:1; /* helps determine if a persistent connection hash should be invalidated after a password change */ 382 php_oci_connection *php_oci_do_connect_ex(char *username, int username_len, char *password, int password_len, char *new_password, int new_password_len, char *dbname, int dbname_len, char *charset, long session_mode, int persistent, int exclusive TSRMLS_DC);
|
| /PHP_5_4/ext/pdo/ |
| H A D | pdo_dbh.c | 209 char *username=NULL, *password=NULL; local 217 &username, &usernamelen, &password, &passwordlen, &options)) { 267 * it might contain a password */ 288 password ? password : "", 296 password ? password : ""); 365 dbh->password = password ? pestrdup(password, is_persisten [all...] |
| H A D | php_pdo_driver.h | 442 char *username, *password; member in struct:_pdo_dbh_t
|
| /PHP_5_4/ext/pdo_dblib/ |
| H A D | dblib_driver.c | 288 if (dbh->password) { 289 DBSETLPWD(H->login, dbh->password);
|
| /PHP_5_4/ext/pdo_odbc/ |
| H A D | odbc_driver.c | 451 spprintf(&dsn, 0, "%s;UID=%s;PWD=%s", dbh->data_source, dbh->username, dbh->password); 460 rc = SQLConnect(H->dbc, (char*)dbh->data_source, SQL_NTS, dbh->username, SQL_NTS, dbh->password, SQL_NTS);
|
| /PHP_5_4/ext/pdo_pgsql/ |
| H A D | pgsql_driver.c | 1063 /* support both full connection string & connection string + login and/or password */ 1064 if (dbh->username && dbh->password) { 1065 spprintf(&conn_str, 0, "%s user=%s password=%s connect_timeout=%ld", dbh->data_source, dbh->username, dbh->password, connect_timeout); 1068 } else if (dbh->password) { 1069 spprintf(&conn_str, 0, "%s password=%s connect_timeout=%ld", dbh->data_source, dbh->password, connect_timeout);
|
| /PHP_5_4/ext/soap/ |
| H A D | php_http.c | 37 zval **login, **password; local 46 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_proxy_password", sizeof("_proxy_password"), (void **)&password) == SUCCESS) { 47 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); 64 zval **login, **password; local 74 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password"), (void **)&password) == SUCCESS) { 75 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); 463 zval **cookies, **login, **password; local 599 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password"), (void **)&password) 1067 zval **digest, **login, **password; local [all...] |
| /PHP_5_4/ext/mysqlnd/ |
| H A D | mysqlnd_auth.c | 329 void php_mysqlnd_scramble(zend_uchar * const buffer, const zend_uchar * const scramble, const zend_uchar * const password, size_t password_len) argument 335 /* Phase 1: hash password */ 337 PHP_SHA1Update(&context, password, password_len);
|
| /PHP_5_4/ext/openssl/ |
| H A D | openssl.c | 362 ZEND_ARG_INFO(0, password) 370 ZEND_ARG_INFO(0, password) 4727 /* {{{ proto string openssl_encrypt(string data, string method, string password [, long options=0 [, string $iv='']]) 4732 char *data, *method, *password, *iv = ""; local 4740 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss|ls", &data, &data_len, &method, &method_len, &password, &password_len, &options, &iv, &iv_len) == FAILURE) { 4753 memcpy(key, password, password_len); 4755 key = (unsigned char*)password; 4796 if (key != (unsigned char*)password) { 4806 /* {{{ proto string openssl_decrypt(string data, string method, string password [, long options=0 [, string $iv = '']]) 4811 char *data, *method, *password, *i local [all...] |