summaryrefslogtreecommitdiffstats
path: root/source4/auth/ntlmssp/ntlmssp_server.c
Commit message (Expand)AuthorAgeFilesLines
* auth: Move the rest of the source4 gensec_ntlmssp code to the top levelAndrew Bartlett2012-02-171-357/+0
* auth: Pass in the SMB username (for %U) into generate_session_infoAndrew Bartlett2012-02-131-0/+1
* gensec: inline gensec_generate_session_info() into only callerAndrew Bartlett2012-01-301-6/+18
* s4-auth: Return NT_STATUS_NOT_IMPLEMENTED if the challenge cannot be obtainedAndrew Bartlett2012-01-301-1/+1
* auth: Make check_password and generate_session_info hook genericAndrew Bartlett2012-01-301-17/+8
* s4:auth: Make sure to check the optional auth_context hooks before using themAndrew Bartlett2012-01-111-18/+26
* s4-auth: match the new s3 gensec client and always negotiate SIGN with SEALAndrew Bartlett2011-10-181-0/+1
* ntlmssp: Prepare gensec_ntlmssp_start() for broader useAndrew Bartlett2011-10-181-2/+14
* ntlmssp: Move ntlmssp code to auth/ntlmsspAndrew Bartlett2011-10-181-2/+3
* s4:auth - remove unused variablesMatthias Dieter Wallnöfer2011-09-191-1/+0
* gensec: Don't keep a second copy of the auth4_context in gensec_ntlmssp_stateAndrew Bartlett2011-08-031-6/+4
* gensec: clarify memory ownership for gensec_session_info() and gensec_session...Andrew Bartlett2011-08-031-6/+4
* s4:auth/ntlmssp/ntlmssp_server.c - add "const" in front of "dnsdomain"Matthias Dieter Wallnöfer2011-05-211-1/+1
* s4-auth Rename auth -> auth4 to avoid conflict with s3 authAndrew Bartlett2011-05-081-4/+4
* Remove strlower_m() and strupper_m() from source4 and common code.Andrew Bartlett2011-05-031-14/+14
* s4-auth Rework auth subsystem to remove struct auth_serversupplied_infoAndrew Bartlett2011-02-091-10/+10
* s4:auth/ntlmssp/ntlmssp_server.c - remove unnecessary ";"Matthias Dieter Wallnöfer2010-11-291-1/+1
* libcli/auth/ntlmssp Be clear about talloc parents for session keysAndrew Bartlett2010-09-161-0/+5
* s4:auth Move struct auth_usersupplied_info to a common locationAndrew Bartlett2010-08-141-1/+1
* libcli/auth Make the source3/ implementation of the NTLMSSP server commonAndrew Bartlett2010-08-101-520/+1
* libcli/auth Move some source3/ NTLMSSP functions to the common code.Andrew Bartlett2010-08-101-30/+0
* s4:ntlmssp Merge more aspects of the source3/ NTLMSSP layerAndrew Bartlett2010-08-071-20/+21
* s4:ntlmssp Re-add gensec_ntlmssp wrapper to allow merge with source3/Andrew Bartlett2010-08-071-18/+52
* s4:ntlmssp Always setup the session keys and signing stateAndrew Bartlett2010-08-071-9/+1
* s4:ntlmssp Adjust Samba4 ntlmssp code to look more like the code in Samba3.Andrew Bartlett2010-08-061-70/+118
* s4-loadparm: 2nd half of lp_ to lpcfg_ conversionAndrew Tridgell2010-07-161-5/+5
* s4:ntlmssp Merge ntlmssp structures with version from source3/Andrew Bartlett2010-06-011-69/+9
* Add in support for the NTLMSSP version reply.Jeremy Allison2010-05-241-3/+30
* s4:auth Change auth_generate_session_info to take an auth contextAndrew Bartlett2010-04-141-5/+5
* s4:ntlmssp: move doing_ntlm2 to ntlmssp_server_auth_stateStefan Metzmacher2010-03-241-2/+3
* s4:ntlmssp: move NTLM2 session_nonce to ntlmssp_server_auth_stateStefan Metzmacher2010-03-241-5/+7
* s4:ntlmssp: move encrypted_session_key to ntlmssp_server_auth_stateStefan Metzmacher2010-03-241-26/+19
* s4:ntlmssp: keep a ntlmssp_server_auth_state to transport variables from prea...Stefan Metzmacher2010-03-241-10/+23
* s4:ntlmssp: remove unused server_multiple_authentications feature.Stefan Metzmacher2010-03-241-11/+1
* s4:ntlmssp: rename gensec_ntlmssp_state => ntlmssp_stateStefan Metzmacher2010-03-241-164/+164
* s4:ntlmssp: calculate server names at startup and store them in (gensec_)ntlm...Stefan Metzmacher2010-03-241-24/+33
* s4:ntlmssp: replace server_role by a server.is_standalone in (gensec_)ntlmssp...Stefan Metzmacher2010-03-241-2/+6
* s4:ntlmssp: keep struct gensec_ntlmssp_context in gensec_security->private_dataStefan Metzmacher2010-03-241-8/+16
* s4:ntlmssp: remove gensec_security from (gensec_)ntlmssp_stateStefan Metzmacher2010-03-241-1/+1
* s4:ntlmssp: remove backend specifix stuff from (gensec_)ntlmssp_stateStefan Metzmacher2010-03-241-19/+46
* s4:ntlmssp: remove mem_ctx from check_password() callback to match s3Stefan Metzmacher2009-12-291-4/+2
* s4:ntlmssp_server: always call ntlmssp_server_postauth() and decide there if ...Stefan Metzmacher2009-12-291-5/+11
* s4:ntlmssp_server: don't use a mem_ctx for ntlmssp_server_auth()Stefan Metzmacher2009-12-291-13/+7
* s4:ntlmssp_server: don't use mem_ctx in auth_ntlmssp_check_password()Stefan Metzmacher2009-12-291-16/+8
* s4:ntlmssp_server: clear session key in ntlmssp_server_preauth()Stefan Metzmacher2009-12-291-3/+1
* s4:ntlmssp: use data_blob_null in ntlmssp_server_auth()Stefan Metzmacher2009-12-291-4/+6
* s4:ntlmssp_server: remove unused variableStefan Metzmacher2009-12-291-7/+0
* s4:auth/ntlmssp: let get_challenge() return a NTSTATUS and fill a stack bufferStefan Metzmacher2009-12-291-12/+11
* s4:auth Change 'get_challenge' API to be more like Samba3Andrew Bartlett2009-12-221-2/+5
* s4-gensec: Replace gensec_get_peer_addr with new tsocket based fn.Andreas Schneider2009-12-161-1/+2