LibItsPki_Templates.ttcn 35.9 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
/**
 *  @author   ETSI / STF545
 *  @version  $URL$
 *            $Id$
 *  @desc     Module containing templates for IT PKI Protocol
 *  @copyright   ETSI Copyright Notification
 *               No part may be reproduced except as authorized by written permission.
 *               The copyright and the foregoing restriction extend to reproduction in all media.
 *               All rights reserved.
 *
 */
module LibItsPki_Templates {
garciay's avatar
garciay committed
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  
  // LibCommon
  import from LibCommon_BasicTypesAndValues all;
  import from LibCommon_DataStrings all;
  
  // LibItsCommon
  import from LibItsCommon_TypesAndValues all;
  import from LibItsCommon_Functions all;
  import from LibItsCommon_TypesAndValues all;
  import from LibItsCommon_ASN1_NamedNumbers all;
  
  // LibIts
  import from IEEE1609dot2BaseTypes language "ASN.1:1997" all;
  import from IEEE1609dot2 language "ASN.1:1997" all;
  import from EtsiTs102941BaseTypes language "ASN.1:1997" all;
  import from EtsiTs102941TypesEnrolment language "ASN.1:1997" all;
29
  import from EtsiTs102941TypesAuthorization language "ASN.1:1997" all;
30
  import from EtsiTs102941TypesAuthorizationValidation language "ASN.1:1997" all;
31
  import from EtsiTs102941MessagesCa language "ASN.1:1997" all;
YannGarcia's avatar
YannGarcia committed
32
  import from EtsiTs102941TrustLists language "ASN.1:1997" all;
garciay's avatar
garciay committed
33
34
35
  import from EtsiTs103097Module language "ASN.1:1997" all;
  
  // LibItsSecurity
YannGarcia's avatar
YannGarcia committed
36
  import from LibItsSecurity_TypesAndValues all;
garciay's avatar
garciay committed
37
  import from LibItsSecurity_Templates all;
38

39
40
41
  // LibItsPki
  import from LibItsPki_TypesAndValues all;

garciay's avatar
garciay committed
42
43
44
  template (value) EtsiTs102941Data m_etsiTs102941Data_inner_ec_request_signed_for_pop(
                                                                                       in template (value) InnerEcRequestSignedForPop p_inner_ec_request_signed_for_pop
                                                                                       ) := {
45
    version := PkiProtocolVersion,
garciay's avatar
garciay committed
46
47
48
49
50
51
52
53
    content := {
      enrolmentRequest := p_inner_ec_request_signed_for_pop
    }
  } // End of template m_etsiTs102941Data_inner_ec_request_signed_for_pop
  
  template (value) EtsiTs102941Data m_etsiTs102941Data_inner_ec_response(
                                                                         in template (value) InnerEcResponse p_inner_ec_response
                                                                         ) := {
54
    version := PkiProtocolVersion,
garciay's avatar
garciay committed
55
56
57
58
59
    content := {
      enrolmentResponse := p_inner_ec_response
    }
  } // End of template m_etsiTs102941Data_inner_ec_response

Yann Garcia's avatar
Yann Garcia committed
60
61
62
63
64
65
66
67
68
  template (value) EtsiTs102941Data m_etsiTs102941Data_inner_at_response(
                                                                         in template (value) InnerAtResponse p_inner_at_response
                                                                         ) := {
    version := PkiProtocolVersion,
    content := {
      authorizationResponse := p_inner_at_response
    }
  } // End of template m_etsiTs102941Data_inner_at_response

Yann Garcia's avatar
Yann Garcia committed
69
70
71
72
73
74
75
76
77
  template (present) EtsiTs102941Data mw_etsiTs102941Data_inner_ec_response(
                                                                            template (present) InnerEcResponse p_inner_ec_response := ?
                                                                            ) := {
    version := PkiProtocolVersion,
    content := {
      enrolmentResponse := p_inner_ec_response
    }
  } // End of template mw_etsiTs102941Data_inner_ec_response

78
79
80
  template (value) EtsiTs102941Data m_etsiTs102941Data_authorization_request(
                                                                             in template (value) InnerAtRequest p_inner_at_request
                                                                             ) := {
81
82
    version := PkiProtocolVersion,
    content := {
83
      authorizationRequest := p_inner_at_request
84
    }
85
  } // End of template m_etsiTs102941Data_authorization_request
86
  
87
88
89
  template (value) EtsiTs102941Data m_etsiTs102941Data_authorization_response(
                                                                              in template (value) InnerAtResponse p_inner_at_response
                                                                              ) := {
90
91
92
93
    version := PkiProtocolVersion,
    content := {
      authorizationResponse := p_inner_at_response
    }
94
  } // End of template m_etsiTs102941Data_authorization_response
95
  
96
97
98
99
100
101
102
103
104
105
  template (value) EtsiTs102941Data m_etsiTs102941Data_authorization_validation_request(
                                                                                        in template (value) AuthorizationValidationRequest p_authorization_validation_request
                                                                                        ) := {
    version := PkiProtocolVersion,
    content := {
      authorizationValidationRequest := p_authorization_validation_request
    }
  } // End of template m_etsiTs102941Data_authorization_validation_request
  
