search for: skey_authentication

Displaying 2 results from an estimated 2 matches for "skey_authentication".

2000 Dec 07
1
[PATCH] tis authserv support
...authenticated = tis_response(tis, response); + tis_free(tis); + tis = NULL; + + /* allow only one attempt */ + attempt = AUTH_FAIL_MAX + 1; + xfree(response); + } + break; +#elif SKEY case SSH_CMSG_AUTH_TIS: debug("rcvd SSH_CMSG_AUTH_TIS"); if (options.skey_authentication == 1) { diff -urN openssh-2.3.0p1/config.h.in openssh-2.3.0p1-tis/config.h.in --- openssh-2.3.0p1/config.h.in Mon Nov 6 04:25:18 2000 +++ openssh-2.3.0p1-tis/config.h.in Thu Dec 7 18:38:42 2000 @@ -269,6 +269,8 @@ /* Detect IPv4 in IPv6 mapped addresses and treat as IPv4 */ #undef IPV4_IN_IPV6...
2000 Aug 27
0
patch for TIS (skey/opie) *and* passwd auth via PAM
...saved_argv, get_canonical_hostname(), pw->pw_name, NULL, 0, NULL, diff -urN -x *~ openssh-2.1.1p4/auth2.c openssh-2.1.1p4-hein/auth2.c --- openssh-2.1.1p4/auth2.c Tue Jul 11 09:31:38 2000 +++ openssh-2.1.1p4-hein/auth2.c Sun Aug 27 17:39:22 2000 @@ -102,6 +102,9 @@ #ifdef SKEY options.skey_authentication = 0; #endif +#ifdef PAM_TIS + options.tis_authentication = 0; +#endif #ifdef KRB4 options.kerberos_authentication = 0; #endif @@ -257,7 +260,7 @@ packet_done(); #ifdef USE_PAM - return auth_pam_password(pw, ""); + return auth_pam_password(pw, "", SSH_CMSG_AUTH_P...