r8302: import mini HEIMDAL into the tree
[samba.git] / source4 / heimdal / lib / asn1 / asn1-common.h
1 /* $Id: asn1-common.h,v 1.4 2003/07/15 13:57:31 lha Exp $ */
2
3 #include <stddef.h>
4 #include <time.h>
5
6 #ifndef __asn1_common_definitions__
7 #define __asn1_common_definitions__
8
9 typedef struct heim_octet_string {
10     size_t length;
11     void *data;
12 } heim_octet_string;
13
14 typedef char *heim_general_string;
15 typedef char *heim_utf8_string;
16
17 typedef struct heim_oid {
18     size_t length;
19     unsigned *components;
20 } heim_oid;
21
22 #endif