  template (value) EtsiTs102941Data m_etsiTs102941Data_authorization_validation_response(
106
107
                                                                                         in template (value) AuthorizationValidationResponse p_authorization_validation_response
                                                                                         ) := {
108
109
110
111
112
113
    version := PkiProtocolVersion,
    content := {
      authorizationValidationResponse := p_authorization_validation_response
    }
  } // End of template m_etsiTs102941Data_authorization_validation_response
  
garciay's avatar
garciay committed
114
115
116
117
118
119
120
121
122
123
  template (present) EnrolmentRequestMessage mw_enrolmentRequestMessage(
                                                                        template (present) EncryptedData p_encryptedData := ?
                                                                        ) modifies mw_etsiTs103097Data_encrypted := {
  } // End of template mw_enrolmentRequestMessage
  
  template (present) EnrolmentResponseMessage mw_enrolmentResponseMessage(
                                                                         template (present) EncryptedData p_encryptedData := ?
                                                                         ) modifies mw_etsiTs103097Data_encrypted := {
  } // End of template mw_enrolmentResponseMessage

124
125
126
127
  template (value) EtsiTs103097Data m_authorizationValidationRequestMessage(
                                                                            in template (value) EncryptedData p_encryptedData
                                                                            ) modifies m_etsiTs103097Data_encrypted := {
  } // End of template m_authorizationValidationRequestMessage
garciay's avatar
garciay committed
128
  
Yann Garcia's avatar
Yann Garcia committed
129
130
131
132
133
  template (present) EtsiTs103097Data mw_authorizationValidationResponseMessage(
                                                                                template (present) EncryptedData p_encryptedData := ?
                                                                                ) modifies mw_etsiTs103097Data_encrypted := {
  } // End of template mw_authorizationValidationResponseMessage
  
YannGarcia's avatar
YannGarcia committed
134
135
136
137
138
139
140
141
142
  template (present) EtsiTs102941Data mw_etsiTs102941Data_to_be_signed_rca_ctl(
                                                                               template (present) ToBeSignedRcaCtl p_to_be_signed_rca_ctl := ?
                                                                               ) := {
    version := PkiProtocolVersion,
    content := {
      certificateTrustListRca := p_to_be_signed_rca_ctl
    }
  } // End of template mw_etsiTs102941Data_to_be_signed_rca_ctl

143
144
145
146
147
  template (value) AuthorizationRequestMessage m_authorizationRequestMessage(
                                                                             in template (value) EncryptedData p_encryptedData
                                                                             ) modifies m_etsiTs103097Data_encrypted := {
  } // End of template m_authorizationRequestMessage
  
garciay's avatar
garciay committed
148
149
150
151
152
  template (present) AuthorizationRequestMessage mw_authorizationRequestMessage(
                                                                                template (present) EncryptedData p_encryptedData := ?
                                                                                ) modifies mw_etsiTs103097Data_encrypted := {
  } // End of template mw_authorizationRequestMessage
  
153
  template (value) AuthorizationResponseMessage m_authorizationResponseMessage(
154
155
                                                                               in template (value) EncryptedData p_encryptedData
                                                                               ) modifies m_etsiTs103097Data_encrypted := {
156
  } // End of template m_authorizationResponseMessage
garciay's avatar
garciay committed
157
  
garciay's avatar
garciay committed
158
159
160
161
162
  template (present) AuthorizationResponseMessage mw_authorizationResponseMessage(
                                                                                  template (present) EncryptedData p_encryptedData := ?
                                                                                  ) modifies mw_etsiTs103097Data_encrypted := {
  } // End of template mw_authorizationResponseMessage
  
garciay's avatar
garciay committed
163
164
165
166
167
168
  template (value) EtsiTs102941DataContent m_enrolmentRequest(
                                                              in template (value) InnerEcRequestSignedForPop p_enrolmentRequest
                                                              ) := {
    enrolmentRequest := p_enrolmentRequest
  } // End of template m_enrolmentRequest
  
169
170
171
172
173
174
175
176
177
178
179
  template (present) EtsiTs102941DataContent mw_enrolmentRequest(
                                                                 template (present) InnerEcRequestSignedForPop p_enrolmentRequest := ?
                                                                 ) := {
  enrolmentRequest := p_enrolmentRequest
  } // End of template mw_enrolmentRequest

