Home
last modified time | relevance | path

Searched refs:password (Results 126 – 142 of 142) sorted by path

123456

/php-src/ext/standard/
H A Dphp_crypt.h22 PHPAPI zend_string *php_crypt(const char *password, const int pass_len, const char *salt, int salt_…
H A Dphp_password.h21 PHP_MINIT_FUNCTION(password);
22 PHP_MSHUTDOWN_FUNCTION(password);
39 zend_string *(*hash)(const zend_string *password, zend_array *options);
40 bool (*verify)(const zend_string *password, const zend_string *hash);
41 bool (*needs_rehash)(const zend_string *password, zend_array *options);
/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
H A Dpassword_hash_argon2.phpt11 $password = "the password for testing 12345!";
22 $hash = password_hash($password, $algo);
23 var_dump(password_verify($password, $hash));
H A Dpassword_hash_error.phpt43 password_hash(): Argument #1 ($password) must be of type string, array given
H A Dpassword_hash_sensitive_parameter.phpt2 Test that the password parameter is marked sensitive.
21 ValueError: password_hash(): Argument #2 ($algo) must be a valid password hashing algorithm in%spas…
/php-src/ext/standard/tests/strings/
H A Dbug50052.phpt6 $password = 'test';
8 echo crypt($password,$salt) . "\n";
H A Dcrypt_sha256.phpt34 'we have a short salt string but not a short password',
H A Dcrypt_sha512.phpt29 'we have a short salt string but not a short password',
/php-src/ext/zip/
H A Dphp_zip.c1525 char *password; local
1528 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &password, &password_len) == FAILURE) {
1538 int res = zip_set_default_password(intern, (const char *)password);
2349 char *name, *password = NULL; local
2353 &name, &name_len, &method, &password, &password_len) == FAILURE) {
2370 if (zip_file_set_encryption(intern, idx, (zip_uint16_t)method, password)) {
2383 char *password = NULL; local
2387 &index, &method, &password, &password_len) == FAILURE) {
2393 if (zip_file_set_encryption(intern, index, (zip_uint16_t)method, password)) {
H A Dphp_zip_arginfo.h49 ZEND_ARG_TYPE_INFO(0, password, IS_STRING, 0)
283 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
291 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, password, IS_STRING, 1, "null")
/php-src/ext/zip/tests/
H A Dbug70752.phpt2 Bug #70752 (Depacking with wrong password leaves 0 length files)
14 $zip->setPassword('bar'); // correct password would be 'foo'
H A Dbug80833.phpt23 'password' => "first_password",
H A Doo_encryption.phpt41 $ctx = stream_context_create(array('zip' => array('password' => $pass)));
/php-src/
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.
/php-src/tests/basic/
H A Dbug53180.phpt6 email=foo&password=bar&submit=Log+on
15 ["password"]=>

Completed in 65 milliseconds

123456