Searched refs:pw (Results 1 – 3 of 3) sorted by relevance
/curl/lib/ |
H A D | curl_ntlm_core.c | 360 unsigned char pw[14]; in Curl_ntlm_core_mk_lm_hash() local 369 memset(&pw[len], 0, 14 - len); in Curl_ntlm_core_mk_lm_hash() 377 setup_des_key(pw, DESKEY(ks)); in Curl_ntlm_core_mk_lm_hash() 381 setup_des_key(pw + 7, DESKEY(ks)); in Curl_ntlm_core_mk_lm_hash() 386 setup_des_key(pw, &des); in Curl_ntlm_core_mk_lm_hash() 388 setup_des_key(pw + 7, &des); in Curl_ntlm_core_mk_lm_hash() 392 encrypt_des(magic, lmbuffer, pw); in Curl_ntlm_core_mk_lm_hash() 434 unsigned char *pw; in Curl_ntlm_core_mk_nt_hash() local 439 if(!pw) in Curl_ntlm_core_mk_nt_hash() 442 ascii_to_unicode_le(pw, password, len); in Curl_ntlm_core_mk_nt_hash() [all …]
|
H A D | netrc.c | 358 struct passwd pw, *pw_res; in Curl_parsenetrc() local 359 if(!getpwuid_r(geteuid(), &pw, pwbuf, sizeof(pwbuf), &pw_res) in Curl_parsenetrc() 361 home = pw.pw_dir; in Curl_parsenetrc() 366 struct passwd *pw; in Curl_parsenetrc() local 367 pw = getpwuid(geteuid()); in Curl_parsenetrc() 368 if(pw) { in Curl_parsenetrc() 369 home = pw->pw_dir; in Curl_parsenetrc()
|
/curl/src/ |
H A D | tool_findfile.c | 145 struct passwd *pw = getpwuid(geteuid()); in findfile() local 146 if(pw) { in findfile() 147 char *home = pw->pw_dir; in findfile()
|
Completed in 9 milliseconds