File: asn1-common.h

package info (click to toggle)
libapache-mod-auth-kerb 5.4-2.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 632 kB
  • ctags: 380
  • sloc: ansic: 3,236; makefile: 92; sh: 4
file content (21 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (8)
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.1 2003/09/05 08:54:08 kouril 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