LibItsPki_Pixits.ttcn 1.14 KB
Newer Older
garciay's avatar
garciay committed
1
module LibItsPki_Pixits {
Yann Garcia's avatar
Yann Garcia committed
2
3
4
5
6
7
8
  
  // LibCommon
  import from LibCommon_BasicTypesAndValues all;
  import from LibCommon_DataStrings all;
  
  // LibIts
  import from IEEE1609dot2BaseTypes language "ASN.1:1997" all;
9
10
11

  // LibItsPki
  import from LibItsPki_TypesAndValues all;
garciay's avatar
garciay committed
12
  
13
14
15
16
17
18
19
20
21
  /**
   * @desc Do the encryption keys be included in Authorization Request?
   */
  modulepar boolean PX_INCLUDE_ENCRYPTION_KEYS := true;
  
  /**
   * @desc Do the Authorization Request use SignedWithPop mechanism?
   */
  modulepar boolean PX_AUTHORIZATION_REQUEST_WITH_POP := true;
Yann Garcia's avatar
Yann Garcia committed
22
23
24
25
26

  /**
   * @desc Contains the private key for the EC certificate, used in case of re-enrolment
   */
  modulepar Oct32 PX_EC_PRIVATE_KEY := int2oct(0, 32);
27
  
Yann Garcia's avatar
Yann Garcia committed
28
29
30
31
  /**
   * @desc Contains the hashed id8 of the EC certificate, used in case of re-enrolment
   */
  modulepar HashedId8 PX_EC_HASHED_ID8 := int2oct(0, 8);
32
33
34
35
36
37
38
39
40
41
42
  
  /**
   * @desc Indicate which encryption algorithem to be used
   */
  modulepar SecurityAlg PX_EC_ALG := e_nist_p256;
  
  /**
   * @desc Indicate which verification algorithem to be used
   */
  modulepar SecurityAlg PX_VE_ALG := e_nist_p256;
  
garciay's avatar
garciay committed
43
} // End of module LibItsPki_Pixits