  template (present) InnerEcRequestSignedForPop mw_innerEcRequestSignedForPop(
                                                                              template (present) SignedData p_signedData := ?
                                                                              ) modifies mw_etsiTs103097Data_signed := {
  } // End of template mw_innerEcRequestSignedForPop
  
garciay's avatar
garciay committed
180
181
182
183
184
185
  template (present) EtsiTs102941DataContent mw_enrolmentResponse(
                                                                  template (present) InnerEcResponse p_enrolmentResponse := ?
                                                                  ) := {
    enrolmentResponse := p_enrolmentResponse
  } // End of template mw_enrolmentResponse
  
186
187
188
189
190
191
  template (value) EtsiTs102941DataContent m_authorizationRequest(
                                                                  in template (value) InnerAtRequest p_authorizationRequest
                                                                  ) := {
    authorizationRequest := p_authorizationRequest
  } // End of template m_authorizationRequest
  
Yann Garcia's avatar
Yann Garcia committed
192
193
194
195
196
197
  template (present) EtsiTs102941DataContent mw_authorizationRequest(
                                                                     in template (present) InnerAtRequest p_authorizationRequest := ?
                                                                     ) := {
    authorizationRequest := p_authorizationRequest
  } // End of template mw_authorizationRequest
  
198
199
200
201
202
203
  template (present) EtsiTs102941DataContent mw_authorizationResponse(
                                                                      template (present) InnerAtResponse p_authorizationResponse := ?
                                                                      ) := {
    authorizationResponse := p_authorizationResponse
  } // End of template mw_authorizationResponse
  
YannGarcia's avatar
YannGarcia committed
204
205
206
207
208
209
  template (present) EtsiTs102941DataContent mw_authorizationValidationRequest(
                                                                               template (present) AuthorizationValidationRequest p_authorization_validation_request := ?
                                                                               ) := {
    authorizationValidationRequest := p_authorization_validation_request
  } // End of template mw_authorizationValidationRequest
  
210
  template (present) EtsiTs102941DataContent mw_authorizationValidationResponse(
YannGarcia's avatar
YannGarcia committed
211
                                                                                template (present) AuthorizationValidationResponse p_authorization_validation_response := ?
212
                                                                                ) := {
YannGarcia's avatar
YannGarcia committed
213
    authorizationValidationResponse := p_authorization_validation_response
214
215
  } // End of template mw_authorizationValidationResponse
  
garciay's avatar
garciay committed
216
  template (value) InnerEcRequest m_innerEcRequest(
217
                                                   in template (value) octetstring p_itsId,
garciay's avatar
garciay committed
218
219
220
221
222
223
224
225
226
227
                                                   in template (value) PublicKeys p_publicKeys,
                                                   in template (value) CertificateSubjectAttributes p_requestedSubjectAttributes
                                                   ) := {
    itsId                      := p_itsId,
    certificateFormat          := 1,
    publicKeys                 := p_publicKeys,
    requestedSubjectAttributes := p_requestedSubjectAttributes
  } // End of template m_innerEcRequest
  
