Added some guards.
[vlendec/samba-autobuild/.git] / source3 / include / asn_1.h
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 3.0
4    simple ASN1 code
5    Copyright (C) Andrew Tridgell 2001
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #ifndef _ASN_1_H
23 #define _ASN_1_H
24
25 struct nesting {
26         off_t start;
27         size_t taglen; /* for parsing */
28         struct nesting *next;
29 };
30
31 typedef struct {
32         uint8 *data;
33         size_t length;
34         off_t ofs;
35         struct nesting *nesting;
36         BOOL has_error;
37 } ASN1_DATA;
38
39
40 #define ASN1_APPLICATION(x) ((x)+0x60)
41 #define ASN1_SEQUENCE(x) ((x)+0x30)
42 #define ASN1_CONTEXT(x) ((x)+0xa0)
43 #define ASN1_GENERAL_STRING 0x1b
44 #define ASN1_OCTET_STRING 0x4
45 #define ASN1_OID 0x6
46 #define ASN1_BOOLEAN 0x1
47 #define ASN1_INTEGER 0x2
48 #define ASN1_ENUMERATED 0xa
49
50 #define ASN1_MAX_OIDS 20
51
52 /* some well known object IDs */
53 #define OID_SPNEGO "1 3 6 1 5 5 2"
54 #define OID_NTLMSSP "1 3 6 1 4 1 311 2 2 10"
55 #define OID_KERBEROS5_OLD "1 2 840 48018 1 2 2"
56 #define OID_KERBEROS5 "1 2 840 113554 1 2 2"
57
58 #endif /* _ASN_1_H */