Fix last ChangeLog entry.
[gnulib.git] / doc / glibc-functions / getpass.texi
blobd995cae6c486f65606598d45fa68a332190ee75c
1 @node getpass
2 @subsection @code{getpass}
3 @findex getpass
5 Documentation:
6 @itemize
7 @item
8 @ifinfo
9 @ref{getpass,,Reading Passphrases,libc},
10 @end ifinfo
11 @ifnotinfo
12 @url{https://www.gnu.org/software/libc/manual/html_node/getpass.html},
13 @end ifnotinfo
14 @item
15 @uref{https://www.kernel.org/doc/man-pages/online/pages/man3/getpass.3.html,,man getpass}.
16 @end itemize
18 Gnulib module: getpass or getpass-gnu
19 @mindex getpass
20 @mindex getpass-gnu
22 Portability problems fixed by either Gnulib module @code{getpass} or @code{getpass-gnu}:
23 @itemize
24 @item
25 This function is missing on some platforms:
26 mingw, MSVC 14, Android 9.0.
27 @item
28 This function cannot be called from plain inline or extern inline functions
29 on some platforms:
30 Android 13.
31 @end itemize
33 Portability problems fixed by Gnulib module @code{getpass-gnu}:
34 @itemize
35 @item
36 The returned password is truncated to PASS_MAX characters on some platforms:
37 uClibc (256), musl (128), macOS 14 (128), FreeBSD 14.0 (128), NetBSD 3.0 (128), OpenBSD 4.0 (128), AIX 5.1 (32), HP-UX 11 (8), Solaris 11 2010-11 (8, even less than PASS_MAX), Cygwin (128).
38 The gnulib implementation returns the password untruncated.
39 @end itemize
41 Portability problems not fixed by Gnulib:
42 @itemize
43 @end itemize