2010-07-19 21:36:33 +04:00
/*
NLTMSSP wrappers
Copyright ( C ) Andrew Tridgell 2001
2011-12-27 03:25:55 +04:00
Copyright ( C ) Andrew Bartlett 2001 - 2011
2010-07-19 21:36:33 +04:00
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/>.
*/
2011-12-27 03:25:55 +04:00
# ifndef _AUTH_GENERIC_
# define _AUTH_GENERIC_
2010-07-19 21:36:33 +04:00
2011-07-27 07:34:34 +04:00
struct gensec_security ;
2011-12-16 09:07:24 +04:00
struct auth_generic_state {
2011-10-17 07:00:39 +04:00
/* used only by the client implementation */
2011-10-18 09:16:02 +04:00
struct cli_credentials * credentials ;
/* used by both */
struct gensec_security * gensec_security ;
2010-07-19 21:36:33 +04:00
} ;
2011-12-27 03:25:55 +04:00
NTSTATUS auth_generic_set_username ( struct auth_generic_state * ans ,
2010-07-19 21:39:01 +04:00
const char * user ) ;
2011-12-27 03:25:55 +04:00
NTSTATUS auth_generic_set_domain ( struct auth_generic_state * ans ,
2010-07-19 21:39:01 +04:00
const char * domain ) ;
2011-12-27 03:25:55 +04:00
NTSTATUS auth_generic_set_password ( struct auth_generic_state * ans ,
2010-07-19 21:39:01 +04:00
const char * password ) ;
2011-12-27 03:25:55 +04:00
NTSTATUS auth_generic_client_prepare ( TALLOC_CTX * mem_ctx ,
2011-12-16 09:07:24 +04:00
struct auth_generic_state * * _ans ) ;
2011-12-27 03:25:55 +04:00
NTSTATUS auth_generic_client_start ( struct auth_generic_state * ans , const char * oid ) ;
2011-10-17 13:19:11 +04:00
2011-12-27 03:25:55 +04:00
NTSTATUS auth_generic_client_start_by_authtype ( struct auth_generic_state * ans ,
uint8_t auth_type ,
uint8_t auth_level ) ;
2012-01-05 20:15:14 +04:00
extern const struct gensec_security_ops gensec_ntlmssp3_client_ops ;
2011-12-27 03:25:55 +04:00
# endif /* _AUTH_GENERIC_ */