  template (present) InnerEcRequest mw_innerEcRequest(
228
                                                      template (present) octetstring p_itsId := ?,
garciay's avatar
garciay committed
229
230
231
232
233
234
235
236
237
                                                      template (present) PublicKeys p_publicKeys := ?,
                                                      template (present) CertificateSubjectAttributes p_requestedSubjectAttributes := ?
                                                      ) := {
    itsId                      := p_itsId,
    certificateFormat          := 1,
    publicKeys                 := p_publicKeys,
    requestedSubjectAttributes := p_requestedSubjectAttributes
  } // End of template mw_innerEcRequest
  
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
  template (value) InnerAtRequest m_innerAtRequest(
                                                   in template (value) PublicKeys p_publicKeys,
                                                   in template (value) Oct32 p_hmacKey,
                                                   in template (value) SharedAtRequest p_sharedAtRequest,
                                                   in template (value) EcSignature p_ecSignature
                                                   ) := {
    publicKeys      := p_publicKeys,
    hmacKey         := p_hmacKey,
    sharedAtRequest := p_sharedAtRequest,
    ecSignature     := p_ecSignature
  } // End of template m_innerAtRequest
  
  template (present) InnerAtRequest mw_innerAtRequest(
                                                      template (present) PublicKeys p_publicKeys := ?,
                                                      template (present) Oct32 p_hmacKey := ?,
                                                      template (present) SharedAtRequest p_sharedAtRequest := ?,
                                                      template (present) EcSignature p_ecSignature := ?
                                                      ) := {
    publicKeys      := p_publicKeys,
    hmacKey         := p_hmacKey,
    sharedAtRequest := p_sharedAtRequest,
    ecSignature     := p_ecSignature
  } // End of template mw_innerAtRequest
  
garciay's avatar
garciay committed
262
263
264
265
266
267
268
  template (omit) PublicKeys m_publicKeys(
                                          in template (value) PublicVerificationKey p_verificationKey,
                                          in template (omit) PublicEncryptionKey p_encryptionKey := omit
                                          ) := {
  verificationKey := p_verificationKey,
  encryptionKey   := p_encryptionKey
  } // End of template m_publicKeys
269
  
garciay's avatar
garciay committed
270
271
272
273
274
275
276
  template PublicKeys mw_publicKeys(
                                    template (present) PublicVerificationKey p_verificationKey := ?,
                                    template PublicEncryptionKey p_encryptionKey := *
                                    ) := {
  verificationKey := p_verificationKey,
  encryptionKey   := p_encryptionKey
  } // End of template mw_publicKeys
277
  
278
279
280
281
282
283
284
285
286
287
288
289
290
291
  template (omit) CertificateSubjectAttributes m_certificateSubjectAttributes_id_none(
                                                                                      in template (value) SequenceOfPsidSsp p_appPermissions,
                                                                                      in template (omit) ValidityPeriod p_validityPeriod := omit,
                                                                                      in template (omit) GeographicRegion p_region := omit,
                                                                                      in template (omit) SubjectAssurance p_assuranceLevel := omit
                                                                                      ) := {
  id                   := { none_ := NULL },
  validityPeriod       := p_validityPeriod,
  region               := p_region,
  assuranceLevel       := p_assuranceLevel,
  appPermissions       := p_appPermissions,
  certIssuePermissions := omit
  } // End of template m_certificateSubjectAttributes_id_none
  
YannGarcia's avatar
YannGarcia committed
292
293
294
295
296
297
298
299
300
  template (omit) CertificateSubjectAttributes m_certificateSubjectAttributes_id_omit(
                                                                                      in template (value) SequenceOfPsidSsp p_appPermissions,
                                                                                      in template (omit) ValidityPeriod p_validityPeriod := omit,
                                                                                      in template (omit) GeographicRegion p_region := omit,
                                                                                      in template (omit) SubjectAssurance p_assuranceLevel := omit
                                                                                      ) modifies m_certificateSubjectAttributes_id_none := {
  id                   := omit
  } // End of template m_certificateSubjectAttributes_id_omit
  
301
302
303
304
305
306
307
308
  template (omit) CertificateSubjectAttributes m_certificateSubjectAttributes_id_name(
                                                                                      in template (value) Hostname p_name,
                                                                                      in template (value) SequenceOfPsidSsp p_appPermissions,
                                                                                      in template (omit) ValidityPeriod p_validityPeriod := omit,
                                                                                      in template (omit) GeographicRegion p_region := omit,
                                                                                      in template (omit) SubjectAssurance p_assuranceLevel := omit
                                                                                      ) := {
  id                   := { name := p_name },
garciay's avatar
garciay committed
309
310
311
312
313
  validityPeriod       := p_validityPeriod,
  region               := p_region,
  assuranceLevel       := p_assuranceLevel,
  appPermissions       := p_appPermissions,
  certIssuePermissions := omit
314
  } // End of template m_certificateSubjectAttributes_id_name
315
  
garciay's avatar
garciay committed
316
317
318
319
320
321
322
323
  template (value) InnerEcResponse m_innerEcResponse_ok(
                                                        in template (value) Oct16 p_requestHash,
                                                        in template (value) EtsiTs103097Certificate p_certificate
                                                        ) := {
  requestHash  := p_requestHash,
  responseCode := ok,
  certificate  := p_certificate
  } // End of template m_innerEcResponse_ok
324
  
garciay's avatar
garciay committed
325
326
327
328
329
330
331
332
  template (present) InnerEcResponse mw_innerEcResponse_ok(
                                                           template (present) Oct16 p_requestHash := ?,
                                                           template (present) EtsiTs103097Certificate p_certificate := ?
                                                           ) := {
  requestHash  := p_requestHash,
  responseCode := ok,
  certificate  := p_certificate
  } // End of template mw_innerEcResponse_ok
333
  
garciay's avatar
garciay committed
334
335
336
337
338
339
340
341
  template (value) InnerEcResponse m_innerEcResponse_ko(
                                                        in template (value) Oct16 p_requestHash,
                                                        in template (value) EnrolmentResponseCode p_responseCode
                                                        ) := {
  requestHash  := p_requestHash,
  responseCode := p_responseCode,
  certificate  := omit
  } // End of template m_innerEcResponse_ko
342
  
garciay's avatar
garciay committed
343
344
345
346
347
348
  template (present) InnerEcResponse mw_innerEcResponse_ko(
                                                           template (present) Oct16 p_requestHash := ?,
                                                           template (present) EnrolmentResponseCode p_responseCode := complement(ok)
                                                           ) := {
  requestHash  := p_requestHash,
  responseCode := p_responseCode,
349
  certificate  := omit
garciay's avatar
garciay committed
350
351
  } // End of template mw_innerEcResponse_ko
  
352
353
354
355
356
357
358
359
360
361
362
363
364
  template (value) InnerAtResponse m_innerAtResponse_ok(
                                                        in template (value) Oct16 p_requestHash,
                                                        in template (value) EtsiTs103097Certificate p_certificate
                                                        ) := {
  requestHash  := p_requestHash,
  responseCode := ok,
  certificate  := p_certificate
  } // End of template m_innerAtResponse_ok
  
