s3-decrpc: Introduce gssapi support for dcerpc krb5 auth
[Samba/bjacke.git] / source3 / librpc / rpc / dcerpc_gssapi.h
blobc172cacc14edf0c80343283e4949427333b9c3d6
1 /*
2 * GSSAPI Security Extensions
3 * RPC Pipe client routines
4 * Copyright (C) Simo Sorce 2010.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef _CLI_PIPE_GSSAPI_H_
21 #define _CLI_PIPE_GSSAPI_H_
23 struct gse_context;
25 #ifndef GSS_C_DCE_STYLE
26 #define GSS_C_DCE_STYLE 0x1000
27 #endif
29 NTSTATUS gse_init_client(TALLOC_CTX *mem_ctx,
30 enum dcerpc_AuthType auth_type,
31 enum dcerpc_AuthLevel auth_level,
32 const char *ccache_name,
33 const char *server,
34 const char *service,
35 const char *username,
36 const char *password,
37 uint32_t add_gss_c_flags,
38 struct pipe_auth_data **_auth);
40 NTSTATUS gse_get_client_auth_token(TALLOC_CTX *mem_ctx,
41 struct gse_context *gse_ctx,
42 DATA_BLOB *token_in,
43 DATA_BLOB *token_out);
45 DATA_BLOB gse_get_session_key(struct gse_context *gse_ctx);
47 #endif /* _CLI_PIPE_GSSAPI_H_ */