-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstructure.txt
More file actions
137 lines (136 loc) · 5.11 KB
/
structure.txt
File metadata and controls
137 lines (136 loc) · 5.11 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
.
├── LICENSE
├── PKIManager
│ ├── ATManager.py
│ ├── ATResponse.py
│ ├── CRReader.py
│ ├── ECManager.py
│ ├── ECResponse.py
│ ├── INIReader.py
│ ├── __init__.py
│ ├── certificates
│ │ ├── PKI_info.ini
│ │ ├── certificates.json
│ │ └── credentials.json
│ └── utils
│ ├── __init__.py
│ ├── exceptions.py
│ └── security_models.py
├── README.md
├── TRACEN-X_logo_v3.png
├── __init__.py
├── data
│ ├── asn
│ │ ├── CAM-all-new.asn
│ │ ├── CAM-all-old.asn
│ │ ├── CPM-all.asn
│ │ ├── DENM-all-old.asn
│ │ ├── VAM-PDU-FullDescription.asn
│ │ └── security
│ │ ├── EtsiTs102941BaseTypes.asn
│ │ ├── EtsiTs102941MessagesItss.asn
│ │ ├── EtsiTs102941TrustLists.asn
│ │ ├── EtsiTs102941TypesAuthorization.asn
│ │ ├── EtsiTs102941TypesAuthorizationValidation.asn
│ │ ├── EtsiTs102941TypesCaManagement.asn
│ │ ├── EtsiTs102941TypesEnrolment.asn
│ │ ├── EtsiTs102941TypesLinkCertificate.asn
│ │ ├── EtsiTs103097ExtensionModule.asn
│ │ ├── EtsiTs103097Module.asn
│ │ ├── Ieee1609Dot2.asn
│ │ ├── Ieee1609Dot2BaseTypes.asn
│ │ ├── Ieee1609Dot2Crl.asn
│ │ ├── Ieee1609Dot2CrlBaseTypes.asn
│ │ ├── Ieee1609Dot2Dot1AcaEeInterface.asn
│ │ ├── Ieee1609Dot2Dot1AcaLaInterface.asn
│ │ ├── Ieee1609Dot2Dot1AcaMaInterface.asn
│ │ ├── Ieee1609Dot2Dot1AcaRaInterface.asn
│ │ ├── Ieee1609Dot2Dot1Acpc.asn
│ │ ├── Ieee1609Dot2Dot1CamRaInterface.asn
│ │ ├── Ieee1609Dot2Dot1CertManagement.asn
│ │ ├── Ieee1609Dot2Dot1EcaEeInterface.asn
│ │ ├── Ieee1609Dot2Dot1EeMaInterface.asn
│ │ ├── Ieee1609Dot2Dot1EeRaInterface.asn
│ │ ├── Ieee1609Dot2Dot1LaMaInterface.asn
│ │ ├── Ieee1609Dot2Dot1LaRaInterface.asn
│ │ ├── Ieee1609Dot2Dot1MaRaInterface.asn
│ │ └── Ieee1609Dot2Dot1Protocol.asn
│ ├── can_db
│ │ └── motohawk.dbc
│ ├── can_output
│ │ └── can_log.json
│ ├── gnss_output
│ │ └── example.json
│ └── pcap_output
│ └── trace.pcapng
├── matlab_utils
│ └── Plot_replay_CSV_analysis.m
├── merge_traces
│ └── union.py
├── package-lock.json
├── record
│ ├── __init__.py
│ ├── can_utils.py
│ ├── pcap_utils.py
│ ├── record.py
│ ├── serial_utils.py
│ └── utils.py
├── replay
│ ├── __init__.py
│ ├── can_utils.py
│ ├── csv_conversion_utils.py
│ ├── decoded_messages.py
│ ├── gui_utils.py
│ ├── pcap_utils.py
│ ├── replay.py
│ ├── serial_utils.py
│ ├── test_rate_utils.py
│ ├── utils
│ │ ├── Security.py
│ │ ├── __init__.py
│ │ ├── countACertificates.py
│ │ └── countCertificates.py
│ ├── utils.py
│ └── visualizer.py
├── requirements
├── serial_emulator
│ ├── __init__.py
│ └── serial_emulator.py
├── structure.txt
└── vehicle_visualizer
├── external_libraries
│ └── Leaflet.rotatedMarker
│ ├── LICENSE
│ ├── README.md
│ ├── example.html
│ ├── leaflet.rotatedMarker.js
│ └── package.json
├── img
│ ├── black_car.png
│ ├── black_car2.png
│ ├── blue_triangle.png
│ ├── blue_truck.png
│ ├── car.png
│ ├── car1.png
│ ├── circle.png
│ ├── detected_car1.png
│ ├── detected_car2.png
│ ├── detected_car3.png
│ ├── detected_car4.png
│ ├── detected_car5.png
│ ├── detected_car6.png
│ ├── detected_car7.png
│ ├── detected_car9.png
│ ├── green_circle.png
│ ├── pedestrian.png
│ ├── triangle.png
│ └── white_truck.png
├── index.html
├── map_render.js
├── mapbox_token
├── package-lock.json
├── package.json
├── server.js
└── style
└── style.css
22 directories, 113 files