freebsd-nq/crypto/heimdal/lib/asn1/asn1-common.h

22 lines
370 B
C
Raw Normal View History

/* $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;
typedef struct oid {
size_t length;
unsigned *components;
} oid;
2001-02-13 16:46:19 +00:00
#endif