eap channel bindings: use ukerna vsa to encapsulate ttls chbind messages.
[mech_eap.git] / libeap / src / eap_common / eap_ttls.h
1 /*
2  * EAP server/peer: EAP-TTLS (RFC 5281)
3  * Copyright (c) 2004-2007, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #ifndef EAP_TTLS_H
16 #define EAP_TTLS_H
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 struct ttls_avp {
23         be32 avp_code;
24         be32 avp_length; /* 8-bit flags, 24-bit length;
25                           * length includes AVP header */
26         /* optional 32-bit Vendor-ID */
27         /* Data */
28 };
29
30 struct ttls_avp_vendor {
31         be32 avp_code;
32         be32 avp_length; /* 8-bit flags, 24-bit length;
33                           * length includes AVP header */
34         be32 vendor_id;
35         /* Data */
36 };
37
38 #define AVP_FLAGS_VENDOR 0x80
39 #define AVP_FLAGS_MANDATORY 0x40
40
41 #define AVP_PAD(start, pos) \
42 do { \
43         int __pad; \
44         __pad = (4 - (((pos) - (start)) & 3)) & 3; \
45         os_memset((pos), 0, __pad); \
46         pos += __pad; \
47 } while (0)
48
49
50 /* RFC 2865 */
51 #define RADIUS_ATTR_USER_NAME 1
52 #define RADIUS_ATTR_USER_PASSWORD 2
53 #define RADIUS_ATTR_CHAP_PASSWORD 3
54 #define RADIUS_ATTR_REPLY_MESSAGE 18
55 #define RADIUS_ATTR_VENDOR_SPECIFIC 26
56 #define RADIUS_ATTR_CHAP_CHALLENGE 60
57 #define RADIUS_ATTR_EAP_MESSAGE 79
58
59 /* RFC 2548 */
60 #define RADIUS_VENDOR_ID_MICROSOFT 311
61 #define RADIUS_ATTR_MS_CHAP_RESPONSE 1
62 #define RADIUS_ATTR_MS_CHAP_ERROR 2
63 #define RADIUS_ATTR_MS_CHAP_NT_ENC_PW 6
64 #define RADIUS_ATTR_MS_CHAP_CHALLENGE 11
65 #define RADIUS_ATTR_MS_CHAP2_RESPONSE 25
66 #define RADIUS_ATTR_MS_CHAP2_SUCCESS 26
67 #define RADIUS_ATTR_MS_CHAP2_CPW 27
68
69 #define EAP_TTLS_MSCHAPV2_CHALLENGE_LEN 16
70 #define EAP_TTLS_MSCHAPV2_RESPONSE_LEN 50
71 #define EAP_TTLS_MSCHAP_CHALLENGE_LEN 8
72 #define EAP_TTLS_MSCHAP_RESPONSE_LEN 50
73 #define EAP_TTLS_CHAP_CHALLENGE_LEN 16
74 #define EAP_TTLS_CHAP_PASSWORD_LEN 16
75
76 #define RADIUS_VENDOR_ID_UKERNA 25622
77 #define RADIUS_ATTR_UKERNA_CHBIND 134
78
79 #ifdef __cplusplus
80 }
81 #endif
82
83 #endif /* EAP_TTLS_H */