| /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/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/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_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/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/mysqli/ |
| H A D | mysqli_api.c | 516 /* {{{ proto bool mysqli_change_user(object link, string user, string password, string database) 522 char *user, *password, *dbname; local 529 if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Osss", &mysql_link, mysqli_link_class_entry, &user, &user_len, &password, &password_len, &dbname, &dbname_len) == FAILURE) { 539 rc = mysqlnd_change_user_ex(mysql->mysql, user, password, dbname, FALSE, (size_t) password_len); 541 rc = mysql_change_user(mysql->mysql, user, password, dbname);
|
| /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...] |