2002-02-19 15:46:56 +00:00
|
|
|
/* $Id: asn1-common.h,v 1.2 2001/09/25 13:39:25 assar Exp $ */
|
2001-02-13 16:46:19 +00:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#ifndef __asn1_common_definitions__
|
|
|
|
#define __asn1_common_definitions__
|
|
|
|
|
|
|
|
typedef struct octet_string {
|
|
|
|
size_t length;
|
|
|
|
void *data;
|
|
|
|
} octet_string;
|
|
|
|
|
|
|
|
typedef char *general_string;
|
|
|
|
|
2002-02-19 15:46:56 +00:00
|
|
|
typedef struct oid {
|
|
|
|
size_t length;
|
|
|
|
unsigned *components;
|
|
|
|
} oid;
|
|
|
|
|
2001-02-13 16:46:19 +00:00
|
|
|
#endif
|