Home
last modified time | relevance | path

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

123456789

/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug_64705.phpt9 $dsn = 'pgsql:host=DonotExistsHost;dbname=test;user=foo;password=wrongpass';
H A Dcommon.phpt21 …$config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password
H A Dconfig.inc9 …$config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password
/PHP-7.4/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-7.4/ext/pgsql/tests/
H A Dconfig.inc8 …L_TEST_CONNSTR') ?: "host=localhost dbname=test port=5432 user=postgres password=postgres"; // …
H A Dskipif.inc5 // with no username/password, AND
/PHP-7.4/ext/phar/tests/files/
H A Dopenssl.cnf27 challengePassword = A challenge password
/PHP-7.4/ext/snmp/tests/
H A Dsnmp-object-setSecurity_error.phpt48 …ng a key for authentication pass phrase '': Generic error (The supplied password length is too sho…
51 … a key for authentication pass phrase 'te': Generic error (The supplied password length is too sho…
57 …enerating a key for privacy pass phrase '': Generic error (The supplied password length is too sho…
60 …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-7.4/ext/soap/
H A Dphp_http.c37 zval *login, *password; in proxy_authentication() local
47 Z_TYPE_P(password) == IS_STRING) { in proxy_authentication()
48 smart_str_appendl(&auth, Z_STRVAL_P(password), Z_STRLEN_P(password)); in proxy_authentication()
65 zval *login, *password; in basic_authentication() local
76 Z_TYPE_P(password) == IS_STRING) { in basic_authentication()
77 smart_str_appendl(&auth, Z_STRVAL_P(password), Z_STRLEN_P(password)); in basic_authentication()
539 zval *cookies, *login, *password; in make_http_soap_request() local
701 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(password), Z_STRLEN_P(password)); in make_http_soap_request()
816 smart_str_appendl(&auth, Z_STRVAL_P(password), Z_STRLEN_P(password)); in make_http_soap_request()
1163 zval *digest, *login, *password; in make_http_soap_request() local
[all …]
/PHP-7.4/ext/soap/tests/
H A Dbug46760.phpt11 'password' => "test",
/PHP-7.4/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-7.4/ext/sodium/
H A Dlibsodium.c137 ZEND_ARG_INFO(0, password)
146 ZEND_ARG_INFO(0, password)
153 ZEND_ARG_INFO(0, password)
H A Dsodium_pwhash.c74 static zend_string *php_sodium_argon2_hash(const zend_string *password, zend_array *options, int al… in php_sodium_argon2_hash() argument
78 if ((ZSTR_LEN(password) >= 0xffffffff)) { in php_sodium_argon2_hash()
88 …if (crypto_pwhash_str_alg(ZSTR_VAL(ret), ZSTR_VAL(password), ZSTR_LEN(password), opslimit, memlimi… in php_sodium_argon2_hash()
100 static zend_bool php_sodium_argon2_verify(const zend_string *password, const zend_string *hash) { in php_sodium_argon2_verify() argument
101 if ((ZSTR_LEN(password) >= 0xffffffff) || (ZSTR_LEN(hash) >= 0xffffffff)) { in php_sodium_argon2_verify()
104 return crypto_pwhash_str_verify(ZSTR_VAL(hash), ZSTR_VAL(password), ZSTR_LEN(password)) == 0; in php_sodium_argon2_verify()
147 static zend_string *php_sodium_argon2i_hash(const zend_string *password, zend_array *options) { in php_sodium_argon2i_hash() argument
148 return php_sodium_argon2_hash(password, options, crypto_pwhash_ALG_ARGON2I13); in php_sodium_argon2i_hash()
162 static zend_string *php_sodium_argon2id_hash(const zend_string *password, zend_array *options) { in php_sodium_argon2id_hash() argument
163 return php_sodium_argon2_hash(password, options, crypto_pwhash_ALG_ARGON2ID13); in php_sodium_argon2id_hash()
/PHP-7.4/ext/sodium/tests/
H A Dphp_password_hash_argon2i.phpt24 $password = random_bytes(32);
25 echo "Using password: ";
32 $password[0] = chr(ord($password[0]) ^ 1);
38 Using password: string(44) "%s"
42 Using password: string(44) "%s"
46 Using password: string(44) "%s"
50 Using password: string(44) "%s"
54 Using password: string(44) "%s"
58 Using password: string(44) "%s"
62 Using password: string(44) "%s"
[all …]
H A Dphp_password_hash_argon2id.phpt24 $password = random_bytes(32);
25 echo "Using password: ";
32 $password[0] = chr(ord($password[0]) ^ 1);
38 Using password: string(44) "%s"
42 Using password: string(44) "%s"
46 Using password: string(44) "%s"
50 Using password: string(44) "%s"
54 Using password: string(44) "%s"
58 Using password: string(44) "%s"
62 Using password: string(44) "%s"
[all …]
H A Dphp_password_verify.phpt35 $password = random_bytes(32);
36 echo "Using password: ";
43 $password[0] = chr(ord($password[0]) ^ 1);
49 Using password: string(44) "%s"
53 Using password: string(44) "%s"
57 Using password: string(44) "%s"
61 Using password: string(44) "%s"
65 Using password: string(44) "%s"
69 Using password: string(44) "%s"
73 Using password: string(44) "%s"
[all …]
H A Dpwhash_argon2i.phpt8 $passwd = 'password';
/PHP-7.4/ext/standard/
H A Dbasic_functions.c1838 ZEND_ARG_INFO(0, password)
1851 ZEND_ARG_INFO(0, password)
3676 BASIC_MINIT_SUBMODULE(password) in PHP_MINIT_FUNCTION()
3768 BASIC_MSHUTDOWN_SUBMODULE(password) in PHP_MSHUTDOWN_FUNCTION()
H A Dconfig.m4423 PHP_ARG_WITH([password-argon2],
425 [AS_HELP_STRING([[--with-password-argon2[=DIR]]],
495 filters.c proc_open.c streamsfuncs.c http.c password.c \
H A Dconfig.w323 ARG_WITH("password-argon2", "Argon2 support", "no");
37 user_filters.c uuencode.c filters.c proc_open.c password.c \
H A Dcrypt.c98 PHPAPI zend_string *php_crypt(const char *password, const int pass_len, const char *salt, int salt_… in php_crypt() argument
116 out = php_md5_crypt_r(password, salt, output); in php_crypt()
125 crypt_res = php_sha512_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); in php_crypt()
140 crypt_res = php_sha256_crypt_r(password, salt, output, PHP_MAX_SALT_LEN); in php_crypt()
159 crypt_res = php_crypt_blowfish_rn(password, salt, output, sizeof(output)); in php_crypt()
185 crypt_res = _crypt_extended_r((const unsigned char *) password, salt, &buffer); in php_crypt()
213 crypt_res = crypt_r(password, salt, &buffer); in php_crypt()
216 crypt_res = crypt(password, salt); in php_crypt()
H A Dpassword.c285 …result = php_crypt(ZSTR_VAL(password), (int)ZSTR_LEN(password), ZSTR_VAL(hash), (int)ZSTR_LEN(hash… in php_password_bcrypt_hash()
432 ZSTR_VAL(password), in php_password_argon2_hash()
433 ZSTR_LEN(password), in php_password_argon2_hash()
460 …return ARGON2_OK == argon2_verify(ZSTR_VAL(hash), ZSTR_VAL(password), ZSTR_LEN(password), Argon2_i… in php_password_argon2i_verify()
479 …return ARGON2_OK == argon2_verify(ZSTR_VAL(hash), ZSTR_VAL(password), ZSTR_LEN(password), Argon2_i… in php_password_argon2id_verify()
496 PHP_MINIT_FUNCTION(password) /* {{{ */ in PHP_MINIT_FUNCTION() argument
712 zend_string *password, *hash; in PHP_FUNCTION() local
716 Z_PARAM_STR(password) in PHP_FUNCTION()
729 zend_string *password, *digest = NULL; in PHP_FUNCTION() local
735 Z_PARAM_STR(password) in PHP_FUNCTION()
[all …]
H A Dphp_crypt.h24 PHPAPI zend_string *php_crypt(const char *password, const int pass_len, const char *salt, int salt_…
H A Dphp_password.h29 PHP_MINIT_FUNCTION(password);
30 PHP_MSHUTDOWN_FUNCTION(password);
47 zend_string *(*hash)(const zend_string *password, zend_array *options);
48 zend_bool (*verify)(const zend_string *password, const zend_string *hash);
49 zend_bool (*needs_rehash)(const zend_string *password, zend_array *options);

Completed in 85 milliseconds

123456789