blob: 93e6180d42c05c65556de2f7659b6e21d3351cd8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
DERSpec DEFINITIONS ::=
BEGIN
Seq ::= SEQUENCE {
int [1] INTEGER,
choice C,
bool BOOLEAN
}
C ::= CHOICE {
version INTEGER,
message PrintableString
}
Set ::= SET {
int [1] INTEGER,
choice C,
bool BOOLEAN
}
SetOf ::= SET OF C
-- This type compiled with ber_bin, optimize, der
-- will test the fix in OTP-4866
Set2 ::= SET {
int INTEGER,
bool BOOLEAN}
-- OTP-5602
SO ::= SEQUENCE OF Seq2
Seq2 ::= SEQUENCE {
a INTEGER,
b BOOLEAN}
END
|