  template (present) InnerAtResponse mw_innerAtResponse_ok(
                                                           template (present) Oct16 p_requestHash := ?,
                                                           template (present) EtsiTs103097Certificate p_certificate := ?
                                                           ) := {
Yann Garcia's avatar
Yann Garcia committed
365
366
367
    requestHash  := p_requestHash,
    responseCode := ok,
    certificate  := p_certificate
368
  } // End of template mw_innerAtResponse_ok
garciay's avatar
garciay committed
369
  
Yann Garcia's avatar
Yann Garcia committed
370
371
372
373
374
375
376
377
378
  template (value) InnerAtResponse m_innerAtResponse_ko(
                                                        in template (value) Oct16 p_requestHash,
                                                        in template (value) AuthorizationResponseCode p_responseCode
                                                        ) := {
    requestHash  := p_requestHash,
    responseCode := p_responseCode,
    certificate  := omit
  } // End of template m_innerAtResponse_ko
  
379
380
381
382
383
384
385
386
  template (present) InnerAtResponse mw_innerAtResponse_ko(
                                                           template (present) Oct16 p_requestHash := ?,
                                                           template (present) AuthorizationResponseCode p_responseCode := complement(ok)
                                                           ) := {
  requestHash  := p_requestHash,
  responseCode := p_responseCode,
  certificate  := omit
  } // End of template mw_innerAtResponse_ko
garciay's avatar
garciay committed
387
  
YannGarcia's avatar
YannGarcia committed
388
389
390
391
  template (value) AuthorizationValidationRequest m_authorization_validation_request(
                                                                                     in template (value) SharedAtRequest p_sharedAtRequest,
                                                                                     in template (value) EcSignature p_ecSignature
                                                                                     ) := {
392
393
    sharedAtRequest := p_sharedAtRequest,
    ecSignature     := p_ecSignature
YannGarcia's avatar
YannGarcia committed
394
  } // End of template m_authorization_validation_request
395
  
YannGarcia's avatar
YannGarcia committed
396
397
398
399
  template (present) AuthorizationValidationRequest mw_authorization_validation_request(
                                                                                        template (present) SharedAtRequest p_sharedAtRequest := ?,
                                                                                        template (present) EcSignature p_ecSignature := ?
                                                                                        ) := {
400
401
    sharedAtRequest := p_sharedAtRequest,
    ecSignature     := p_ecSignature
YannGarcia's avatar
YannGarcia committed
402
  } // End of template mw_authorization_validation_request
403
404
405
406
407
408
409
410
411
412
  
