]> andersk Git - openssh.git/blobdiff - readpass.h
- millert@cvs.openbsd.org 2002/05/13 15:53:19
[openssh.git] / readpass.h
index fa64b4b343be86bd2025c55741b474108d89962f..a45d32f2a76b0a25b9a46f47094cdf5fc4b19feb 100644 (file)
@@ -1,3 +1,5 @@
+/*     $OpenBSD: readpass.h,v 1.7 2002/03/26 15:58:46 markus Exp $     */
+
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -10,9 +12,8 @@
  * 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
+#define RP_ALLOW_EOF           0x0004
+
+char   *read_passphrase(const char *, int);
This page took 0.03086 seconds and 4 git commands to generate.