2010-09-01 23:50:06 +04:00
/*
* NTLMSSP Acceptor
* DCERPC Server functions
* Copyright ( C ) Simo Sorce 2010.
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
*/
# ifndef _DCESRV_NTLMSSP_H_
# define _DCESRV_NTLMSSP_H_
2011-10-19 11:39:27 +04:00
struct gensec_security ;
2010-09-01 23:50:06 +04:00
2011-12-21 08:34:17 +04:00
NTSTATUS auth_generic_server_authtype_start ( TALLOC_CTX * mem_ctx ,
uint8_t auth_type , uint8_t auth_level ,
const struct tsocket_address * remote_address ,
2017-02-23 04:31:52 +03:00
const struct tsocket_address * local_address ,
2017-02-20 04:17:34 +03:00
const char * service_description ,
2011-12-21 08:34:17 +04:00
struct gensec_security * * ctx ) ;
2011-12-21 07:40:04 +04:00
NTSTATUS auth_generic_server_step ( struct gensec_security * ctx ,
2010-09-01 23:50:06 +04:00
TALLOC_CTX * mem_ctx ,
DATA_BLOB * token_in ,
DATA_BLOB * token_out ) ;
2011-12-21 07:40:04 +04:00
NTSTATUS auth_generic_server_check_flags ( struct gensec_security * ctx ,
2010-09-01 23:50:06 +04:00
bool do_sign , bool do_seal ) ;
2011-12-21 07:40:04 +04:00
NTSTATUS auth_generic_server_get_user_info ( struct gensec_security * ctx ,
2010-09-01 23:50:06 +04:00
TALLOC_CTX * mem_ctx ,
2011-07-18 07:06:47 +04:00
struct auth_session_info * * session_info ) ;
2010-09-01 23:50:06 +04:00
# endif /* _DCESRV_NTLMSSP_H_ */