Searched refs:passwd (Results 176 - 200 of 422) sorted by relevance

1234567891011>>

/external/toybox/toys/pending/
H A Dgroupdel.c49 struct passwd *pw;
H A Duseradd.c45 struct passwd pwd;
62 // add_user(), add a new entry in /etc/passwd, /etc/shadow files
73 struct passwd *pw = getpwuid(getuid());
113 * 1. add an entry to /etc/passwd and /etcshadow file
115 * 3. update the user passwd by running 'passwd' utility
118 // 1. add an entry to /etc/passwd and /etc/shadow file
122 if (update_password("/etc/passwd", pwd.pw_name, entry)) error_exit("updating passwd file failed");
127 (unsigned)(time(NULL))/(24*60*60)); //passwd i
[all...]
/external/curl/src/
H A Dtool_paramhlp.c443 char passwd[256] = ""; local
464 getpass_r(prompt, passwd, sizeof(passwd));
465 passwdlen = strlen(passwd);
479 memcpy(&passptr[userlen + 1], passwd, passwdlen + 1);
/external/scrypt/lib/crypto/
H A Dcrypto_scrypt-sse.c257 * crypto_scrypt(passwd, passwdlen, salt, saltlen, N, r, p, buf, buflen):
258 * Compute scrypt(passwd[0 .. passwdlen - 1], salt[0 .. saltlen - 1], N, r,
266 crypto_scrypt(const uint8_t * passwd, size_t passwdlen, argument
340 PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, salt, saltlen, 1, EVP_sha256(), p * 128 * r, B);
342 PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, 1, B, p * 128 * r);
353 PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, B, p * 128 * r, 1, EVP_sha256(), buflen, buf);
355 PBKDF2_SHA256(passwd, passwdlen, B, p * 128 * r, 1, buf, buflen);
/external/python/cpython2/Lib/
H A Durllib.py521 if user: user, passwd = splitpasswd(user)
522 else: passwd = None
525 passwd = passwd or ''
550 ftpwrapper(user, passwd, host, port, dirs)
738 user, passwd = self.get_user_passwd(proxyhost, realm, i)
739 if not (user or passwd): return None
740 proxyhost = quote(user, safe='') + ':' + quote(passwd, safe='') + '@' + proxyhost
755 user, passwd = self.get_user_passwd(proxyhost, realm, i)
756 if not (user or passwd)
[all...]
/external/curl/lib/
H A Dldap.c190 const char *passwd, unsigned long authflags)
220 if(method && user && passwd) {
221 rc = Curl_create_sspi_identity(user, passwd, &cred);
237 const char *user, const char *passwd)
244 if(user && passwd && (conn->data->set.httpauth & CURLAUTH_BASIC)) {
246 inpass = Curl_convert_UTF8_to_tchar((char *) passwd);
255 rc = ldap_win_bind_auth(server, user, passwd, conn->data->set.httpauth);
287 char *passwd = NULL; local
324 passwd = conn->passwd;
189 ldap_win_bind_auth(LDAP *server, const char *user, const char *passwd, unsigned long authflags) argument
236 ldap_win_bind(struct connectdata *conn, LDAP *server, const char *user, const char *passwd) argument
[all...]
H A Durl.c678 Curl_safefree(conn->passwd);
683 Curl_safefree(conn->http_proxy.passwd);
684 Curl_safefree(conn->socks_proxy.passwd);
1294 strcmp(needle->passwd, check->passwd)) {
1356 strcmp(needle->passwd, check->passwd))
1366 /* Both check->http_proxy.user and check->http_proxy.passwd can be
1368 if(!check->http_proxy.user || !check->http_proxy.passwd)
1372 strcmp(needle->http_proxy.passwd, chec
3113 parse_url_login(struct Curl_easy *data, struct connectdata *conn, char **user, char **passwd, char **options) argument
3534 set_login(struct connectdata *conn, const char *user, const char *passwd, const char *options) argument
4024 char *passwd = NULL; local
[all...]
H A Dhttp_ntlm.c143 passwdp = conn->http_proxy.passwd;
150 passwdp = conn->passwd;
H A Dopenldap.c292 struct berval passwd; local
296 passwd.bv_val = conn->passwd;
297 passwd.bv_len = strlen(passwd.bv_val);
301 passwd.bv_val = NULL;
302 passwd.bv_len = 0;
304 rc = ldap_sasl_bind(li->ld, binddn, LDAP_SASL_SIMPLE, &passwd,
H A Dsetup-vms.h76 struct passwd * decc_getpwuid(uid_t uid);
139 static struct passwd vms_passwd_cache;
141 static struct passwd * vms_getpwuid(uid_t uid)
143 struct passwd * my_passwd;
/external/autotest/site_utils/
H A Ddb_replica_checker.py56 passwd=DATABASE_PASSWORD,
68 passwd=DATABASE_PASSWORD,
/external/ltp/testcases/kernel/syscalls/utils/
H A Dcommon_j_h.c61 struct passwd *pw;
82 struct passwd *pw;
/external/syslinux/core/fs/pxe/
H A Durlparse.c96 ui->passwd = s+1;
211 "passwd: %s\n"
216 url.scheme, url.user, url.passwd, url.host, url.port,
/external/libxml2/include/libxml/
H A Dnanoftp.h113 const char *passwd,
/external/ltp/testcases/kernel/module/delete_module/
H A Ddelete_module02.c55 struct passwd *ltpuser;
/external/ltp/testcases/kernel/syscalls/access/
H A Daccess04.c108 struct passwd *pw;
/external/ltp/testcases/kernel/syscalls/bind/
H A Dbind02.c67 struct passwd *pw;
/external/ltp/testcases/kernel/syscalls/chmod/
H A Dchmod07.c161 struct passwd *ltpuser; /* password struct for ltpuser1 */
/external/ltp/testcases/kernel/syscalls/fchmod/
H A Dfchmod02.c164 struct passwd *ltpuser; /* password struct for ltpuser1 */
179 tst_brkm(TBROK, cleanup, "%s not in /etc/passwd", LTPUSER);
/external/ltp/testcases/kernel/syscalls/fchown/
H A Dfchown03.c55 static struct passwd *ltpuser;
/external/ltp/testcases/kernel/syscalls/fstat/
H A Dfstat02.c111 struct passwd *ltpuser;
H A Dfstat05.c101 struct passwd *ltpuser;
/external/ltp/testcases/kernel/syscalls/ipc/msgctl/
H A Dmsgctl04.c67 struct passwd *ltpuser;
/external/ltp/testcases/kernel/syscalls/ipc/msgrcv/
H A Dmsgrcv02.c73 struct passwd *ltpuser;
/external/ltp/testcases/kernel/syscalls/ipc/msgsnd/
H A Dmsgsnd02.c48 static struct passwd *pw;

Completed in 505 milliseconds

1234567891011>>