NativeEnumerated.c vars NULL init and check
[com/asn1c.git] / tests / tests-asn1c-compiler / 19-param-OK.asn1.-EF
1 ModuleTestParam { iso org(3) dod(6) internet(1) private(4) enterprise(1)
2         spelio(9363) software(1) asn1c(5) test(1) 19 }
3 DEFINITIONS ::=
4 BEGIN
5
6 SIGNED{ToBeSigned} ::= SEQUENCE {
7     toBeSigned   ToBeSigned,
8     algorithm    OBJECT IDENTIFIER,
9     signature    BIT STRING (SIZE(0..256))
10 }
11
12 Certificate ::= SIGNED{ SEQUENCE {
13         version  INTEGER,    
14         signature        OBJECT IDENTIFIER,    
15         issuer   Name
16     }}
17
18 Name ::= SEQUENCE OF RelativeDistinguishedName
19
20 RelativeDistinguishedName ::= SET SIZE(1..MAX) OF IA5String (FROM("A".."Z" | "a".."z" | "0-9" | ",-."))
21
22 END