summaryrefslogtreecommitdiffstats
path: root/crypto/heimdal/lib/asn1/asn1-common.h
blob: 251d401d5608eff5011b1112830f73a0e7c70362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* $Id: asn1-common.h,v 1.2 2001/09/25 13:39:25 assar Exp $ */

#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
OpenPOWER on IntegriCloud