Displaying 2 results from an estimated 2 matches for "afgknqstvxacnptx1246".
2001 Sep 13
4
ssh argv[0] support
...---- end ------
-- ssh-argv0.1 --
.Dd September 7, 2001
.Dt SSH-ARGV0 1
.Os Debian Project
.Sh NAME
.Nm ssh-argv0
.Nd replaces the old ssh command-name as hostname handling
.Sh SYNOPSIS
.Ar hostname | user at hostname
.Op Fl l Ar login_name
.Op Ar command
.Pp
.Ar hostname | user at hostname
.Op Fl afgknqstvxACNPTX1246
.Op Fl c Ar cipher_spec
.Op Fl e Ar escape_char
.Op Fl i Ar identity_file
.Op Fl l Ar login_name
.Op Fl m Ar mac_spec
.Op Fl o Ar option
.Op Fl p Ar port
.Oo Fl L Xo
.Sm off
.Ar port :
.Ar host :
.Ar hostport
.Sm on
.Xc
.Oc
.Oo Fl R Xo
.Sm off
.Ar port :
.Ar host :
.Ar hostport
.Sm on
.Xc
.Oc
.Op A...
2002 Apr 22
9
Password from open filedescriptor
...#define RP_ALLOW_STDIN 0x0002
char *read_passphrase(const char *, int);
+char *read_password_from_fd(int fd);
diff -bur openssh-3.1p1.org/ssh.1 openssh-3.1p1/ssh.1
--- openssh-3.1p1.org/ssh.1 Tue Feb 19 05:27:24 2002
+++ openssh-3.1p1/ssh.1 Mon Apr 22 10:34:59 2002
@@ -51,6 +51,7 @@
.Op Fl afgknqstvxACNPTX1246
.Op Fl b Ar bind_address
.Op Fl c Ar cipher_spec
+.Op Fl d Ar fd
.Op Fl e Ar escape_char
.Op Fl i Ar identity_file
.Op Fl l Ar login_name
@@ -415,6 +416,10 @@
See
.Cm Ciphers
for more information.
+.It Fl d Ar fd
+Read the password from file descriptor fd. If you use 0 for fd, the
+passphra...