History log of /openbsd-src/lib/libc/gen/readpassphrase.3 (Results 1 – 21 of 21)
Revision Date Author Comments
# bf198cc6 25-Jan-2019 millert <millert@openbsd.org>

I am retiring my old email address; replace it with my OpenBSD one.


# a0a728e1 06-Mar-2014 millert <millert@openbsd.org>

If RPP_STDIN is set the prompt is not displayed.
Use explicit_bzero in the example code.


# 13d73fe3 22-Jan-2014 guenther <guenther@openbsd.org>

Use consistent phrasing for bitmask flags.

tweaking and ok millert@ jmc@


# 64d4e987 05-Jun-2013 tedu <tedu@openbsd.org>

Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarze


# 9490d37c 31-May-2007 jmc <jmc@openbsd.org>

convert to new .Dd format;


# 7bac872d 22-Jul-2005 jaredy <jaredy@openbsd.org>

- sync prototypes and header file excerpts to reality
- many grammar, punctuation, macro, layout, spelling/typos,
rewording, etc. fixes
- avoid first person
- sprinkle crossrefs where relevant

hel

- sync prototypes and header file excerpts to reality
- many grammar, punctuation, macro, layout, spelling/typos,
rewording, etc. fixes
- avoid first person
- sprinkle crossrefs where relevant

help & ok jmc

show more ...


# 1e5ede29 25-Feb-2005 cloder <cloder@openbsd.org>

Be correct in our man pages when talking about NUL termination (that is,
termination with '\0') vs. null termination.
Input from krw@, jaredy@, jmc@. OK deraadt@


# ad6301ec 16-Apr-2004 jmc <jmc@openbsd.org>

more display/list fixes, and a little whitespace;


# 328f1f07 17-Jun-2003 millert <millert@openbsd.org>

Sync with share/misc/license.template and add missing DARPA credit
where applicable.


# 06f01696 03-Jun-2003 millert <millert@openbsd.org>

Use an ISC-tyle license for all my code; it is simpler and more permissive.


# ed2d24d7 30-May-2003 jmc <jmc@openbsd.org>

- correct macro usage
- section reorder


# 6c369c34 03-May-2003 jmc <jmc@openbsd.org>

typos;
ok millert@


# c9e1fe6f 28-Jun-2002 millert <millert@openbsd.org>

Add RPP_STDIN flag which acts as the converse of RPP_REQUIRE_TTY.
Based on a patch from Brett Eldridge.


# 73475aef 09-May-2002 millert <millert@openbsd.org>

now catches SIGALRM and SIGPIPE too


# 0a0516a6 15-Dec-2001 millert <millert@openbsd.org>

Document SIGTTIN and SIGTTOU now that we deal with them too.


# 3ae5daf0 07-Dec-2001 millert <millert@openbsd.org>

o Turn off ECHONL in addition to ECHO
o Return NULL of read(2) returns -1
o Add ERRORS and STANDARDS sections


# 5aa4c661 07-Dec-2001 millert <millert@openbsd.org>

Instead of restoring the tty mode, restoring the signal handler,
unblocking the signal and redelivering it just make all our
signal handler interupt system calls and set a flag. We can just
deliver

Instead of restoring the tty mode, restoring the signal handler,
unblocking the signal and redelivering it just make all our
signal handler interupt system calls and set a flag. We can just
deliver the signal at the end right before we would normally return.
This solves the SIG_IGN problem nicely and causes readpassphrase() to
return when someone hits ^C even if the handler is SIG_IGN.

show more ...


# 9ad5f321 07-Dec-2001 millert <millert@openbsd.org>

Document signal handling in readpassphrase(3)


# ea2542f8 06-Aug-2001 mpech <mpech@openbsd.org>

o) We always close .Bl and .Bd tags;
o) .Sh AUTHOR -> .Sh AUTHORS;
o) We don't like .Pp before/after .Sh;
o) We don't like .Pp before/after .Rs/.Re;
o) NetBSD -> .Nx;
o) OpenBSD -> .Ox;

millert@ ok


# 50772e64 24-Dec-2000 aaron <aaron@openbsd.org>

Various repairs, mostly to get rid of short lines.


# a6b38e9e 21-Nov-2000 millert <millert@openbsd.org>

Add readpasasphrase(3), a more flexible getpass(3) replacement.
getpass(3) is now implemented in terms of readpasasphrase(3).