Home
last modified time | relevance | path

Searched refs:pw (Results 1 – 12 of 12) sorted by relevance

/PHP-7.3/ext/standard/
H A Dphp_crypt_r.c146 pwl = (DWORD) strlen(pw); in php_md5_crypt_r()
170 if(!CryptHashData(ctx, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r()
189 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r()
195 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r()
215 CryptHashData(ctx, (const BYTE *)pw, 1, 0); in php_md5_crypt_r()
238 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r()
254 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r()
264 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r()
328 pwl = strlen(pw); in php_md5_crypt_r()
347 PHP_MD5Update(&ctx, (const unsigned char *)pw, pwl); in php_md5_crypt_r()
[all …]
H A Dphp_crypt_r.h50 extern char * php_md5_crypt_r(const char *pw, const char *salt, char *out);
H A Dfilestat.c435 struct passwd pw; in php_get_uid_by_name() local
445 if (getpwnam_r(name, &pw, pwbuf, pwbuflen, &retpwptr) != 0 || retpwptr == NULL) { in php_get_uid_by_name()
450 *uid = pw.pw_uid; in php_get_uid_by_name()
452 struct passwd *pw = getpwnam(name); in php_get_uid_by_name()
454 if (!pw) { in php_get_uid_by_name()
457 *uid = pw->pw_uid; in php_get_uid_by_name()
H A Dcrypt_freesec.c742 const char *pw; member
789 char *hash = crypt(tests[i].pw, tests[i].hash); in main()
/PHP-7.3/ext/posix/
H A Dposix.c1177 if (NULL == pw) in php_posix_passwd_to_array()
1185 add_assoc_long (return_value, "gid", pw->pw_gid); in php_posix_passwd_to_array()
1197 struct passwd *pw; in PHP_FUNCTION() local
1216 pw = &pwbuf; in PHP_FUNCTION()
1219 if (getpwnam_r(name, pw, buf, buflen, &pw) || pw == NULL) { in PHP_FUNCTION()
1230 if (NULL == (pw = getpwnam(name))) { in PHP_FUNCTION()
1237 if (!php_posix_passwd_to_array(pw, return_value)) { in PHP_FUNCTION()
1260 struct passwd *pw; in PHP_FUNCTION() local
1285 pw = &_pw; in PHP_FUNCTION()
1287 if (NULL == (pw = getpwuid(uid))) { in PHP_FUNCTION()
[all …]
/PHP-7.3/main/
H A Dfopen_wrappers.c366 struct passwd *pw; local
385 if (getpwnam_r(user, &pwstruc, pwbuf, pwbuflen, &pw)) {
390 pw = getpwnam(user);
392 if (pw && pw->pw_dir) {
393 …spprintf(&filename, 0, "%s%c%s%c%s", pw->pw_dir, PHP_DIR_SEPARATOR, PG(user_dir), PHP_DIR_SEPARATO…
/PHP-7.3/ext/mysqli/tests/
H A Dmysqli_expire_password.phpt100 /* allow connect, fix pw */
108 printf("[008] Connect allowed, pw set, [%d] %s\n", $link->errno, $link->error);
143 [008] Connect allowed, pw set, [0%A
/PHP-7.3/sapi/litespeed/
H A Dlsapilib.c957 ret = (*fp_lve_jail)( pw, error_msg ); in lsapi_jailLVE()
1001 struct passwd * pw; in setUID_LVE() local
1002 pw = getpwuid( uid ); in setUID_LVE()
1008 if ( pw && fp_lve_jail) in setUID_LVE()
1017 pw = getpwuid( uid ); in setUID_LVE()
1039 if ( pw && (pw->pw_gid == gid )) in setUID_LVE()
3799 struct passwd * pw; in lsapi_initSuEXEC() local
3831 pw = getpwnam( "nobody" ); in lsapi_initSuEXEC()
3832 if ( pw ) in lsapi_initSuEXEC()
3835 s_defaultUid = pw->pw_uid; in lsapi_initSuEXEC()
[all …]
/PHP-7.3/ext/standard/tests/url/
H A Dbase64_encode_basic_001.phpt194 0xA7: pw==
/PHP-7.3/
H A Dphp.ini-development1095 ; http://php.net/odbc.default-pw
1203 ; http://php.net/mysqli.default-pw
H A Dphp.ini-production1097 ; http://php.net/odbc.default-pw
1205 ; http://php.net/mysqli.default-pw
/PHP-7.3/build/
H A Dlibtool.m41498 # pw32 DLLs use 'pw' prefix rather than 'lib'
1499 …library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g…

Completed in 76 milliseconds