Commit 625abfaa authored by Denis Filatov's avatar Denis Filatov
Browse files

Merge branch 'devel2' of https://forge.etsi.org/rep/ITS/ttcn/ats_pki_ts103525-3 into devel2

parents 7cb55703 1c91ea85
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -10,4 +10,10 @@ module ItsPki_Pixits {
  
  modulepar boolean PX_TRIGGER_EC_BEFORE_AT := true;
    
  modulepar boolean PX_CHECK_INITIAL_STATES := true;
  
  modulepar float PX_CERT_EXPIRATION_DELAY := 10.0;

  modulepar float PX_EC_REPETITION_TIMEOUT := 120.0;
  
} // End of module ItsPki_Pixits
+1374 −641

File changed.

Preview size limit exceeded, changes collapsed.

+8 −4
Original line number Diff line number Diff line
@@ -14,7 +14,8 @@ module ItsPki_TestControl {
        execute(TC_SECPKI_ITSS_ENR_02_BV());
        if (PICS_SECPKI_REENROLMENT) {
          execute(TC_SECPKI_ITSS_ENR_03_BV());
          execute(TC_SECPKI_ITSS_ENR_06_BV());
          execute(TC_SECPKI_ITSS_ENR_06_BV_1());
          execute(TC_SECPKI_ITSS_ENR_06_BV_2());
          execute(TC_SECPKI_ITSS_ENR_12_BV());
        }
        if (PICS_SECPKI_CRL) {
@@ -29,9 +30,12 @@ module ItsPki_TestControl {
        }
        execute(TC_SECPKI_ITSS_ENR_05_BV());
        execute(TC_SECPKI_ITSS_ENR_07_BV());
        execute(TC_SECPKI_ITSS_ENR_08_BV());
        execute(TC_SECPKI_ITSS_ENR_09_BV());
        execute(TC_SECPKI_ITSS_ENR_10_BV());
        execute(TC_SECPKI_ITSS_ENR_08_BV_1());
        execute(TC_SECPKI_ITSS_ENR_08_BV_2());
        execute(TC_SECPKI_ITSS_ENR_09_BV_1());
        execute(TC_SECPKI_ITSS_ENR_09_BV_2());
        execute(TC_SECPKI_ITSS_ENR_10_BV_1());
        execute(TC_SECPKI_ITSS_ENR_10_BV_2());
        execute(TC_SECPKI_ITSS_ENR_11_BV());
        
        execute(TC_SECPKI_ITSS_ENR_RECV_01_BV());
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ module LibItsPki_EncdecDeclarations {
  import from EtsiTs103097Module language "ASN.1:1997" all;
  import from EtsiTs102941TrustLists language "ASN.1:1997" all;

  // LibItsSecurity
  // LibItsPki
  import from LibItsSecurity_TypesAndValues all;

  external function fx_enc_EtsiTs102941Data(in EtsiTs102941MessagesCa.EtsiTs102941Data p_etsi_ts_102941_data) return bitstring
+10 −0
Original line number Diff line number Diff line
@@ -60,11 +60,21 @@ module LibItsPki_Pics {
   */
  modulepar boolean PICS_PKI_AUTH_POP := true;

  /**
   * @desc Do the Authorization Request use SignedWithPop mechanism?
   */
  modulepar boolean PICS_UT_STATE_INDICATION := true;

  /**
   * @desc Certificate used by the IUT acting as ITS-S
   */
  modulepar charstring PICS_IUT_CERTIFICATE_ID := "CERT_IUT_A_AT";

  /**
   * @desc Default enrollment credentials used by ITS-S
   */
  modulepar charstring PICS_IUT_EC_CERTIFICATE_ID := "CERT_IUT_A_EC";

  /**
   * @desc Certificate used by the IUT acting as EA
   */
Loading