From 949974bbdb057202a429036a18fe36de5a7b6eac Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Mon, 25 Jun 2001 05:20:31 +0000 Subject: - markus@cvs.openbsd.org 2001/06/24 05:35:33 [readpass.c readpass.h ssh-add.c sshconnect2.c ssh-keygen.c] switch to readpassphrase(3) 2.7/8-stable needs readpassphrase.[ch] from libc --- readpass.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'readpass.h') diff --git a/readpass.h b/readpass.h index 55ed294d..37f85002 100644 --- a/readpass.h +++ b/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 @@ -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); -- cgit v1.2.3