=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/readpass.h,v retrieving revision 1.2 retrieving revision 1.2.2.5 diff -u -r1.2 -r1.2.2.5 --- src/usr.bin/ssh/Attic/readpass.h 2001/01/29 01:58:17 1.2 +++ src/usr.bin/ssh/Attic/readpass.h 2001/09/27 00:15:42 1.2.2.5 @@ -1,4 +1,4 @@ -/* $OpenBSD: readpass.h,v 1.2 2001/01/29 01:58:17 niklas Exp $ */ +/* $OpenBSD: readpass.h,v 1.2.2.5 2001/09/27 00:15:42 miod Exp $ */ /* * Author: Tatu Ylonen @@ -12,9 +12,7 @@ * 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(char *prompt, int from_stdin); +#define RP_ECHO 0x0001 +#define RP_ALLOW_STDIN 0x0002 + +char *read_passphrase(const char *, int);