/PHP-5.6/ext/standard/ |
H A D | php_crypt_r.c | 147 pwl = (unsigned int) strlen(pw); in php_md5_crypt_r() 171 if(!CryptHashData(ctx, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r() 190 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r() 196 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r() 216 CryptHashData(ctx, (const BYTE *)pw, 1, 0); in php_md5_crypt_r() 239 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r() 255 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r() 265 if(!CryptHashData(ctx1, (BYTE *)pw, pwl, 0)) { in php_md5_crypt_r() 329 pwl = strlen(pw); in php_md5_crypt_r() 348 PHP_MD5Update(&ctx, (const unsigned char *)pw, pwl); in php_md5_crypt_r() [all …]
|
H A D | php_crypt_r.h | 51 extern char * php_md5_crypt_r(const char *pw, const char *salt, char *out);
|
H A D | filestat.c | 529 struct passwd pw; in php_get_uid_by_name() local 539 if (getpwnam_r(name, &pw, pwbuf, pwbuflen, &retpwptr) != 0 || retpwptr == NULL) { in php_get_uid_by_name() 544 *uid = pw.pw_uid; in php_get_uid_by_name() 546 struct passwd *pw = getpwnam(name); in php_get_uid_by_name() 548 if (!pw) { in php_get_uid_by_name() 551 *uid = pw->pw_uid; in php_get_uid_by_name()
|
H A D | crypt_freesec.c | 748 char *pw; member 795 char *hash = crypt(tests[i].pw, tests[i].hash); in main()
|
/PHP-5.6/ext/posix/ |
H A D | posix.c | 1092 if (NULL == pw) in php_posix_passwd_to_array() 1100 add_assoc_long (return_value, "gid", pw->pw_gid); in php_posix_passwd_to_array() 1112 struct passwd *pw; in PHP_FUNCTION() local 1131 pw = &pwbuf; in PHP_FUNCTION() 1133 if (getpwnam_r(name, pw, buf, buflen, &pw) || pw == NULL) { in PHP_FUNCTION() 1139 if (NULL == (pw = getpwnam(name))) { in PHP_FUNCTION() 1146 if (!php_posix_passwd_to_array(pw, return_value)) { in PHP_FUNCTION() 1169 struct passwd *pw; in PHP_FUNCTION() local 1187 pw = &_pw; in PHP_FUNCTION() 1189 if (NULL == (pw = getpwuid(uid))) { in PHP_FUNCTION() [all …]
|
/PHP-5.6/main/ |
H A D | fopen_wrappers.c | 374 struct passwd *pw; local 393 if (getpwnam_r(user, &pwstruc, pwbuf, pwbuflen, &pw)) { 398 pw = getpwnam(user); 400 if (pw && pw->pw_dir) { 401 …spprintf(&filename, 0, "%s%c%s%c%s", pw->pw_dir, PHP_DIR_SEPARATOR, PG(user_dir), PHP_DIR_SEPARATO…
|
/PHP-5.6/ext/mysqli/tests/ |
H A D | mysqli_expire_password.phpt | 92 /* allow connect, fix pw */ 100 printf("[008] Connect allowed, pw set, [%d] %s\n", $link->errno, $link->error); 136 [008] Connect allowed, pw set, [0%A
|
/PHP-5.6/sapi/litespeed/ |
H A D | lsapilib.c | 785 ret = (*fp_lve_jail)( pw, error_msg ); in lsapi_jailLVE() 829 struct passwd * pw; in setUID_LVE() local 830 pw = getpwuid( uid ); in setUID_LVE() 836 if ( pw && fp_lve_jail) in setUID_LVE() 845 pw = getpwuid( uid ); in setUID_LVE() 867 if ( pw && (pw->pw_gid == gid )) in setUID_LVE() 3155 struct passwd * pw; in lsapi_initSuEXEC() local 3187 pw = getpwnam( "nobody" ); in lsapi_initSuEXEC() 3188 if ( pw ) in lsapi_initSuEXEC() 3191 s_defaultUid = pw->pw_uid; in lsapi_initSuEXEC() [all …]
|
/PHP-5.6/sapi/apache_hooks/ |
H A D | php_apache.c | 933 const char *pw; in PHP_FUNCTION() local 947 pw = NULL; in PHP_FUNCTION() 948 status = ap_get_basic_auth_pw(r, &pw); in PHP_FUNCTION() 949 if (status == OK && pw) { in PHP_FUNCTION() 950 ZVAL_STRING(zpw, (char *)pw, 1); in PHP_FUNCTION()
|
/PHP-5.6/ext/standard/tests/url/ |
H A D | base64_encode_basic_001.phpt | 194 0xA7: pw==
|
/PHP-5.6/ |
H A D | php.ini-development | 1064 ; http://php.net/odbc.default-pw 1236 ; http://php.net/mysqli.default-pw
|
H A D | php.ini-production | 1064 ; http://php.net/odbc.default-pw 1236 ; http://php.net/mysqli.default-pw
|
/PHP-5.6/build/ |
H A D | libtool.m4 | 1502 # pw32 DLLs use 'pw' prefix rather than 'lib' 1503 …library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g…
|