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 3 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, see <http://www.gnu.org/licenses/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef SAMBA_SPNEGO_H
|
---|
24 | #define SAMBA_SPNEGO_H
|
---|
25 |
|
---|
26 | #define SPNEGO_DELEG_FLAG 0x01
|
---|
27 | #define SPNEGO_MUTUAL_FLAG 0x02
|
---|
28 | #define SPNEGO_REPLAY_FLAG 0x04
|
---|
29 | #define SPNEGO_SEQUENCE_FLAG 0x08
|
---|
30 | #define SPNEGO_ANON_FLAG 0x10
|
---|
31 | #define SPNEGO_CONF_FLAG 0x20
|
---|
32 | #define SPNEGO_INTEG_FLAG 0x40
|
---|
33 | #define SPNEGO_REQ_FLAG 0x80
|
---|
34 |
|
---|
35 | #define SPNEGO_NEG_TOKEN_INIT 0
|
---|
36 | #define SPNEGO_NEG_TOKEN_TARG 1
|
---|
37 |
|
---|
38 | typedef enum _spnego_negResult {
|
---|
39 | SPNEGO_ACCEPT_COMPLETED = 0,
|
---|
40 | SPNEGO_ACCEPT_INCOMPLETE = 1,
|
---|
41 | SPNEGO_REJECT = 2
|
---|
42 | } negResult_t;
|
---|
43 |
|
---|
44 | typedef struct spnego_negTokenInit {
|
---|
45 | const char **mechTypes;
|
---|
46 | int reqFlags;
|
---|
47 | DATA_BLOB mechToken;
|
---|
48 | DATA_BLOB mechListMIC;
|
---|
49 | } negTokenInit_t;
|
---|
50 |
|
---|
51 | typedef struct spnego_negTokenTarg {
|
---|
52 | uint8 negResult;
|
---|
53 | char *supportedMech;
|
---|
54 | DATA_BLOB responseToken;
|
---|
55 | DATA_BLOB mechListMIC;
|
---|
56 | } negTokenTarg_t;
|
---|
57 |
|
---|
58 | typedef struct spnego_spnego {
|
---|
59 | int type;
|
---|
60 | negTokenInit_t negTokenInit;
|
---|
61 | negTokenTarg_t negTokenTarg;
|
---|
62 | } SPNEGO_DATA;
|
---|
63 |
|
---|
64 | #endif
|
---|