/PHP-8.1/ext/standard/ |
H A D | php_crypt_r.c | 101 char * php_md5_crypt_r(const char *pw, const char *salt, char *out) in php_md5_crypt_r() argument 111 pwl = strlen(pw); in php_md5_crypt_r() 129 PHP_MD5Update(&ctx, (const unsigned char *)pw, pwl); in php_md5_crypt_r() 139 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r() 141 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r() 155 PHP_MD5Update(&ctx, (const unsigned char *)pw, 1); in php_md5_crypt_r() 173 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r() 181 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r() 186 PHP_MD5Update(&ctx1, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
|
H A D | php_crypt_r.h | 34 extern char * php_md5_crypt_r(const char *pw, const char *salt, char *out);
|
H A D | filestat.c | 438 struct passwd pw; in php_get_uid_by_name() local 448 if (getpwnam_r(name, &pw, pwbuf, pwbuflen, &retpwptr) != 0 || retpwptr == NULL) { in php_get_uid_by_name() 453 *uid = pw.pw_uid; in php_get_uid_by_name() 455 struct passwd *pw = getpwnam(name); in php_get_uid_by_name() 457 if (!pw) { in php_get_uid_by_name() 460 *uid = pw->pw_uid; in php_get_uid_by_name()
|
H A D | crypt_freesec.c | 740 const char *pw; member 787 char *hash = crypt(tests[i].pw, tests[i].hash); in main()
|
/PHP-8.1/win32/ |
H A D | winutil.c | 27 wchar_t *bufw = NULL, *pw; in php_win32_error_to_msg() local 40 …for (pw = bufw + wcslen(bufw) - 1; pw >= bufw && (*pw == L'\r' || *pw == L'\n' || *pw == L'.'); pw… in php_win32_error_to_msg() 41 pw[1] = L'\0'; in php_win32_error_to_msg()
|
/PHP-8.1/ext/posix/ |
H A D | posix.c | 899 if (NULL == pw) in php_posix_passwd_to_array() 907 add_assoc_long (return_value, "gid", pw->pw_gid); in php_posix_passwd_to_array() 918 struct passwd *pw; in PHP_FUNCTION() local 937 pw = &pwbuf; in PHP_FUNCTION() 940 if (getpwnam_r(name, pw, buf, buflen, &pw) || pw == NULL) { in PHP_FUNCTION() 951 if (NULL == (pw = getpwnam(name))) { in PHP_FUNCTION() 958 if (!php_posix_passwd_to_array(pw, return_value)) { in PHP_FUNCTION() 980 struct passwd *pw; in PHP_FUNCTION() local 1005 pw = &_pw; in PHP_FUNCTION() 1007 if (NULL == (pw = getpwuid(uid))) { in PHP_FUNCTION() [all …]
|
/PHP-8.1/sapi/fpm/tests/ |
H A D | socket-uds-numeric-ugid.phpt | 37 $pw = posix_getpwuid($st['uid']); 39 $user = $pw ? $pw['name'] : 'UNKNOWN';
|
H A D | socket-uds-numeric-ugid-nonroot.phpt | 42 $pw = posix_getpwuid($st['uid']); 44 $user = $pw ? $pw['name'] : 'UNKNOWN';
|
/PHP-8.1/main/ |
H A D | fopen_wrappers.c | 365 struct passwd *pw; local 384 if (getpwnam_r(user, &pwstruc, pwbuf, pwbuflen, &pw)) { 389 pw = getpwnam(user); 391 if (pw && pw->pw_dir) { 392 …filename = zend_strpprintf(0, "%s%c%s%c%s", pw->pw_dir, PHP_DIR_SEPARATOR, PG(user_dir), PHP_DIR_S…
|
/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_expire_password.phpt | 100 /* allow connect, fix pw */ 110 printf("[008] Connect allowed, pw set, [%d] %s\n", $link->errno, $link->error); 145 [008] Connect allowed, pw set, [0%A
|
/PHP-8.1/sapi/litespeed/ |
H A D | lsapilib.c | 975 ret = (*fp_lve_jail)( pw, error_msg ); in lsapi_jailLVE() 1019 struct passwd * pw; in setUID_LVE() local 1020 pw = getpwuid( uid ); in setUID_LVE() 1026 if ( pw && fp_lve_jail) in setUID_LVE() 1035 pw = getpwuid( uid ); in setUID_LVE() 1057 if ( pw && (pw->pw_gid == gid )) in setUID_LVE() 3872 struct passwd * pw; in lsapi_initSuEXEC() local 3904 pw = getpwnam( "nobody" ); in lsapi_initSuEXEC() 3905 if ( pw ) in lsapi_initSuEXEC() 3908 s_defaultUid = pw->pw_uid; in lsapi_initSuEXEC() [all …]
|
/PHP-8.1/ext/standard/tests/url/ |
H A D | base64_encode_basic_001.phpt | 188 0xA7: pw==
|
/PHP-8.1/ext/opcache/ |
H A D | ZendAccelerator.c | 4676 struct passwd *pw; 4685 pw = getpwnam(ZCG(accel_directives).preload_user); 4686 if (pw == NULL) { 4698 if (setgid(pw->pw_gid) < 0) { 4699 zend_accel_error(ACCEL_LOG_WARNING, "Preloading failed to setgid(%d)", pw->pw_gid); 4702 if (initgroups(pw->pw_name, pw->pw_gid) < 0) { 4703 …l_error(ACCEL_LOG_WARNING, "Preloading failed to initgroups(\"%s\", %d)", pw->pw_name, pw->pw_uid); 4706 if (setuid(pw->pw_uid) < 0) { 4707 zend_accel_error(ACCEL_LOG_WARNING, "Preloading failed to setuid(%d)", pw->pw_uid);
|
/PHP-8.1/ |
H A D | php.ini-development | 1115 ; https://php.net/odbc.default-pw 1196 ; https://php.net/mysqli.default-pw
|
H A D | php.ini-production | 1117 ; https://php.net/odbc.default-pw 1198 ; https://php.net/mysqli.default-pw
|
/PHP-8.1/build/ |
H A D | libtool.m4 | 1509 # pw32 DLLs use 'pw' prefix rather than 'lib' 1510 …library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g…
|