xref: /freebsd/crypto/heimdal/lib/asn1/asn1-common.h (revision 6780ab54325a71e7e70112b11657973edde8655e)
1 /* $Id: asn1-common.h,v 1.2 2001/09/25 13:39:25 assar 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 octet_string {
10     size_t length;
11     void *data;
12 } octet_string;
13 
14 typedef char *general_string;
15 
16 typedef struct oid {
17     size_t length;
18     unsigned *components;
19 } oid;
20 
21 #endif
22