Query: getpass
OS: mojave
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
GETPASS(3) BSD Library Functions Manual GETPASS(3)NAMEgetpass -- get a passwordLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <pwd.h> #include <unistd.h> char * getpass(const char *prompt);DESCRIPTIONThe getpass() function displays a prompt to, and reads in a password from, /dev/tty. If this file is not accessible, getpass() displays the prompt on the standard error output and reads from the standard input. The password may be up to _PASSWORD_LEN (currently 128) characters in length. Any additional characters and the terminating newline charac- ter are discarded. The getpass() function turns off character echoing while reading the password.RETURN VALUESThe getpass() function returns a pointer to the null terminated password.FILES/dev/ttySEE ALSOcrypt(3), readpassphrase(3)HISTORYA getpass() function appeared in Version 7 AT&T UNIX.BUGSThe getpass() function leaves its result in an internal static object and returns a pointer to that object. Subsequent calls to getpass() will modify the same object. The calling process should zero the password as soon as possible to avoid leaving the cleartext password visible in the process's address space. Upon receipt of a SIGTSTP, the input buffer will be flushed, so any partially typed password must be retyped when the process continues.BSDJune 4, 1993 BSD
Related Man Pages |
---|
getpass(3) - linux |
getpass(3) - debian |
getpass(3) - netbsd |
getpass(3c) - sunos |
getpass(3) - plan9 |
Similar Topics in the Unix Linux Community |
---|
Changing the password prompt |
Automating scsudo |
Xterm window,should not prompt for a password? |
Tweaked getpass() function gives an untraceable bug |
How to add password prompt between script ? |