Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dphp_crypt_r.c147 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 Dphp_crypt_r.h51 extern char * php_md5_crypt_r(const char *pw, const char *salt, char *out);
H A Dfilestat.c529 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 Dcrypt_freesec.c748 char *pw; member
795 char *hash = crypt(tests[i].pw, tests[i].hash); in main()
/PHP-5.5/ext/posix/
H A Dposix.c1092 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.5/main/
H A Dfopen_wrappers.c374 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.5/ext/mysqli/tests/
H A Dmysqli_expire_password.phpt92 /* 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.5/sapi/litespeed/
H A Dlsapilib.c751 ret = (*fp_lve_jail)( pw, error_msg ); in lsapi_jailLVE()
795 struct passwd * pw; in setUID_LVE() local
796 pw = getpwuid( uid ); in setUID_LVE()
802 if ( pw && fp_lve_jail) in setUID_LVE()
811 pw = getpwuid( uid ); in setUID_LVE()
833 if ( pw && (pw->pw_gid == gid )) in setUID_LVE()
3101 struct passwd * pw; in lsapi_initSuEXEC() local
3133 pw = getpwnam( "nobody" ); in lsapi_initSuEXEC()
3134 if ( pw ) in lsapi_initSuEXEC()
3137 s_defaultUid = pw->pw_uid; in lsapi_initSuEXEC()
[all …]
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c933 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.5/ext/standard/tests/url/
H A Dbase64_encode_basic_001.phpt194 0xA7: pw==
/PHP-5.5/
H A Dphp.ini-development1028 ; http://php.net/odbc.default-pw
1200 ; http://php.net/mysqli.default-pw
H A Dphp.ini-production1028 ; http://php.net/odbc.default-pw
1200 ; http://php.net/mysqli.default-pw
/PHP-5.5/build/
H A Dlibtool.m41502 # 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…

Completed in 54 milliseconds