-
Notifications
You must be signed in to change notification settings - Fork 0
/
1609dot2-P2P.asn
executable file
·41 lines (32 loc) · 1.13 KB
/
1609dot2-P2P.asn
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
39
40
41
IEEE1609dot2-Peer2Peer {iso(1) identified-organization(3) ieee(111)
standards-association-numbered-series-standards(2) wave-stds(1609)
dot2(2) management (2) peer-to-peer (1)}
--**********************************************************************
--
-- Data types for Peer-to-peer distribution of IEEE P1609.2 support data
--
-- Associated with a two-byte PSID to be assigned.
-- When broadcast over WSMP, to be encoded with OER.
--
--**********************************************************************
DEFINITIONS AUTOMATIC TAGS ::= BEGIN
EXPORTS ALL;
IMPORTS
Uint8
FROM IEEE1609dot2BaseTypes {iso(1) identified-organization(3) ieee(111)
standards-association-numbered-series-standards(2) wave-stds(1609)
dot2(2) base(1) base-types(2)}
Certificate
FROM IEEE1609dot2 {iso(1) identified-organization(3) ieee(111)
standards-association-numbered-series-standards(2) wave-stds(1609)
dot2(2) base(1) schema(1)}
;
Ieee1609dot2Peer2PeerPDU ::= SEQUENCE {
version Uint8(1),
content CHOICE {
caCerts CaCertP2pPDU,
...
}
}
CaCertP2pPDU::= SEQUENCE OF Certificate
END