HomeSort by relevance Sort by last modified time
    Searched refs:passwd (Results 1 - 25 of 520) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/menu/
passwd.c 20 static int passwd_compare_sha1(const char *passwd, const char *entry)
31 if ((p = strchr(passwd + 3, '$'))) {
32 SHA1Update(&d.ctx, (void *)passwd + 3, p - (passwd + 3));
35 p = passwd + 3; /* Assume no salt */
50 static int passwd_compare_md5(const char *passwd, const char *entry)
52 const char *crypted = crypt_md5(entry, passwd + 3);
55 return !strncmp(crypted, passwd, len) &&
56 (passwd[len] == '\0' || passwd[len] == '$')
    [all...]
  /bionic/tests/headers/posix/
pwd_h.c 34 TYPE(struct passwd);
35 STRUCT_MEMBER(struct passwd, char*, pw_name);
36 STRUCT_MEMBER(struct passwd, uid_t, pw_uid);
37 STRUCT_MEMBER(struct passwd, gid_t, pw_gid);
38 STRUCT_MEMBER(struct passwd, char*, pw_dir);
39 STRUCT_MEMBER(struct passwd, char*, pw_shell);
46 FUNCTION(getpwent, struct passwd* (*f)(void));
47 FUNCTION(getpwnam, struct passwd* (*f)(const char*));
48 FUNCTION(getpwnam_r, int (*f)(const char*, struct passwd*, char*, size_t, struct passwd**));
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/
pwd.h 71 #define _PATH_PASSWD "/etc/passwd"
72 #define _PATH_MASTERPASSWD "/etc/master.passwd"
75 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
105 struct passwd { struct
119 struct passwd *getpwuid(uid_t);
120 struct passwd *getpwnam(const char *);
124 int getpwnam_r( const char *, struct passwd *, char *, size_t,
125 struct passwd **);
126 int getpwuid_r( uid_t, struct passwd *, char *, size_t,
127 struct passwd **);
    [all...]
  /bionic/libc/include/
pwd.h 68 struct passwd { struct
83 struct passwd* getpwnam(const char* __name);
84 struct passwd* getpwuid(uid_t __uid);
87 struct passwd* getpwent(void) __INTRODUCED_IN(26);
92 int getpwnam_r(const char* __name, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result) __INTRODUCED_IN(12);
93 int getpwuid_r(uid_t __uid, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result) __INTRODUCED_IN(12);
  /external/ltp/testcases/kernel/security/mmc_security/
ask_password.sh 52 while [ -z "$passwd" ]; do
53 read -s -p "MMC password: " passwd; echo
55 if ! keyctl instantiate $1 "$passwd" $2 >/dev/null 2>&1; then
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
yppasswd.h 17 struct passwd { struct
26 typedef struct passwd passwd; typedef in typeref:struct:passwd
30 passwd newpw;
53 extern bool_t xdr_passwd (XDR *, passwd*);
yppasswd.x 40 * Update my passwd entry
48 struct passwd {
60 passwd newpw; /* new passwd entry */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
pwd.h 49 /* The passwd structure. */
50 struct passwd struct
85 extern struct passwd *getpwent (void);
95 extern struct passwd *fgetpwent (FILE *__stream);
103 extern int putpwent (__const struct passwd *__restrict __p,
111 extern struct passwd *getpwuid (__uid_t __uid);
117 extern struct passwd *getpwnam (__const char *__name);
140 extern int getpwent_r (struct passwd *__restrict __resultbuf,
142 struct passwd **__restrict __result);
146 struct passwd *__restrict __resultbuf
    [all...]
  /external/ppp/pppd/plugins/
passwordfd.c 33 static int pwfd_passwd (char *user, char *passwd)
40 if (passwd == NULL)
44 strcpy (passwd, save_passwd);
50 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood);
66 passwd[readgood] = 0;
67 strcpy (save_passwd, passwd);
passprompt.c 28 static int promptpass(char *user, char *passwd)
38 if (!passwd)
73 red = read(p[0], passwd + readgood, MAXSECRETLEN-1 - readgood);
97 passwd[readgood] = 0;
  /external/e2fsprogs/include/mingw/
pwd.h 6 __inline struct passwd* getpwnam (char* g){return 0;}
8 struct passwd struct
  /external/e2fsprogs/include/nonunix/
pwd.h 7 __inline struct passwd* getpwnam (char* g){return 0;}
10 struct passwd struct
  /external/libvncserver/common/
vncauth.c 73 rfbEncryptAndStorePasswd(char *passwd, char *fname)
89 if (i < strlen(passwd)) {
90 encryptedPasswd[i] = passwd[i];
122 unsigned char *passwd = (unsigned char *)malloc(9); local
125 free(passwd);
133 free(passwd);
136 passwd[i] = ch;
142 rfbDes(passwd, passwd);
144 passwd[8] = 0
    [all...]
  /external/ltp/
IDcheck.sh 39 passwd="$DESTDIR/etc/passwd"
70 for i in "$passwd" "$group"; do
77 fe bin "$passwd"; NO_BIN_ID=$?
78 fe daemon "$passwd"; NO_DAEMON_ID=$?
79 fe nobody "$passwd"; NO_NOBODY_ID=$?
93 echo "Password file: $passwd"
109 if ! touch "$group" "$passwd" 2>/dev/null; then
110 echo "Failed to touch $group or $passwd"
125 if ! fe "$name" "$passwd" && [ $no_id -ne 0 ] ; the
    [all...]
  /external/wpa_supplicant_8/src/tls/
pkcs5.h 14 const char *passwd, size_t *data_len);
pkcs8.h 14 pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd);
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
getpwnam_r_invalid_user.cc 13 struct passwd pwd;
14 struct passwd *pwdres;
  /external/ltp/testcases/kernel/syscalls/setreuid/
setreuid04.c 38 static struct passwd nobody, root;
48 struct passwd *exp_real_usr;
49 struct passwd *exp_eff_usr;
61 static void uid_verify(struct passwd *, struct passwd *, char *);
133 static void uid_verify(struct passwd *ru, struct passwd *eu, char *when)
  /external/zlib/src/contrib/minizip/
crypt.h 65 static void init_keys(const char* passwd,unsigned long* pkeys,const z_crc_t* pcrc_32_tab)
70 while (*passwd != '\0') {
71 update_keys(pkeys,pcrc_32_tab,(int)*passwd);
72 passwd++;
90 static int crypthead(const char* passwd, /* password string */
114 init_keys(passwd, pkeys, pcrc_32_tab);
121 init_keys(passwd, pkeys, pcrc_32_tab);
  /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/
crypt.h 65 static void init_keys(const char* passwd,unsigned long* pkeys,const z_crc_t* pcrc_32_tab)
70 while (*passwd != '\0') {
71 update_keys(pkeys,pcrc_32_tab,(int)*passwd);
72 passwd++;
90 static int crypthead(const char* passwd, /* password string */
114 init_keys(passwd, pkeys, pcrc_32_tab);
121 init_keys(passwd, pkeys, pcrc_32_tab);
  /external/ltp/testcases/commands/sssd/
sssd01 37 getent passwd $username@LOCAL | grep "$LTPTMP" >/dev/null 2>&1
46 getent passwd $username@LOCAL | grep "$LTPTMP" >/dev/null 2>&1
72 getent passwd $username@LOCAL | grep "$home_dir" >/dev/null 2>&1
81 getent passwd $username@LOCAL | grep "$home_dir" >/dev/null 2>&1
105 getent passwd $username@LOCAL | grep "$home_dir" >/dev/null 2>&1
114 getent passwd $username@LOCAL | grep "$home_dir" >/dev/null 2>&1
  /external/curl/docs/cmdline-opts/
proxy-cert.d 2 Arg: <cert[:passwd]>
  /external/tensorflow/tensorflow/tools/docker/
jupyter_notebook_config.py 16 from IPython.lib import passwd
27 c.NotebookApp.password = passwd(password)
  /bionic/libc/private/
grp_pwd.h 45 passwd passwd_;
  /external/swiftshader/third_party/LLVM/utils/
plotNLT.pl 11 $passwd=shift @ARGV;
15 $dbh = DBI->connect($connectionInfo,$userid,$passwd) or die DBI->errstr;

Completed in 666 milliseconds

1 2 3 4 5 6 7 8 91011>>