From b0f167cdf2942ddaeaa03032542e74345ce81308 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 22 Aug 2001 02:48:16 +0000 Subject: Added another authentication interface to winbindd. The Challenge Response Authentication Protocol (CRAP) takes a tuple of (username, random challenge, encrypted lm password, encrypted nt password) where the passwords are encrypted with the random challenge ala ntlmssp. (This used to be commit 11f72a78e3a16bbb17b576d80b47a9eb818ee428) --- source3/nsswitch/winbindd.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/nsswitch/winbindd.c') diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index 0824b77294..4c82c9f3af 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -244,6 +244,7 @@ static struct dispatch_table dispatch_table[] = { /* PAM auth functions */ { WINBINDD_PAM_AUTH, winbindd_pam_auth }, + { WINBINDD_PAM_AUTH_CRAP, winbindd_pam_auth_crap }, { WINBINDD_PAM_CHAUTHTOK, winbindd_pam_chauthtok }, /* Enumeration functions */ -- cgit