diff options
author | 2001-06-24 05:35:33 +0000 | |
---|---|---|
committer | 2001-06-24 05:35:33 +0000 | |
commit | 22548184de4fe7218da9dbb22f9dd176affdf96b (patch) | |
tree | ebbc18e3f9d00258ea05641435c5536e5a827b42 /usr.bin/ssh/readpass.h | |
parent | move ip+hostname check to match.c (diff) | |
download | wireguard-openbsd-22548184de4fe7218da9dbb22f9dd176affdf96b.tar.xz wireguard-openbsd-22548184de4fe7218da9dbb22f9dd176affdf96b.zip |
switch to readpassphrase(3)
2.7/8-stable needs readpassphrase.[ch] from libc
Diffstat (limited to 'usr.bin/ssh/readpass.h')
-rw-r--r-- | usr.bin/ssh/readpass.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/usr.bin/ssh/readpass.h b/usr.bin/ssh/readpass.h index 55ed294da76..37f85002b40 100644 --- a/usr.bin/ssh/readpass.h +++ b/usr.bin/ssh/readpass.h @@ -1,4 +1,4 @@ -/* $OpenBSD: readpass.h,v 1.3 2001/05/06 17:52:08 mouring Exp $ */ +/* $OpenBSD: readpass.h,v 1.4 2001/06/24 05:35:33 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -12,9 +12,6 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* - * Reads a passphrase from /dev/tty with echo turned off. Returns the - * passphrase (allocated with xmalloc). Exits if EOF is encountered. If - * from_stdin is true, the passphrase will be read from stdin instead. - */ -char *read_passphrase(const char *prompt, int from_stdin); +#define RP_ECHO 0x0001 +#define RP_ALLOW_STDIN 0x0002 +char *read_passphrase(const char *prompt, int flags); |