  template (value) AuthorizationValidationResponse m_authorizationValidationResponse_ok(
                                                                                        template (value) Oct16 p_requestHash,
                                                                                        template (value) CertificateSubjectAttributes p_confirmedSubjectAttributes
                                                                                        ) := {
    requestHash                := p_requestHash,
    responseCode               := ok,
    confirmedSubjectAttributes := p_confirmedSubjectAttributes
  } // End of template m_authorizationValidationResponse_ok
  
413
414
415
416
417
418
419
420
421
  template (present) AuthorizationValidationResponse mw_authorizationValidationResponse_ok(
                                                                                           template (present) Oct16 p_requestHash := ?,
                                                                                           template (present) CertificateSubjectAttributes p_confirmedSubjectAttributes := ?
                                                                                           ) := {
    requestHash                := p_requestHash,
    responseCode               := ok,
    confirmedSubjectAttributes := p_confirmedSubjectAttributes
  } // End of template mw_authorizationValidationResponse_ok
  
Yann Garcia's avatar
Yann Garcia committed
422
423
424
425
426
427
428
429
430
  template (value) AuthorizationValidationResponse m_authorizationValidationResponse_ko(
                                                                                        in template (value) Oct16 p_requestHash,
                                                                                        in template (value) AuthorizationValidationResponseCode p_responseCode
                                                                                         ) := {
    requestHash                := p_requestHash,
    responseCode               := p_responseCode,
    confirmedSubjectAttributes := omit
  } // End of template m_authorizationValidationResponse_ko

431
432
433
434
435
436
437
  template (present) AuthorizationValidationResponse mw_authorizationValidationResponse_ko(
                                                                                           template (present) Oct16 p_requestHash := ?
                                                                                           ) := {
    requestHash                := p_requestHash,
    responseCode               := complement(ok),
    confirmedSubjectAttributes := omit
  } // End of template mw_authorizationValidationResponse_ko
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483

