xref: /freebsd/crypto/heimdal/lib/asn1/asn1-common.h (revision 17d6c636720d00f77e5d098daf4c278f89d84f7b)
1 /* $Id: asn1-common.h,v 1.1 2000/04/14 15:41:31 joda 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 #endif
17