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