Commit 75e87527 authored by YannGarcia's avatar YannGarcia
Browse files

Merging TTF002 in TTF011 - Phase1: AtsCAM, AtsDENM, AtsGeoNetworking, AtsSecurity, AtsPki

parent c01079ac
Loading
Loading
Loading
Loading

ItsPki_Pixits.ttcn

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.

ItsPki_TestCases.ttcn

100755 → 100644
+4733 −48

File changed.File mode changed from 100755 to 100644.

Preview size limit exceeded, changes collapsed.

ItsPki_TestControl.ttcn

100755 → 100644
+23 −1
Original line number Diff line number Diff line
@@ -36,6 +36,28 @@ module ItsPki_TestControl {
      }
    }

    if (PICS_IUT_CA_ROLE) {
      execute(TC_SECPKI_CA_CERTGEN_01_BV());
      execute(TC_SECPKI_CA_CERTGEN_02_BV_01());
      execute(TC_SECPKI_CA_CERTGEN_02_BV_02());
      execute(TC_SECPKI_CA_CERTGEN_02_BV_03());
      execute(TC_SECPKI_CA_CERTGEN_02_BO_01());
      execute(TC_SECPKI_CA_CERTGEN_03_BV());
      execute(TC_SECPKI_CA_CERTGEN_04_BV());
      execute(TC_SECPKI_CA_CERTGEN_05_BV());
      execute(TC_SECPKI_CA_CERTGEN_06_BV());
      execute(TC_SECPKI_CA_CERTGEN_07_BV());
      execute(TC_SECPKI_CA_CERTGEN_08_BV());
      execute(TC_SECPKI_CA_CERTGEN_09_BV());
      execute(TC_SECPKI_CA_CERTGEN_10_BV());
      execute(TC_SECPKI_CA_CERTGEN_11_BV());
      execute(TC_SECPKI_CA_CERTGEN_12_BV());
      execute(TC_SECPKI_CA_CERTGEN_13_BV_01());
      execute(TC_SECPKI_CA_CERTGEN_13_BV_02());
      execute(TC_SECPKI_CA_CERTGEN_14_BV());
      execute(TC_SECPKI_CA_CERTGEN_15_BV());
    }

    if (PICS_IUT_EA_ROLE) {
      execute(TC_SECPKI_EA_ENR_RCV_01_BV());
      execute(TC_SECPKI_EA_ENR_RCV_02_BI_01());
+11 −5
Original line number Diff line number Diff line
@@ -8,20 +8,20 @@ module LibItsPki_EncdecDeclarations {
  import from EtsiTs102941TypesAuthorizationValidation language "ASN.1:1997" all;
  import from EtsiTs102941MessagesCa language "ASN.1:1997" all;
  import from EtsiTs103097Module language "ASN.1:1997" all;
  import from EtsiTs102941TrustLists language "ASN.1:1997" all;

  // LibItsPki
  import from LibItsSecurity_TypesAndValues all;

  external function fx_enc_EtsiTs102941Data(in EtsiTs102941MessagesCa.EtsiTs102941Data p_etsi_ts_102941_data) return bitstring
  with {extension "prototype(convert) encode(PER)"}


  external function fx_dec_EtsiTs102941Data(inout bitstring b, out EtsiTs102941MessagesCa.EtsiTs102941Data p_etsi_ts_102941_data)return integer
  with {extension "prototype(sliding) decode(PER)"}

  external function fx_enc_EtsiTs102941DataContent(in EtsiTs102941MessagesCa.EtsiTs102941DataContent p_etsi_ts_102941_data) return bitstring
  with {extension "prototype(convert) encode(PER)"}


  external function fx_dec_EtsiTs102941DataContent(inout bitstring b, out EtsiTs102941MessagesCa.EtsiTs102941DataContent p_etsi_ts_102941_data)return integer
  with {extension "prototype(sliding) decode(PER)"}
  
@@ -135,4 +135,10 @@ module LibItsPki_EncdecDeclarations {
  external function fx_dec_PublicEncryptionKey(inout bitstring b, out Ieee1609Dot2BaseTypes.PublicEncryptionKey p) return integer
  with {extension "prototype(sliding) decode(PER)"}
  
  external function fx_enc_CtlFormat(in EtsiTs102941TrustLists.CtlFormat p) return bitstring
  with {extension "prototype(convert) encode(PER)"}
    
  external function fx_dec_CtlFormat(inout bitstring b, out EtsiTs102941TrustLists.CtlFormat p) return integer
  with {extension "prototype(sliding) decode(PER)"}
  
} // End of module LibItsPki_EncdecDeclarations 

lib/LibItsPki_Functions.ttcn

100755 → 100644
+628 −9

File changed.File mode changed from 100755 to 100644.

Preview size limit exceeded, changes collapsed.

Loading