
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10741 ec53bebd-3082-4978-b11e-865c3cabbd6b
22 lines
318 B
C
22 lines
318 B
C
/* $Id$ */
|
|
|
|
#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;
|
|
|
|
typedef struct oid {
|
|
size_t length;
|
|
unsigned *components;
|
|
} oid;
|
|
|
|
#endif
|