xref: /minix/external/bsd/bind/dist/lib/dns/spnego.h (revision fb9c64b2)
1 /*	$NetBSD: spnego.h,v 1.4 2014/12/10 04:37:58 christos Exp $	*/
2 
3 /*
4  * Copyright (C) 2006, 2007  Internet Systems Consortium, Inc. ("ISC")
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /* Id: spnego.h,v 1.4 2007/06/19 23:47:16 tbox Exp  */
20 
21 /*! \file
22  * \brief
23  * Entry points into portable SPNEGO implementation.
24  * See spnego.c for information on the SPNEGO implementation itself.
25  */
26 
27 #ifndef _SPNEGO_H_
28 #define _SPNEGO_H_
29 
30 /*%
31  * Wrapper for GSSAPI gss_init_sec_context(), using portable SPNEGO
32  * implementation instead of the one that's part of the GSSAPI
33  * library.  Takes arguments identical to the standard GSSAPI
34  * function, uses standard gss_init_sec_context() to handle
35  * everything inside the SPNEGO wrapper.
36  */
37 OM_uint32
38 gss_init_sec_context_spnego(OM_uint32 *,
39 			    const gss_cred_id_t,
40 			    gss_ctx_id_t *,
41 			    const gss_name_t,
42 			    const gss_OID,
43 			    OM_uint32,
44 			    OM_uint32,
45 			    const gss_channel_bindings_t,
46 			    const gss_buffer_t,
47 			    gss_OID *,
48 			    gss_buffer_t,
49 			    OM_uint32 *,
50 			    OM_uint32 *);
51 
52 /*%
53  * Wrapper for GSSAPI gss_accept_sec_context(), using portable SPNEGO
54  * implementation instead of the one that's part of the GSSAPI
55  * library.  Takes arguments identical to the standard GSSAPI
56  * function.  Checks the OID of the input token to see if it's SPNEGO;
57  * if so, processes it, otherwise hands the call off to the standard
58  * gss_accept_sec_context() function.
59  */
60 OM_uint32 gss_accept_sec_context_spnego(OM_uint32 *,
61 					gss_ctx_id_t *,
62 					const gss_cred_id_t,
63 					const gss_buffer_t,
64 					const gss_channel_bindings_t,
65 					gss_name_t *,
66 					gss_OID *,
67 					gss_buffer_t,
68 					OM_uint32 *,
69 					OM_uint32 *,
70 					gss_cred_id_t *);
71 
72 
73 #endif
74