ASN.1
Comparison of ASN.1 and C Types
ASN.1 Type
|
C-Type
|
ANY
|
void *
|
BIT STRING
|
shift & mask
|
BOOLEAN
|
bool
|
CHOICE
|
union
|
ENUMERATED
|
enum
|
INTEGER
|
int
|
OBJECT IDENTIFIER
|
int[]
|
OCTET STRING
|
char[]
|
REAL
|
double
|
SEQUENCE
|
struct
|
SEQUENCE OF
|
struct[]
|
SET
|
struct
|
SET OF
|
struct[]
|
next