b8e721e478abc214eff96ef88e656417c9404576
[samba.git] / source4 / param / secrets.h
1 /*
2  * Unix SMB/CIFS implementation. 
3  * secrets.tdb file format info
4  * Copyright (C) Andrew Tridgell              2000
5  * 
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; either version 3 of the License, or (at your
9  * option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14  * more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with
17  * this program; if not, write to the Free Software Foundation, Inc., 675
18  * Mass Ave, Cambridge, MA 02139, USA.  
19  */
20
21 #ifndef _SECRETS_H
22 #define _SECRETS_H
23
24 /* structure for storing machine account password
25    (ie. when samba server is member of a domain */
26 struct machine_acct_pass {
27         uint8_t hash[16];
28         time_t mod_time;
29 };
30
31 #define SECRETS_PRIMARY_DOMAIN_DN "cn=Primary Domains"
32 #define SECRETS_PRINCIPALS_DN "cn=Principals"
33 #define SECRETS_PRIMARY_DOMAIN_FILTER "(&(flatname=%s)(objectclass=primaryDomain))"
34 #define SECRETS_PRIMARY_REALM_FILTER "(&(realm=%s)(objectclass=primaryDomain))"
35 #define SECRETS_KRBTGT_SEARCH "(&((|(realm=%s)(flatname=%s))(samAccountName=krbtgt)))"
36 #define SECRETS_PRINCIPAL_SEARCH "(&(|(realm=%s)(flatname=%s))(servicePrincipalName=%s))"
37
38 #include "param/secrets_proto.h"
39
40 #endif /* _SECRETS_H */