More stubs for EAP mechanism
[mech_eap.git] / gssapiP_eap.h
1 /*
2  * Copyright (c) 2010, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32
33 #ifndef _GSSAPIP_EAP_H_
34 #define _GSSAPIP_EAP_H_ 1
35
36 #include <gssapi/gssapi.h>
37 #include <krb5.h>
38
39 #include "gssapi_eap.h"
40
41 struct gss_name_struct {
42     OM_uint32 flags;
43     krb5_principal principal;
44     void *aaa;
45     void *assertion;
46 };
47
48 #define CRED_FLAG_INITIATOR                 0x00000001
49 #define CRED_FLAG_ACCEPTOR                  0x00000002
50 #define CRED_FLAG_DEFAULT_IDENTITY          0x00000004
51 #define CRED_FLAG_PASSWORD                  0x00000008
52
53 struct gss_cred_id_struct {
54     OM_uint32 flags;
55     gss_name_t initiatorName;
56     gss_name_t acceptorName;
57     gss_buffer_desc password;
58 };
59
60 #define CTX_FLAG_INITIATOR                  0x00000001
61
62 enum eap_gss_state {
63     EAP_STATE_AUTHENTICATE = 1,
64     EAP_STATE_KEY_TRANSPORT,
65     EAP_STATE_SECURE_ASSOCIATION,
66     EAP_STATE_GSS_CHANNEL_BINDINGS,
67     EAP_STATE_ESTABLISHED
68 };
69
70 struct gss_ctx_id_struct {
71     enum eap_gss_state state;
72     OM_uint32 flags;
73     OM_uint32 gssFlags;
74     krb5_context kerberosCtx;
75     gss_OID mechanismUsed;
76     krb5_cksumtype checksumType;
77     krb5_keyblock *encryptionKey;
78     gss_name_t initiatorName;
79     gss_name_t acceptorName;
80     OM_uint32 lifetime;
81 };
82
83 #endif /* _GSSAPIP_EAP_H_ */
84