Displaying 4 results from an estimated 4 matches for "orsaauthentication".
Did you mean:
  rsaauthentication
  
2015 Mar 19
0
[Bug 1604] SCTP support for openssh
...---------------------------------------------
                 CC|                            |Bert.Wesarg at googlemail.com
--- Comment #11 from Bert Wesarg <Bert.Wesarg at googlemail.com> ---
--- a/readconf.c
+++ b/readconf.c
@@ -130,6 +130,9 @@ typedef enum {
     oPasswordAuthentication, oRSAAuthentication,
     oChallengeResponseAuthentication, oXAuthLocation,
     oIdentityFile, oHostName, oPort, oCipher, oRemoteForward,
oLocalForward,
+#ifdef SCTP
+    oTransport,
+#endif
     oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
     oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionA...
2004 Aug 26
2
OpenSSH PATCH: OpenCommand and CloseCommand
...cting the host. */
 	char   *user;		/* User to log in as. */
 	int     escape_char;	/* Escape character; -2 = none */
 
Index: readconf.c
--- openssh-3.8p1.orig/readconf.c	(.../.transvn:beginning)	(revision 25)
+++ openssh-3.8p1/readconf.c	(revision 25)
@@ -93,7 +93,8 @@
 	oPasswordAuthentication, oRSAAuthentication,
 	oChallengeResponseAuthentication, oXAuthLocation,
 	oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
-	oUser, oHost, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
+	oUser, oHost, oEscapeChar, oRhostsRSAAuthentication,
+	oOpenCommand, oCloseCommand, oProxyCommand,...
2015 Jul 29
2
[PATCH] ssh: Add option to present certificates on command line
...shconnect2.c       |  47 ++++++++++++++++--
 9 files changed, 375 insertions(+), 5 deletions(-)
 create mode 100644 regress/ssh-cert.sh
diff --git a/readconf.c b/readconf.c
index f1c860b..b34213d 100644
--- a/readconf.c
+++ b/readconf.c
@@ -135,6 +135,7 @@ typedef enum {
 	oPasswordAuthentication, oRSAAuthentication,
 	oChallengeResponseAuthentication, oXAuthLocation,
 	oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward,
+	oCertificateFile,
 	oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand,
 	oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts,
 	oBatchMode, oCheckH...
2006 Nov 15
11
OpenSSH Certkey (PKI)
...rredAuthentications, oHostbasedAuthentication,
 	oHostKeyAlgorithms, oBindAddress, oSmartcardDevice,
@@ -148,6 +149,8 @@
 	{ "kbdinteractiveauthentication", oKbdInteractiveAuthentication },
 	{ "kbdinteractivedevices", oKbdInteractiveDevices },
 	{ "rsaauthentication", oRSAAuthentication },
+	{ "certkeyauthentication", oCertkeyAuthentication },
+	{ "cakeyfile", oCAKeyFile },
 	{ "pubkeyauthentication", oPubkeyAuthentication },
 	{ "dsaauthentication", oPubkeyAuthentication },		    /* alias */
 	{ "rhostsrsaauthentication", oRhostsRS...