Home
last modified time | relevance | path

Searched refs:password (Results 26 – 50 of 213) sorted by last modified time

123456789

/PHP-5.5/ext/standard/
H A Dphp_password.h29 PHP_MINIT_FUNCTION(password);
H A Dphp_crypt.h26 PHPAPI int php_crypt(const char *password, const int pass_len, const char *salt, int salt_len, char…
H A Dcrypt.c148 PHPAPI int php_crypt(const char *password, const int pass_len, const char *salt, int salt_len, char… in php_crypt() argument
160 out = php_md5_crypt_r(password, salt, output); in php_crypt()
170 crypt_res = php_sha512_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); in php_crypt()
185 crypt_res = php_sha256_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); in php_crypt()
207 crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output)); in php_crypt()
220 crypt_res = _crypt_extended_r(password, salt, &buffer); in php_crypt()
241 crypt_res = crypt_r(password, salt, &buffer); in php_crypt()
H A Dbasic_functions.c1864 ZEND_ARG_INFO(0, password)
1877 ZEND_ARG_INFO(0, password)
3651 BASIC_MINIT_SUBMODULE(password) in PHP_MINIT_FUNCTION()
H A Dconfig.m4606 filters.c proc_open.c streamsfuncs.c http.c password.c)
H A Dconfig.w3222 user_filters.c uuencode.c filters.c proc_open.c password.c \
/PHP-5.5/ext/soap/tests/bugs/
H A Dmultiport.phpt11 $response = $client->GetSessionId(array('userId'=>'user', 'password'=>'password'));
16 …ENV:Body><ns1:GetSessionId><ns1:userId>user</ns1:userId><ns1:password>password</ns1:password></ns1…
/PHP-5.5/ext/soap/
H A Dphp_http.c37 zval **login, **password; in proxy_authentication() local
48 Z_TYPE_PP(password) == IS_STRING) { in proxy_authentication()
49 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in proxy_authentication()
66 zval **login, **password; in basic_authentication() local
78 Z_TYPE_PP(password) == IS_STRING) { in basic_authentication()
79 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in basic_authentication()
529 zval **cookies, **login, **password; in make_http_soap_request() local
668 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in make_http_soap_request()
794 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in make_http_soap_request()
1139 zval **digest, **login, **password; in make_http_soap_request() local
[all …]
/PHP-5.5/ext/snmp/tests/
H A Dsnmp3-error.phpt51 …ng a key for authentication pass phrase '': Generic error (The supplied password length is too sho…
54 … a key for authentication pass phrase 'te': Generic error (The supplied password length is too sho…
60 …enerating a key for privacy pass phrase '': Generic error (The supplied password length is too sho…
63 …erating a key for privacy pass phrase 'ty': Generic error (The supplied password length is too sho…
H A Dsnmp-object-setSecurity_error.phpt49 …ng a key for authentication pass phrase '': Generic error (The supplied password length is too sho…
52 … a key for authentication pass phrase 'te': Generic error (The supplied password length is too sho…
58 …enerating a key for privacy pass phrase '': Generic error (The supplied password length is too sho…
61 …erating a key for privacy pass phrase 'ty': Generic error (The supplied password length is too sho…
/PHP-5.5/ext/pgsql/tests/
H A Dskipif.inc5 // with no username/password, AND
/PHP-5.5/ext/pdo_sqlite/tests/
H A Dbug48773.phpt17 function __construct($dsn, $username, $password, $driver_options = array()) {
19 parent::__construct($dsn, $username, $password, $driver_options);
/PHP-5.5/ext/pdo_pgsql/tests/
H A Dbug62479.phpt2 PDO PgSQL Bug #62479 (PDO-psql cannot connect if password contains spaces)
49 // Create temp user with space in password
50 $sql = sprintf($template, 'my password');
52 $testConn = new PDO($conf['ENV']['PDOTEST_DSN'], $user, "my password");
H A Dbug69362.phpt2 PDO PgSQL Bug #69362 (PDO-pgsql fails to connect if password contains a leading single quote)
H A Dcommon.phpt21 $config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=root password=';
H A Dconfig.inc9 $config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=root password=';
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_driver.c451 spprintf(&dsn, 0, "%s;UID=%s;PWD=%s", dbh->data_source, dbh->username, dbh->password); in pdo_odbc_handle_factory()
460 …rc = SQLConnect(H->dbc, (char*)dbh->data_source, SQL_NTS, dbh->username, SQL_NTS, dbh->password, S… in pdo_odbc_handle_factory()
/PHP-5.5/ext/pdo_pgsql/
H A Dpgsql_driver.c1094 tmp_pass = _pdo_pgsql_escape_credentials(dbh->password TSRMLS_CC); in pdo_pgsql_handle_factory()
/PHP-5.5/ext/pdo_oci/
H A Doci_driver.c673 if (dbh->password) { in pdo_oci_handle_factory()
675 dbh->password, strlen(dbh->password), in pdo_oci_handle_factory()
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpecl_bug_5780.phpt16 $db->exec("CREATE TABLE test2 (login varchar(32) NOT NULL, password varchar(64) NOT NULL)");
17 $db->exec("INSERT INTO test2 (login, password) VALUES ('testing', 'testing')");
18 $db->exec("INSERT INTO test2 (login, password) VALUES ('test2', 'testpw2')");
21 $authstmt = $db->prepare('SELECT * FROM test2 WHERE login = :varlog AND password = :varpass');
H A Dpdo_mysql___construct.phpt299 [009] SQLSTATE[%s] [1045] Access denied for user 'dont%s'@'%s' (using password: YES), [n/a] n/a
/PHP-5.5/ext/pdo_mysql/
H A Dmysql_driver.c761 if (dbh->password) {
762 password_len = strlen(dbh->password);
765 …if (mysqlnd_connect(H->server, host, dbh->username, dbh->password, password_len, dbname, dbname_le…
768 …if (mysql_real_connect(H->server, host, dbh->username, dbh->password, dbname, port, unix_socket, c…
/PHP-5.5/ext/pdo_firebird/tests/
H A Dbug_47415.phpt11 $dbh = new PDO("firebird:dbname=$test_base",$user,$password) or die;
H A Dbug_48877.phpt11 $dbh = new PDO("firebird:dbname=$test_base",$user,$password) or die;
H A Dbug_53280.phpt11 $dbh = new PDO("firebird:dbname=$test_base",$user,$password) or die;

Completed in 74 milliseconds

123456789