/src/sys/lib/libsa/ |
checkpasswd.c | 40 getpass(const char *prompt) function in typeref:typename:char * 123 passwd = getpass("Password: ");
|
stand.h | 288 char *getpass(const char *);
|
/src/usr.bin/telnet/ |
authenc.c | 105 } else if ((res = getpass(prmpt)) != NULL) {
|
/src/usr.bin/passwd/ |
local_passwd.c | 73 strcmp(crypt(getpass("Old password:"), pw->pw_passwd), 84 p = getpass("New password:"); 106 if (!strcmp(buf, getpass("Retype new password:")))
|
yp_passwd.c | 98 if (strcmp(crypt(p = getpass("Old password:"), 114 p = getpass("New password:"); 132 if (!strcmp(buf, getpass("Retype new password:")))
|
/src/lib/libc/gen/ |
getpass.c | 1 /* $NetBSD: getpass.c,v 1.30 2016/01/31 23:41:38 christos Exp $ */ 33 __RCSID("$NetBSD: getpass.c,v 1.30 2016/01/31 23:41:38 christos Exp $"); 57 __weak_alias(getpass,_getpass) 65 * - Historically getpass ate extra characters silently, we provide 67 * - Historically getpass "worked" by echoing characters when turning 327 getpass(const char *prompt) function in typeref:typename:char *
|
Makefile.inc | 22 getpass.c getprogname.c getpwent.c getttyent.c \ 69 getmntinfo.3 getnetgrent.3 getpagesize.3 getpass.3 \ 132 MLINKS+=getpass.3 getpass_r.3 133 MLINKS+=getpass.3 getpassfd.3
|
/src/usr.bin/chpass/ |
pw_yp.c | 154 yppw.oldpass = getpass("Old password:");
|
/src/usr.bin/pwhash/ |
pwhash.c | 242 string = getpass("Enter string: ");
|
/src/usr.bin/newgrp/ |
grutil.c | 257 p = getpass(prompt);
|
/src/include/ |
unistd.h | 238 char *getpass(const char *);
|
/src/bin/ed/ |
cbc.c | 234 if (*(p = getpass("Enter key: "))) {
|
/src/usr.bin/skeyinit/ |
skeyinit.c | 163 pw = getpass("Password:");
|
/src/usr.bin/su/ |
su.c | 275 p = getpass("Password:");
|
/src/usr.bin/ftp/ |
util.c | 439 p = getpass("Password: "); 451 p = getpass("Account: ");
|
cmds.c | 1500 password = getpass("Password: "); 1512 password = getpass("Account: "); 1824 ap = getpass("Account:");
|
fetch.c | 319 gotpass = getpass("Password: ");
|
/src/usr.bin/login/ |
login.c | 399 p = getpass(pwprompt);
|
/src/usr.bin/unzip/ |
unzip.c | 881 p = getpass(prompt);
|
/src/sbin/atactl/ |
atactl.c | 1859 pass = getpass("Password:"); 1875 pass = getpass("Confirm password:");
|
/src/usr.bin/bdes/ |
bdes.c | 279 p = getpass("Enter key: ");
|
/src/lib/libc/include/ |
namespace.h | 402 #define getpass _getpass macro
|
/src/sbin/init/ |
init.c | 702 clear = getpass("Password:");
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 5984 INTERCEPTOR(char *, getpass, const char *prompt) { 5986 COMMON_INTERCEPTOR_ENTER(ctx, getpass, prompt); 5989 char *res = REAL(getpass)(prompt); 5994 #define INIT_GETPASS COMMON_INTERCEPT_FUNCTION(getpass);
|