27c5a4e689e5bf843e9ffae8dca0f733a255957f
[amitay/samba.git] / source4 / libcli / auth / credentials.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    code to manipulate domain credentials
5
6    Copyright (C) Andrew Tridgell 2004
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    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "librpc/gen_ndr/ndr_netlogon.h"
24
25 struct creds_CredentialState {
26         uint32_t negotiate_flags;
27         uint8_t session_key[16];
28         uint32_t sequence;
29         struct netr_Credential seed;
30         struct netr_Credential client;
31         struct netr_Credential server;
32         uint16_t secure_channel_type;
33         const char *domain;
34         const char *computer_name;
35         const char *account_name;
36         struct dom_sid *sid;
37 };
38
39 /* for the timebeing, use the same neg flags as Samba3. */
40 /* The 7 here seems to be required to get Win2k not to downgrade us
41    to NT4.  Actually, anything other than 1ff would seem to do... */
42 #define NETLOGON_NEG_AUTH2_FLAGS     0x000701ff
43
44 /* these are the flags that ADS clients use */
45 #define NETLOGON_NEG_AUTH2_ADS_FLAGS (0x200fbffb | NETLOGON_NEG_ARCFOUR | NETLOGON_NEG_128BIT | NETLOGON_NEG_SCHANNEL)
46
47