1064370146618027c56f09958bdfddd71d4f06cf
[samba.git] / source4 / auth / gensec / spnego.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    RFC2478 Compliant SPNEGO implementation
5
6    Copyright (C) Jim McDonough <jmcd@us.ibm.com>   2003
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #ifndef SAMBA_SPNEGO_H
25 #define SAMBA_SPNEGO_H
26
27 #define SPNEGO_DELEG_FLAG    0x01
28 #define SPNEGO_MUTUAL_FLAG   0x02
29 #define SPNEGO_REPLAY_FLAG   0x04
30 #define SPNEGO_SEQUENCE_FLAG 0x08
31 #define SPNEGO_ANON_FLAG     0x10
32 #define SPNEGO_CONF_FLAG     0x20
33 #define SPNEGO_INTEG_FLAG    0x40
34 #define SPNEGO_REQ_FLAG      0x80
35
36 enum spnego_negResult {
37         SPNEGO_ACCEPT_COMPLETED = 0,
38         SPNEGO_ACCEPT_INCOMPLETE = 1,
39         SPNEGO_REJECT = 2,
40         SPNEGO_NONE_RESULT = 3
41 };
42
43 struct spnego_negTokenInit {
44         const char **mechTypes;
45         int reqFlags;
46         DATA_BLOB mechToken;
47         DATA_BLOB mechListMIC;
48         char *targetPrincipal;
49 };
50
51 struct spnego_negTokenTarg {
52         uint8_t negResult;
53         const char *supportedMech;
54         DATA_BLOB responseToken;
55         DATA_BLOB mechListMIC;
56 };
57
58 struct spnego_data {
59         int type;
60         struct spnego_negTokenInit negTokenInit;
61         struct spnego_negTokenTarg negTokenTarg;
62 };
63
64 enum spnego_message_type {
65         SPNEGO_NEG_TOKEN_INIT = 0, 
66         SPNEGO_NEG_TOKEN_TARG = 1,
67 };
68
69 #endif