-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEtsiTs102941.mjs
executable file
·422 lines (404 loc) · 13.7 KB
/
EtsiTs102941.mjs
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
import * as Ieee1609Dot2 from 'Ieee1609Dot2js';
import {Uint8, Choice, Sequence, SequenceOf, Enumerated, Boolean, Integer, IA5String } from 'asnjs';
import {EeRaCertRequest, RaEeCertInfo, RaAcaCertRequest, AcaRaCertResponse, EeRaDownloadRequest } from 'Ieee1609Dot2Dot1js';
export class EnrolmentResponseCode extends Enumerated([
'ok',
'cantparse', //valid for any structure
'badcontenttype', //not encrypted, not signed, not enrolmentrequest
'imnottherecipient', //the “recipients” doesn’t include me
'unknownencryptionalgorithm', //either kexalg or contentencryptionalgorithm
'decryptionfailed', //works for ECIES_HMAC and AES_CCM
'unknownits', //can’t retrieve the ITS from the itsId
'invalidsignature', //signature verification of the request fails
'invalidencryptionkey', //signature is good, but the responseEncryptionKey is bad
'baditsstatus', //revoked, not yet active
'incompleterequest', //some elements are missing
'deniedpermissions', //requested permissions are not granted
'invalidkeys', //either the verification_key of the encryption_key is bad
'deniedrequest', //any other reason ?
Enumerated.Extension
]) { }
export class AuthorizationResponseCode extends Enumerated([
'ok',
//ITS -> AA
'its_aa_cantparse', //valid for any structure
'its_aa_badcontenttype', //not encrypted, not signed, not authorizationrequest
'its_aa_imnottherecipient', //the “recipients” of the outermost encrypted data doesn’t include me
'its_aa_unknownencryptionalgorithm', //either kexalg or contentencryptionalgorithm
'its_aa_decryptionfailed', //works for ECIES_HMAC and AES_CCM
'its_aa_keysdontmatch', //HMAC keyTag verification fails
'its_aa_incompleterequest', //some elements are missing
'its_aa_invalidencryptionkey', //the responseEncryptionKey is bad
'its_aa_outofsyncrequest', //signingTime is outside acceptable limits
'its_aa_unknownea', //the EA identified by eaId is unknown to me
'its_aa_invalidea', //the EA certificate is revoked
'its_aa_deniedpermissions', //I, the AA, deny the requested permissions
//AA -> EA
'aa_ea_cantreachea', //the EA is unreachable(network error ?)
//EA -> AA
'ea_aa_cantparse', //valid for any structure
'ea_aa_badcontenttype', //not encrypted, not signed, not authorizationrequest
'ea_aa_imnottherecipient', //the “recipients” of the outermost encrypted data doesn’t include me
'ea_aa_unknownencryptionalgorithm', //either kexalg or contentencryptionalgorithm
'ea_aa_decryptionfailed', //works for ECIES_HMAC and AES_CCM
//TODO: to be continued...
'invalidaa', //the AA certificate presented is invalid / revoked / whatever
'invalidaasignature', //the AA certificate presented can’t validate the request signature
'wrongea', //the encrypted signature doesn’t designate me as the EA
'unknownits', //can’t retrieve the EC / ITS in my DB
'invalidsignature', //signature verification of the request by the EC fails
'invalidencryptionkey', //signature is good, but the key is bad
'deniedpermissions', //permissions not granted
'deniedtoomanycerts', //parallel limit
Enumerated.Extension
]) { }
export class AuthorizationValidationResponseCode extends Enumerated([
'ok',
'cantparse', //valid for any structure
'badcontenttype', //not encrypted, not signed, not permissionsverificationrequest
'imnottherecipient', //the “recipients” of the outermost encrypted data doesn’t include me
'unknownencryptionalgorithm', //either kexalg or contentencryptionalgorithm
'decryptionfailed', //works for ECIES - HMAC and AES - CCM
'invalidaa', //the AA certificate presented is invalid / revoked / whatever
'invalidaasignature', //the AA certificate presented can’t validate the request signature
'wrongea', //the encrypted signature doesn’t designate me as the EA
'unknownits', //can’t retrieve the EC / ITS in my DB
'invalidsignature', //signature verification of the request by the EC fails
'invalidencryptionkey', //signature is good, but the responseEncryptionKey is bad
'deniedpermissions', //requested permissions not granted
'deniedtoomanycerts', //parallel limit
'deniedrequest', //any other reason ?
Enumerated.Extension
]) { }
export class PublicKeys extends Sequence([
{
name: 'verificationKey',
type: Ieee1609Dot2.PublicVerificationKey
}, {
name: 'encryptionKey',
optional: true,
type: Ieee1609Dot2.PublicEncryptionKey
}
]) { }
export class CertificateSubjectAttributes extends Sequence([
{
name: 'id',
optional: true,
type: Ieee1609Dot2.CertificateId
}, {
name: 'validityPeriod',
optional: true,
type: Ieee1609Dot2.ValidityPeriod
}, {
name: 'region',
optional: true,
type: Ieee1609Dot2.GeographicRegion
}, {
name: 'assuranceLevel',
optional: true,
type: Ieee1609Dot2.SubjectAssurance
}, {
name: 'appPermissions',
optional: true,
type: SequenceOf(Ieee1609Dot2.PsidSsp)
}, {
name: 'certIssuePermissions',
optional: true,
type: SequenceOf(Ieee1609Dot2.PsidGroupPermissions)
}, {
extension: true
}
]) { }
export class SharedAtRequest extends Sequence([
{
name: 'eaId',
type: Ieee1609Dot2.HashedId8
}, {
name: 'keyTag',
type: Ieee1609Dot2.OctetString16
}, {
name: 'certificateFormat',
type: Uint8
}, {
name: 'requestedSubjectAttributes',
type: CertificateSubjectAttributes
}, {
extension: true
}
]) { }
export class ToBeSignedCrl extends Sequence([
{
name: 'version',
type: Integer()
}, {
name: 'thisUpdate',
type: Ieee1609Dot2.Time32
}, {
name: 'nextUpdate',
type: Ieee1609Dot2.Time32
}, {
name: 'entries',
type: SequenceOf(Ieee1609Dot2.HashedId8)
}, {
extension:true
}
]) { }
export class CtlFormat extends Sequence([
{
name: 'version',
type: Integer()
}, {
name: 'nextUpdate',
type: Ieee1609Dot2.Time32
}, {
name: 'isFullCtl',
type: Boolean
}, {
name: 'ctlSequence',
type: Uint8
}, {
name: 'ctlCommands',
type: SequenceOf(Choice([
{
name: 'add',
type: Choice([
{
name: 'rca', type: Sequence([
{ name: 'selfsignedRootCa', type: Ieee1609Dot2.Certificate },
{ name: 'linkRootCaCertificate', optional: true, type: Ieee1609Dot2.Certificate }
])
}, {
name: 'ea', type: Sequence([
{ name: 'eaCertificate', type: Ieee1609Dot2.Certificate },
{ name: 'aaAccessPoint', type: IA5String },
{ name: 'itsAccessPoint', optional: true, type: IA5String }
])
}, {
name: 'aa', type: Sequence([
{ name: 'aaCertificate', type: Ieee1609Dot2.Certificate },
{ name: 'accessPoint', type: IA5String }
])
}, {
name: 'dc', type: Sequence([
{ name: 'url', type: IA5String },
{ name: 'cert', optional: true, type: SequenceOf(Ieee1609Dot2.HashedId8) }
])
}, {
name: 'tlm', type: Sequence([
{ name: 'selfSignedTLMCertificate', type: Ieee1609Dot2.Certificate },
{ name: 'linkTLMCertificate', type: Ieee1609Dot2.Certificate, optional: true },
{ name: 'accessPoint', type: IA5String }
])
}, {
extension:true
}
])
}, {
name: 'delete',
type: Choice([
{ name: 'cert', type: Ieee1609Dot2.HashedId8 },
{ name: 'dc', type: IA5String },
{ extension:true }
])
}, {
extension: true
}
]))
}, {
extension: true
}
]) { }
export class CaCertificateRequest extends Sequence([
{
name: 'publicKeys',
type: PublicKeys
}, {
name: 'requestedSubjectAttributes',
type: CertificateSubjectAttributes
}, {
extension: true
}
]) { }
export class EcSignature extends Choice([
{
name: 'encryptedEcSignature',
type: Ieee1609Dot2.Data
}, {
name: 'ecSignature',
type: Ieee1609Dot2.Data
}
]) { }
export class InnerEcResponse extends Sequence([
{
name: 'requestHash',
type: Ieee1609Dot2.OctetString16
}, {
name: 'responseCode',
type: EnrolmentResponseCode
}, {
name: 'certificate',
optional: true,
type: Ieee1609Dot2.Certificate
}, {
extension:true
}
]){}
export class InnerAtRequest extends Sequence([
{
name: 'publicKeys',
type: PublicKeys
}, {
name: 'hmacKey',
type: Ieee1609Dot2.OctetString32
}, {
name: 'sharedAtRequest',
type: SharedAtRequest
}, {
name: 'ecSignature',
type: EcSignature
}, {
extension:true
}
]){}
export class InnerAtResponse extends Sequence([
{
name: 'requestHash',
type: Ieee1609Dot2.OctetString16
}, {
name: 'responseCode',
type: AuthorizationResponseCode
}, {
name: 'certificate',
optional: true,
type: Ieee1609Dot2.Certificate
}, {
extension: true
}
]){}
export class AuthorizationValidationRequest extends Sequence([
{
name: 'sharedAtRequest',
type: SharedAtRequest
}, {
name: 'ecSignature',
type: EcSignature
}, {
extension:true
}
]){}
export class AuthorizationValidationResponse extends Sequence([
{
name: 'requestHash',
type: Ieee1609Dot2.OctetString16
}, {
name: 'responseCode',
type: AuthorizationValidationResponseCode
}, {
name: 'confirmedSubjectAttributes',
optional: true,
type: CertificateSubjectAttributes
}, {
extension: true
}
]){}
export class ToBeSignedLinkCertificate extends Sequence ([
{
name: "expiryTime",
type: Ieee1609Dot2.Time32
},{
name: "certificateHash",
type: Ieee1609Dot2.HashedData
},{
extension:true
}
]){}
export function EtsiTs102941ButterflyAuthorizationRequest_X509Signed ( inner ) {
var C = class EtsiTs102941ButterflyAuthorizationRequest_X509Signed extends Ieee1609Dot2Data {
static from_oer(dc) {
/** @type {Ieee1609Dot2Data} */
let outer = super.from_oer(dc);
try {
outer.content.signedX509CertificateRequest.content = inner.from_oer(outer.content.signedX509CertificateRequest.dataCursor());
} catch(e){
}
return outer;
}
};
if(inner.fields)
C.innerFields = inner.fields;
return C;
}
export class EtsiTs102941DataContent extends Choice([
{
name: 'enrolmentRequest',
type: Ieee1609Dot2.Data
}, {
name: 'enrolmentResponse',
type: InnerEcResponse
}, {
name: 'authorizationRequest',
type: InnerAtRequest
}, {
name: 'authorizationResponse',
type: InnerAtResponse
}, {
name: 'certificateRevocationList',
type: ToBeSignedCrl
}, {
name: 'certificateTrustListTlm',
type: CtlFormat
}, {
name: 'certificateTrustListRca',
type: CtlFormat
}, {
name: 'authorizationValidationRequest',
type: AuthorizationValidationRequest
}, {
name: 'authorizationValidationResponse',
type: AuthorizationValidationResponse
}, {
name: 'caCertificateRequest',
type: CaCertificateRequest
}, {
estension:true
}, {
name: 'linkCertificateTlm',
type: ToBeSignedLinkCertificate
}, {
name: 'singleSignedLinkCertificateRca',
type: ToBeSignedLinkCertificate
}, {
name: 'doubleSignedlinkCertificateRca',
type: Ieee1609Dot2.Data
},
// Butterfly authorisation
{
name: 'butterflyAuthorizationRequest',
type: EeRaCertRequest
}, {
name: 'x509SignedbutterflyAuthorizationRequest',
type: EtsiTs102941ButterflyAuthorizationRequest_X509Signed
}, {
name: 'butterflyAuthorizationResponse',
type: RaEeCertInfo
}, {
name: 'butterflyCertificateRequest',
type: RaAcaCertRequest
}, {
name: 'butterflyCertificateResponse',
type: AcaRaCertResponse
}, {
name: 'butterflyAtDownloadRequest',
type: EeRaDownloadRequest
}
])
{};
export class EtsiTs102941Data extends Sequence([
{
name: 'version',
type: Uint8,
}, {
name: 'content',
type: EtsiTs102941DataContent
}
]) { }