1 /* $NetBSD: spnego.h,v 1.4 2014/12/10 04:37:58 christos Exp $ */
4 * Copyright (C) 2006, 2007 Internet Systems Consortium, Inc. ("ISC")
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.
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.
19 /* Id: spnego.h,v 1.4 2007/06/19 23:47:16 tbox Exp */
23 * Entry points into portable SPNEGO implementation.
24 * See spnego.c for information on the SPNEGO implementation itself.
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.
38 gss_init_sec_context_spnego(OM_uint32
*,
45 const gss_channel_bindings_t
,
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.
60 OM_uint32
gss_accept_sec_context_spnego(OM_uint32
*,
64 const gss_channel_bindings_t
,