  template (value) SharedAtRequest m_shared_at_request(
                                                       in template (value) HashedId8 p_eaId,
                                                       in template (value) Oct16 p_keyTag,
                                                       in template (value) CertificateSubjectAttributes p_requestedSubjectAttributes
                                                       ) := {
    eaId                       := p_eaId,
    keyTag                     := p_keyTag,
    certificateFormat          := 1,
    requestedSubjectAttributes := p_requestedSubjectAttributes
  } // End of template m_shared_at_request
  
  template (present) SharedAtRequest mw_shared_at_request(
                                                          template (present) HashedId8 p_eaId := ?,
                                                          template (present) Oct16 p_keyTag := ?,
                                                          template (present) CertificateSubjectAttributes p_requestedSubjectAttributes := ?
                                                       ) := {
    eaId                       := p_eaId,
    keyTag                     := p_keyTag,
    certificateFormat          := 1,
    requestedSubjectAttributes := p_requestedSubjectAttributes
  } // End of template mw_shared_at_request

  template (value) EcSignature m_ec_signature(
                                              in template (value) EtsiTs103097Data p_encryptedEcSignature
                                              ) := {
    encryptedEcSignature := p_encryptedEcSignature
  } // End of template m_ec_signature
  
  template (present) EcSignature mw_ec_signature(
                                                 template (present) EtsiTs103097Data p_encryptedEcSignature := ?
                                              ) := {
    encryptedEcSignature := p_encryptedEcSignature
  } // End of template mw_ec_signature

  template (value) EcSignature m_ec_signature_ext_payload(
                                                          in template (value) EtsiTs103097Data p_ecSignature
                                                          ) := {
    ecSignature := p_ecSignature
  } // End of template m_ec_signature_ext_payload
  
  template (present) EcSignature mw_ec_signature_ext_payload(
                                                             template (present) EtsiTs103097Data p_ecSignature := ?
                                                             ) := {
    ecSignature := p_ecSignature
  } // End of template mw_ec_signature_ext_payload
484
  
485
  template (omit) CertificateSubjectAttributes m_certificate_subject_attributes(
486
487
                                                                                in template (value) SequenceOfPsidSsp p_appPermissions,
                                                                                in template (value) SequenceOfPsidGroupPermissions p_certIssuePermissions,
488
489
490
                                                                                in template (omit) CertificateId p_id := omit,
                                                                                in template (omit) ValidityPeriod p_validityPeriod := omit,
                                                                                in template (omit) GeographicRegion p_region := omit,
491
                                                                                in template (omit) SubjectAssurance p_assuranceLevel := omit
492
493
494
495
496
497
498
499
                                                                                ) := {
    id                   := p_id,
    validityPeriod       := p_validityPeriod,
    region               := p_region,
    assuranceLevel       := p_assuranceLevel,
    appPermissions       := p_appPermissions,
    certIssuePermissions := p_certIssuePermissions
  } // End of template m_certificate_subject_attributes
500
  
Yann Garcia's avatar
Yann Garcia committed
501
502
  template CertificateSubjectAttributes mw_certificate_subject_attributes(
                                                                          template (present) SequenceOfPsidSsp p_appPermissions := ?,
503
                                                                          template CertificateId p_id := *,
Yann Garcia's avatar
Yann Garcia committed
504
                                                                          template (present) ValidityPeriod p_validityPeriod := ?,
YannGarcia's avatar
YannGarcia committed
505
                                                                          template SubjectAssurance p_assuranceLevel := *,
Yann Garcia's avatar
Yann Garcia committed
506
507
508
                                                                          template GeographicRegion p_region := *,
                                                                          template SequenceOfPsidGroupPermissions p_certIssuePermissions := omit
                                                                          ) := {
509
    id                   := p_id ifpresent,
Yann Garcia's avatar
Yann Garcia committed
510
511
512
513
514
515
516
    validityPeriod       := p_validityPeriod,
    region               := p_region,
    assuranceLevel       := p_assuranceLevel,
    appPermissions       := p_appPermissions,
    certIssuePermissions := p_certIssuePermissions
  } // End of template mw_certificate_subject_attributes
  
Yann Garcia's avatar
Yann Garcia committed
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
  template CertificateSubjectAttributes mw_certificate_subject_attributes_optional_assuranceLevel(
                                                                                                  template (present) SequenceOfPsidSsp p_appPermissions := ?,
                                                                                                  template (present) CertificateId p_id := ?,
                                                                                                  template (present) ValidityPeriod p_validityPeriod := ?,
                                                                                                  template SubjectAssurance p_assuranceLevel := *,
                                                                                                  template GeographicRegion p_region := *,
                                                                                                  template SequenceOfPsidGroupPermissions p_certIssuePermissions := omit
                                                                                                  ) := {
    id                   := p_id,
    validityPeriod       := p_validityPeriod,
    region               := p_region,
    assuranceLevel       := p_assuranceLevel,
    appPermissions       := p_appPermissions,
    certIssuePermissions := p_certIssuePermissions
  } // End of template mw_certificate_subject_attributes
YannGarcia's avatar
YannGarcia committed
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589

