Home
last modified time | relevance | path

Searched refs:password (Results 176 – 200 of 213) sorted by path

123456789

/PHP-5.5/ext/pgsql/tests/
H A Dskipif.inc5 // with no username/password, AND
/PHP-5.5/ext/phar/tests/files/
H A Dopenssl.cnf27 challengePassword = A challenge password
/PHP-5.5/ext/snmp/tests/
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…
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…
/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/soap/tests/
H A Dbug46760.phpt11 'password' => "test",
/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/standard/
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 \
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 Dpassword.c38 PHP_MINIT_FUNCTION(password) /* {{{ */ in PHP_MINIT_FUNCTION() argument
277 char *ret, *password, *hash; in PHP_FUNCTION() local
279 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &password, &password_len, &hash, &hash_… in PHP_FUNCTION()
282 if (php_crypt(password, password_len, hash, hash_len, &ret) == FAILURE) { in PHP_FUNCTION()
310 char *hash_format, *hash, *salt, *password, *result; in PHP_FUNCTION() local
317 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|H", &password, &password_len, &algo, &opt… in PHP_FUNCTION()
436 if (php_crypt(password, password_len, hash, hash_len, &result) == FAILURE) { in PHP_FUNCTION()
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 Dphp_password.h29 PHP_MINIT_FUNCTION(password);
/PHP-5.5/ext/standard/tests/mail/
H A Dmail_basic_alt1-win32.phpt48 $imap_stream = imap_open($default_mailbox, $username, $password);
H A Dmail_basic_alt2-win32.phpt46 $imap_stream = imap_open($default_mailbox, $username, $password);
H A Dmail_basic_alt3-win32.phpt46 $imap_stream = imap_open($default_mailbox, $username, $password);
H A Dmail_basic_alt4-win32.phpt47 $imap_stream = imap_open($default_mailbox, $username, $password);
H A Dmail_include.inc8 $password = 'p4ssw0rd';
21 global $server, $default_mailbox, $username, $password;
24 $imap_stream = imap_open($default_mailbox, $username, $password);
H A Dmail_skipif.inc17 $password = 'p4ssw0rd';
21 $mbox = imap_open($mailbox, $username, $password, $options, $retries);
H A Dmail_variation_alt1-win32.phpt47 $imap_stream = imap_open($default_mailbox, $username, $password);
H A Dmail_variation_alt2-win32.phpt47 $imap_stream = imap_open($default_mailbox, $username, $password);
H A Dmail_variation_alt3-win32.phpt46 $imap_stream = imap_open($default_mailbox, $username, $password);
/PHP-5.5/ext/standard/tests/password/
H A Dpassword_hash_error.phpt35 Warning: password_hash(): Unknown password hashing algorithm: 19 in %s on line %d
/PHP-5.5/ext/standard/tests/strings/
H A Dbug50052.phpt6 $password = 'test';
8 echo crypt($password,$salt) . "\n";

Completed in 44 milliseconds

123456789