Home
last modified time | relevance | path

Searched refs:password (Results 1 – 25 of 142) sorted by last modified time

123456

/php-src/
H A DNEWS170 . Fixed GH-12423, DSN credentials being prioritized over the user/password
H A Dphp.ini-development880 ; Define the anonymous ftp password (your email address). PHP's default setting
1190 ; Default password for mysqli_connect() (doesn't apply in safe mode).
1193 ; and reveal this password! And of course, any users with read access to this
1194 ; file will be able to reveal the password as well.
H A Dphp.ini-production882 ; Define the anonymous ftp password (your email address). PHP's default setting
1192 ; Default password for mysqli_connect() (doesn't apply in safe mode).
1195 ; and reveal this password! And of course, any users with read access to this
1196 ; file will be able to reveal the password as well.
H A D.travis.yml63 - PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=postgres password="
/php-src/ext/openssl/
H A Dopenssl.c3554 if (password == NULL || password->key == NULL) { in php_openssl_pem_password_cb()
3558 size = (password->len > size) ? size : password->len; in php_openssl_pem_password_cb()
3559 memcpy(buf, password->key, size); in php_openssl_pem_password_cb()
3694 password.key = passphrase; in php_openssl_pkey_from_zval()
3695 password.len = passphrase_len; in php_openssl_pkey_from_zval()
5351 char *password; in PHP_FUNCTION() local
5362 &password, &password_len, in PHP_FUNCTION()
7654 const char *password, size_t password_len, in php_openssl_encrypt() argument
7732 efree((void *) password); in php_openssl_encrypt()
7767 const char *password, size_t password_len, in php_openssl_decrypt() argument
[all …]
H A Dphp_openssl.h130 const char *password, size_t password_len,
138 const char *password, size_t password_len,
/php-src/ext/odbc/
H A Dodbc_arginfo.h84 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
/php-src/ext/ldap/
H A Dldap_arginfo.h9 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
18 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
39 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
45 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
53 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
/php-src/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c2024 memcpy(buffer + MYSQLND_HEADER_SIZE, packet->password, packet->password_len); in php_mysqlnd_cached_sha2_result_write()
H A Dmysqlnd_connection.c287 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/ext/standard/
H A Dbasic_functions_arginfo.h1766 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
1778 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
H A Dpassword.c184 if (memchr(ZSTR_VAL(password), '\0', ZSTR_LEN(password))) { in php_password_bcrypt_hash()
211 …result = php_crypt(ZSTR_VAL(password), (int)ZSTR_LEN(password), ZSTR_VAL(hash), (int)ZSTR_LEN(hash… in php_password_bcrypt_hash()
358 ZSTR_VAL(password), in php_password_argon2_hash()
359 ZSTR_LEN(password), in php_password_argon2_hash()
386 …return ARGON2_OK == argon2_verify(ZSTR_VAL(hash), ZSTR_VAL(password), ZSTR_LEN(password), Argon2_i… in php_password_argon2i_verify()
405 …return ARGON2_OK == argon2_verify(ZSTR_VAL(hash), ZSTR_VAL(password), ZSTR_LEN(password), Argon2_i… in php_password_argon2id_verify()
422 PHP_MINIT_FUNCTION(password) /* {{{ */ in PHP_MINIT_FUNCTION() argument
616 zend_string *password, *hash; in PHP_FUNCTION() local
620 Z_PARAM_STR(password) in PHP_FUNCTION()
632 zend_string *password, *digest = NULL; in PHP_FUNCTION() local
[all …]
/php-src/ext/standard/tests/password/
H A Dpassword_bcrypt_errors.phpt19 var_dump(password_hash("null\0password", PASSWORD_BCRYPT));
27 Bcrypt password must not contain null character
/php-src/ext/pdo_firebird/
H A Dfirebird_driver.c1303 if (!dbh->password && vars[5].optval) { in pdo_firebird_handle_factory()
1304 dbh->password = pestrdup(vars[5].optval, dbh->is_persistent); in pdo_firebird_handle_factory()
1324 char const *dpb_values[] = { dbh->username, dbh->password, vars[1].optval, vars[2].optval }; in pdo_firebird_handle_factory()
/php-src/ext/mysqli/
H A Dmysqli_api.c211 char *user, *password, *dbname; in PHP_FUNCTION() local
215 …is(), "Osss!", &mysql_link, mysqli_link_class_entry, &user, &user_len, &password, &password_len, &… in PHP_FUNCTION()
220 rc = mysqlnd_change_user_ex(mysql->mysql, user, password, dbname, false, (size_t) password_len); in PHP_FUNCTION()
H A Dmysqli_arginfo.h22 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
39 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
241 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
419 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
436 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
451 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
519 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
H A Dmysqli.stub.php1550 ?string $password = null,
/php-src/.circleci/
H A Dconfig.yml26 … 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/
H A Dpdo_dbh.c285 char *username=NULL, *password=NULL; in internal_construct() local
297 Z_PARAM_STRING_OR_NULL(password, passwordlen) in internal_construct()
371 password ? password : "", in internal_construct()
378 password ? password : ""); in internal_construct()
430 dbh->password = password ? pestrdup(password, is_persistent) : NULL; in internal_construct()
437 if (!dbh->data_source || (username && !dbh->username) || (password && !dbh->password)) { in internal_construct()
1458 if (dbh->password) { in dbh_free()
1459 pefree(dbh->password, dbh->is_persistent); in dbh_free()
/php-src/ext/openssl/tests/
H A Dopenssl_error_string_basic_openssl3.phpt69 // private key file with password (password is 'php')
76 // error because password is longer then key length and
H A Dopenssl_error_string_basic.phpt69 // private key file with password (password is 'php')
76 // error because password is longer then key length and
/php-src/.github/actions/configure-x64/
H A Daction.yml62 --with-password-argon2 \
/php-src/ext/hash/
H A Dhash.stub.php86 function mhash_keygen_s2k(int $algo, string $password, string $salt, int $length): string|false {}
H A Dhash_arginfo.h72 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
108 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
/php-src/ext/com_dotnet/
H A Dcom_com.c37 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()

Completed in 280 milliseconds

123456