  template (present) ToBeSignedRcaCtl mw_to_be_signed_rca_full_ctl := {
    version     := 1,
    nextUpdate  := ?,
    isFullCtl   := true,
    ctlSequence := ?,
    ctlCommands := ?
  } // End of template mw_to_be_signed_rca_ful_ctl

  template (present) ToBeSignedRcaCtl mw_to_be_signed_rca_delta_ctl := {
    version     := 1,
    nextUpdate  := ?,
    isFullCtl   := false,
    ctlSequence := ?,
    ctlCommands := ?
  } // End of template mw_to_be_signed_rca_delta_ctl

  template (present) TlmEntry mw_tlm_entry(
                                           template (present) EtsiTs103097Certificate p_selfSignedTLMCertificate := ?,
                                           template (present) Url p_accessPoint := ?
                                           ) := {
    selfSignedTLMCertificate := p_selfSignedTLMCertificate,
    linkTLMCertificate       := *,
    accessPoint              := p_accessPoint
  } // End of template mw_tlm_entry

  template (present) RootCaEntry mw_root_ca_entry(
                                                  template (present) EtsiTs103097Certificate p_selfsignedRootCa := ?
                                                  ) :=  {
    selfsignedRootCa      := p_selfsignedRootCa,
    linkRootCaCertificate := *
  } // End of template mw_root_ca_entry

  template (present) EaEntry mw_ea_entry(
                                         template (present) EtsiTs103097Certificate p_eaCertificate := ?,
                                         template (present) Url p_aaAccessPoint := ?
                                         ) := {
    eaCertificate     := p_eaCertificate,
    aaAccessPoint     := p_aaAccessPoint,
    itsAccessPoint    := *
  } // End of linkRootCaCertificate mw_ea_entry

  template (present) AaEntry mw_aa_entry(
                                         template (present) EtsiTs103097Certificate p_aaCertificate := ?,
                                         template (present) Url p_accessPoint := ?
                                         ) := {
    aaCertificate := p_aaCertificate,
    accessPoint   := p_accessPoint
  } // End of template mw_aa_entry

  template (present) DcEntry mw_dc_entry(
                                         template (present) Url p_url := ?,
                                         template (present) HashedId8s p_cert := ?
                                         ) := {
    url  := p_url,
    cert := p_cert
  } // End of template mw_dc_entry

garciay's avatar
garciay committed
590
} // End of module LibItsPki_Templates