HomeSort by relevance Sort by last modified time
    Searched refs:passwd (Results 101 - 125 of 310) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/openssh/openbsd-compat/
port-aix.h 87 void aix_usrinfo(struct passwd *);
92 int sys_auth_allowed_user(struct passwd *, Buffer *);
port-irix.c 47 irix_setusercontext(struct passwd *pw)
  /external/openssh/
platform.c 93 platform_setusercontext(struct passwd *pw)
137 platform_setusercontext_post_groups(struct passwd *pw)
misc.h 40 struct passwd *pwcopy(struct passwd *);
auth-passwd.c 1 /* $OpenBSD: auth-passwd.c,v 1.43 2007/09/21 08:15:29 djm Exp $ */
83 struct passwd * pw = authctxt->pw;
101 /* Fall back to ordinary passwd authentication. */
169 struct passwd *pw = authctxt->pw;
194 struct passwd *pw = authctxt->pw;
auth-rhosts.c 187 auth_rhosts(struct passwd *pw, const char *client_user)
197 auth_rhosts2_raw(struct passwd *pw, const char *client_user, const char *hostname,
317 auth_rhosts2(struct passwd *pw, const char *client_user, const char *hostname,
auth-sia.c 83 session_setup_sia(struct passwd *pw, char *tty)
  /external/dropbear/
svr-authpam.c 44 char* passwd; member in struct:UserDataS
118 resp->resp = m_strdup(userDatap->passwd);
119 m_burn(userDatap->passwd, strlen(userDatap->passwd));
199 userData.passwd = password;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ftplib.py 9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
82 host, user, passwd, acct, timeout
112 # and user, passwd, acct (for login())
113 def __init__(self, host='', user='', passwd='', acct='',
119 self.login(user, passwd, acct)
373 def login(self, user = '', passwd = '', acct = ''):
376 if not passwd: passwd = ''
378 if user == 'anonymous' and passwd in ('', '-'):
386 passwd = passwd + 'anonymous@
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ftplib.py 9 >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@
82 host, user, passwd, acct, timeout
112 # and user, passwd, acct (for login())
113 def __init__(self, host='', user='', passwd='', acct='',
119 self.login(user, passwd, acct)
373 def login(self, user = '', passwd = '', acct = ''):
376 if not passwd: passwd = ''
378 if user == 'anonymous' and passwd in ('', '-'):
386 passwd = passwd + 'anonymous@
    [all...]
  /external/chromium/chrome/browser/policy/
policy_path_parser_posix.cc 26 struct passwd* user = getpwuid(geteuid());
  /external/chromium_org/remoting/base/
util.cc 314 struct passwd* passwd = getpwuid(getuid()); local
315 return passwd ? passwd->pw_name : std::string();
322 struct passwd passwd;
323 struct passwd* passwd_result = NULL;
324 getpwuid_r(getuid(), &passwd, buf.get(), buf_size, &passwd_result);
  /external/e2fsprogs/debian/
libuuid1.postinst 30 if ! getent passwd | grep -q libuuid; then
  /system/vold/
cryptfs.h 139 typedef void (*kdf_func)(char *passwd, unsigned char *salt, unsigned char *ikey, void *params);
145 int cryptfs_enable(char *flag, char *passwd);
cryptfs.c 871 static void pbkdf2(char *passwd, unsigned char *salt, unsigned char *ikey, void *params) {
873 PKCS5_PBKDF2_HMAC_SHA1(passwd, strlen(passwd), salt, SALT_LEN,
877 static void scrypt(char *passwd, unsigned char *salt, unsigned char *ikey, void *params) {
885 crypto_scrypt((unsigned char *) passwd, strlen(passwd), salt, SALT_LEN, N, r, p, ikey,
889 static int encrypt_master_key(char *passwd, unsigned char *salt,
900 scrypt(passwd, salt, ikey, crypt_ftr);
928 static int decrypt_master_key_aux(char *passwd, unsigned char *salt,
938 kdf(passwd, salt, ikey, kdf_params)
    [all...]
  /external/ppp/pppd/
auth.c 162 /* Set if we got the contents of passwd[] from the pap-secrets file. */
175 int (*pap_auth_hook) __P((char *user, char *passwd, char **msgp,
183 int (*pap_passwd_hook) __P((char *user, char *passwd)) = NULL;
189 int (*chap_passwd_hook) __P((char *user, char *passwd)) = NULL;
223 bool uselogin = 0; /* Use /etc/passwd for checking PAP */
368 { "password", o_string, passwd,
450 if (override_value("passwd", option_priority, fname))
451 strlcpy(passwd, p, sizeof(passwd));
763 if (passwd[0] == 0)
    [all...]
  /external/chromium/chrome/browser/sync/resources/
gaia_login.js 33 } else if (form.passwd) {
34 form.passwd.focus();
42 document.getElementById('passwd').disabled = false;
48 f.passwd.value = ""; // Reset the password field
100 document.getElementById('passwd').disabled = false;
170 document.getElementById('passwd').disabled = true;
178 "pass" : f.passwd.value,
208 document.getElementById('passwd').disabled = false;
227 if (null == f.passwd.value || "" == f.passwd.value)
    [all...]
  /external/scrypt/lib/crypto/
crypto_scrypt-neon.c 184 * crypto_scrypt(passwd, passwdlen, salt, saltlen, N, r, p, buf, buflen):
185 * Compute scrypt(passwd[0 .. passwdlen - 1], salt[0 .. saltlen - 1], N, r,
193 crypto_scrypt(const uint8_t * passwd, size_t passwdlen,
267 PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, salt, saltlen, 1, EVP_sha256(), p * 128 * r, B);
269 PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, 1, B, p * 128 * r);
280 PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, B, p * 128 * r, 1, EVP_sha256(), buflen, buf);
282 PBKDF2_SHA256(passwd, passwdlen, B, p * 128 * r, 1, buf, buflen);
crypto_scrypt-ref.c 211 * crypto_scrypt(passwd, passwdlen, salt, saltlen, N, r, p, buf, buflen):
212 * Compute scrypt(passwd[0 .. passwdlen - 1], salt[0 .. saltlen - 1], N, r,
220 crypto_scrypt(const uint8_t * passwd, size_t passwdlen,
263 PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, salt, saltlen, 1, EVP_sha256(), p * 128 * r, B);
265 PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, 1, B, p * 128 * r);
276 PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, B, p * 128 * r, 1, EVP_sha256(), buflen, buf);
278 PBKDF2_SHA256(passwd, passwdlen, B, p * 128 * r, 1, buf, buflen);
  /external/wpa_supplicant_8/src/tls/
pkcs5.c 140 const char *passwd)
150 addr[0] = (const u8 *) passwd;
151 len[0] = os_strlen(passwd);
172 const char *passwd, size_t *data_len)
184 ctx = pkcs5_crypto_init(&params, passwd);
pkcs8.c 122 pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd)
130 if (passwd == NULL)
178 passwd, &data_len);
  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 161 * @param passwd String to set
163 public void setPassword(String passwd) {
166 userInfo.setPassword(passwd);
  /system/extras/su/
su.c 37 struct passwd *pw;
104 struct passwd *pw;
  /external/chromium_org/chrome/browser/policy/
policy_path_parser_linux.cc 37 struct passwd* user = getpwuid(geteuid());
  /external/openssh/contrib/cygwin/
ssh-user-config 79 pwdhome=$(awk -F: '{ if ( $3 == '${uid}' ) print $6; }' < ${SYSCONFDIR}/passwd)
83 "There is no home directory set for you in ${SYSCONFDIR}/passwd." \
90 "${pwdhome} is set in ${SYSCONFDIR}/passwd as your home directory" \
99 csih_warning "Your home directory in ${SYSCONFDIR}/passwd is set to root (/). This is not recommended!"
252 # Check passwd file
253 if [ ! -f ${SYSCONFDIR}/passwd ]
256 "${SYSCONFDIR}/passwd is nonexistant. Please generate an ${SYSCONFDIR}/passwd file" \

Completed in 3166 milliseconds

1 2 3 45 6 7 8 91011>>