| /PHP_TRUNK/ext/mysqli/tests/ |
| H A D | connect.inc | 4 database "stest" and empty password.
|
| /PHP_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/ext/hash/ |
| H A D | hash.c | 607 /* {{{ proto string hash_pbkdf2(string algo, string password, string salt, int iterations [, int length = 0, bool raw_output = false]) 608 Generate a PBKDF2 hash of the given password and salt 676 /* digest = hash_hmac(salt + pack('N', i), password) { */ 696 /* digest = hash_hmac(digest, password) { */ 889 char *password, *salt; local 893 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lssl", &algorithm, &password, &password_len, &salt, &salt_len, &l_bytes) == FAILURE) { 938 ops->hash_update(context, (unsigned char *)password, password_len); 1143 ZEND_ARG_INFO(0, password)
|
| /PHP_TRUNK/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_TRUNK/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...] |
| /PHP_TRUNK/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...] |
| /PHP_TRUNK/ext/pdo_dblib/ |
| H A D | dblib_driver.c | 288 if (dbh->password) { 289 DBSETLPWD(H->login, dbh->password);
|
| /PHP_TRUNK/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_TRUNK/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_TRUNK/ext/standard/ |
| H A D | crypt.c | 148 PHPAPI int php_crypt(const char *password, const int pass_len, const char *salt, int salt_len, char **result) argument 160 out = php_md5_crypt_r(password, salt, output); 170 crypt_res = php_sha512_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); 185 crypt_res = php_sha256_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); 208 crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output)); 221 crypt_res = _crypt_extended_r(password, salt, &buffer); 242 crypt_res = crypt_r(password, salt, &buffer);
|
| H A D | password.c | 38 PHP_MINIT_FUNCTION(password) /* {{{ */ 187 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Supplied password hash too long to safely identify"); 231 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Supplied password hash too long to safely identify"); 271 /* {{{ proto boolean password_make_salt(string password, string hash) 277 char *ret, *password, *hash; local 279 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &password, &password_len, &hash, &hash_len) == FAILURE) { 282 if (php_crypt(password, password_len, hash, hash_len, &ret) == FAILURE) { 306 /* {{{ proto string password_hash(string password, int algo, array options = array()) 307 Hash a password */ 310 char *hash_format, *hash, *salt, *password, *resul local [all...] |
| H A D | php_crypt.h | 26 PHPAPI int php_crypt(const char *password, const int pass_len, const char *salt, int salt_len, char **result);
|
| H A D | php_password.h | 29 PHP_MINIT_FUNCTION(password); variable
|
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_fe.c | 143 ZEND_ARG_INFO(0, password) 149 ZEND_ARG_INFO(0, password) 157 ZEND_ARG_INFO(0, password) 167 ZEND_ARG_INFO(0, password) 177 ZEND_ARG_INFO(0, password)
|
| /PHP_TRUNK/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)); 525 zval **cookies, **login, **password; local 661 if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password"), (void **)&password) 1129 zval **digest, **login, **password; local [all...] |