Searched refs:passwd (Results 51 - 75 of 476) sorted by relevance

1234567891011>>

/freebsd-9.3-release/usr.sbin/pw/
H A Dpw.h79 char *nispasswd; /* Path to NIS version of the passwd file */
112 int addpwent(struct passwd * pwd);
113 int delpwent(struct passwd * pwd);
114 int chgpwent(char const * login, struct passwd * pwd);
115 int fmtpwent(char *buf, struct passwd * pwd);
117 int addnispwent(const char *path, struct passwd *pwd);
119 int chgnispwent(const char *path, const char *login, struct passwd *pwd);
H A Dpwupd.c107 fmtpwentry(char *buf, struct passwd * pwd, int type)
132 fmtpwent(char *buf, struct passwd * pwd)
138 pw_update(struct passwd * pwd, char const * user, int mode)
162 * Update the passwd file first
175 * Then the master.passwd file
196 addpwent(struct passwd * pwd)
202 chgpwent(char const * login, struct passwd * pwd)
208 delpwent(struct passwd * pwd)
/freebsd-9.3-release/contrib/opie/
H A Dopiepasswd.c123 struct passwd *pp;
337 char passwd[OPIE_SECRET_MAX + 1], passwd2[OPIE_SECRET_MAX + 1]; local
352 if (!opiereadpass(passwd, sizeof(passwd), 0)) {
356 if (!passwd[0]) {
364 if (opiekeycrunch(MDX, &key, opie.opie_seed, passwd) != 0) {
368 memset(passwd, 0, sizeof(passwd));
383 if (!opiereadpass(passwd, sizeof(passwd),
[all...]
/freebsd-9.3-release/contrib/sendmail/contrib/
H A Dpasswd-to-alias.pl9 print "# Generated from passwd by $0\n";
13 ($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) = @a;
/freebsd-9.3-release/crypto/heimdal/appl/login/
H A Dshadow.c41 #define _PATH_CHPASS "/usr/bin/passwd"
45 change_passwd(const struct passwd *who)
52 printf("fork /bin/passwd");
55 execlp(_PATH_CHPASS, "passwd", who->pw_name, (char *) 0);
64 check_shadow(const struct passwd *pw, const struct spwd *sp)
/freebsd-9.3-release/crypto/openssh/
H A Dauth-rh-rsa.c42 auth_rhosts_rsa_key_allowed(struct passwd *pw, char *cuser, char *chost,
69 struct passwd *pw = authctxt->pw;
H A Dsession.h35 struct passwd *pw;
80 void do_setusercontext(struct passwd *);
H A Dsftp.h98 struct passwd;
100 int sftp_server_main(int, char **, struct passwd *);
H A Dsftp-server-main.c39 struct passwd *user_pw;
/freebsd-9.3-release/etc/periodic/security/
H A D300.chkuid043 n=$(awk -F: '/^#/ {next} $3==0 {print $1,$3}' /etc/master.passwd |
H A D400.passwdless42 n=$(awk -F: 'NF > 1 && $1 !~ /^[#+-]/ && $2=="" {print $0}' /etc/master.passwd |
/freebsd-9.3-release/lib/librpcsvc/
H A Dsecretkey.c58 * passwd to decrypt it.
61 getsecretkey(char *netname, char *secretkey, char *passwd) argument
75 if (!xdecrypt(p, passwd)) {
/freebsd-9.3-release/contrib/bind9/bin/confgen/unix/
H A Dos.c35 struct passwd *pw;
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dverify.c51 struct passwd *pw;
/freebsd-9.3-release/lib/libcompat/4.4/
H A Dcuserid.c44 struct passwd *pwd;
/freebsd-9.3-release/lib/libc/gen/
H A Dgetpwent.c95 int __pw_parse_entry(char *, size_t, struct passwd *, int, int *errnop);
97 static void pwd_init(struct passwd *);
104 static struct passwd *getpw(int (*fn)(union key, struct passwd *, char *,
105 size_t, struct passwd **), union key);
106 static int wrap_getpwnam_r(union key, struct passwd *, char *,
107 size_t, struct passwd **);
108 static int wrap_getpwuid_r(union key, struct passwd *, char *, size_t,
109 struct passwd **);
110 static int wrap_getpwent_r(union key, struct passwd *, cha
416 NSS_MP_CACHE_HANDLING(passwd); variable
[all...]
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dport-uw.c55 struct passwd *pw = authctxt->pw;
93 char password_file[] = "/etc/passwd";
95 struct passwd *ent = NULL;
99 * If the passwd file has dissapeared we are in a bad state.
132 get_iaf_password(struct passwd *pw)
140 fatal("ia_get_logpwd: Unable to get the shadow passwd");
145 fatal("ia_openinfo: Unable to open the shadow passwd file");
/freebsd-9.3-release/lib/libcrypt/
H A Dcrypt-md5.c53 static char passwd[120], *p; local
102 strcpy(passwd, magic);
103 strncat(passwd, sp, (u_int)sl);
104 strcat(passwd, "$");
133 p = passwd + strlen(passwd);
152 return (passwd);
/freebsd-9.3-release/usr.bin/chpass/
H A Dedit.c68 static int display(const char *tfn, struct passwd *pw);
69 static struct passwd *verify(const char *tfn, struct passwd *pw);
71 struct passwd *
72 edit(const char *tfn, struct passwd *pw)
74 struct passwd *npw;
109 display(const char *tfn, struct passwd *pw)
198 static struct passwd *
199 verify(const char *tfn, struct passwd *pw)
201 struct passwd *np
[all...]
/freebsd-9.3-release/usr.sbin/nscd/agents/
H A Dpasswd.c40 #include "passwd.h"
42 static int passwd_marshal_func(struct passwd *, char *, size_t *);
49 passwd_marshal_func(struct passwd *pwd, char *buffer, size_t *buffer_size)
52 struct passwd new_pwd;
56 desired_size = sizeof(struct passwd) + sizeof(char *) +
75 memcpy(&new_pwd, pwd, sizeof(struct passwd));
79 p = buffer + sizeof(struct passwd) + sizeof(char *);
80 memcpy(buffer + sizeof(struct passwd), &p, sizeof(char *));
124 memcpy(buffer, &new_pwd, sizeof(struct passwd));
138 struct passwd *resul
[all...]
/freebsd-9.3-release/etc/
H A Drc.bsdextended120 for x in `awk -F: '($3 >= 1001) && ($3 != 65534) { print $1 }' /etc/passwd`;
129 for x in `awk -F: '($3 >= 1001) && ($3 != 65534) { print $1 }' /etc/passwd`;
136 for x in `awk -F: '($3 >= 1001) && ($3 != 65534) { print $3 }' /etc/passwd`;
/freebsd-9.3-release/contrib/wpa/src/crypto/
H A Dcrypto_internal-rsa.c38 const char *passwd)
47 if (passwd) {
49 res = pkcs8_enc_key_import(key, len, passwd);
36 crypto_private_key_import(const u8 *key, size_t len, const char *passwd) argument
/freebsd-9.3-release/share/man/man5/
H A DMakefile49 passwd.5 \
77 MLINKS+=passwd.5 master.passwd.5
/freebsd-9.3-release/usr.bin/id/
H A Did.c60 void id_print(struct passwd *, int, int, int);
61 void pline(struct passwd *);
62 void pretty(struct passwd *);
64 void group(struct passwd *, int);
67 struct passwd *who(char *);
75 struct passwd *pw;
224 pretty(struct passwd *pw)
264 id_print(struct passwd *pw, int use_ggl, int p_euid, int p_egid)
375 group(struct passwd *pw, int nflag)
438 struct passwd *
[all...]
/freebsd-9.3-release/contrib/sendmail/include/sm/
H A Dmbdb.h40 extern void sm_mbdb_frompw __P((SM_MBDB_T *, struct passwd *));

Completed in 214 milliseconds

1234567891011>>