Commit ab46d30c authored by filatov's avatar filatov
Browse files

1. PX_CERT_FOR_TA ==> PX_CERT_FOR_TS ( Fix #0007564 )

2. Use names instead of HashID for IUT certificate definition in SSP tests ( #0007563 )
parent ee4147b5
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -127,7 +127,7 @@ module LibItsCam_Functions {
         * @desc Initialise secure mode if required
         * @desc Initialise secure mode if required
         */
         */
        function f_initialiseSecuredMode(
        function f_initialiseSecuredMode(
                                         in charstring p_certificateId := PX_CERT_FOR_TA
                                         in charstring p_certificateId := PX_CERT_FOR_TS
        ) runs on ItsCam {
        ) runs on ItsCam {
            
            
            if (PICS_IS_IUT_SECURED == true) {
            if (PICS_IS_IUT_SECURED == true) {
@@ -287,7 +287,7 @@ module LibItsCam_Functions {
         * @param   p_certificateId The certificate identifier the TA shall use in case of secured IUT
         * @param   p_certificateId The certificate identifier the TA shall use in case of secured IUT
         */
         */
        function f_cfUp(
        function f_cfUp(
                        in charstring p_certificateId := PX_CERT_FOR_TA
                        in charstring p_certificateId := PX_CERT_FOR_TS
        ) runs on ItsCam system ItsCamSystem {
        ) runs on ItsCam system ItsCamSystem {
            
            
            map(self:utPort, system:utPort);
            map(self:utPort, system:utPort);
+3 −3
Original line number Original line Diff line number Diff line
@@ -17,10 +17,10 @@ module LibItsCam_Pixits {
    /**
    /**
     * @desc The certificate identifier the TA shall use in case of secured IUT
     * @desc The certificate identifier the TA shall use in case of secured IUT
     */
     */
    modulepar charstring PX_CERT_FOR_TA := "CERT_TS_A_AT";
    modulepar charstring PX_CERT_FOR_TS := "CERT_TS_A_AT";
    
    
    modulepar  Oct8 PX_CERT_IUT_CAM_02 := 'C19561F65F12C99E'O;
    modulepar charstring PX_CERT_IUT_CAM_02 := "CERT_IUT_CAM_BO_02_AT";


    modulepar  Oct8 PX_CERT_IUT_CAM_03 := 'F62F77E85F283F06'O;
    modulepar charstring PX_CERT_IUT_CAM_03 := "CERT_IUT_CAM_BO_03_AT";


} // End of module LibItsSecurity_Pixits
} // End of module LibItsSecurity_Pixits
 No newline at end of file
+2 −2
Original line number Original line Diff line number Diff line
@@ -233,7 +233,7 @@ module LibItsDenm_Functions {
         * @desc Initialise secure mode if required
         * @desc Initialise secure mode if required
         */
         */
        function f_initialiseSecuredMode(
        function f_initialiseSecuredMode(
                                         in charstring p_certificateId := PX_CERT_FOR_TA
                                         in charstring p_certificateId := PX_CERT_FOR_TS
        ) runs on ItsDenm {
        ) runs on ItsDenm {
            
            
            if (PICS_IS_IUT_SECURED == true) {
            if (PICS_IS_IUT_SECURED == true) {
@@ -381,7 +381,7 @@ module LibItsDenm_Functions {
         * @param   p_certificateId The certificate identifier the TA shall use in case of secured IUT
         * @param   p_certificateId The certificate identifier the TA shall use in case of secured IUT
         */
         */
        function f_cfUp(
        function f_cfUp(
                        in charstring p_certificateId := PX_CERT_FOR_TA
                        in charstring p_certificateId := PX_CERT_FOR_TS
        ) runs on ItsDenm system ItsDenmSystem {
        ) runs on ItsDenm system ItsDenmSystem {
            
            
            map(self:acPort, system:acPort);
            map(self:acPort, system:acPort);
+3 −3
Original line number Original line Diff line number Diff line
@@ -17,10 +17,10 @@ module LibItsDenm_Pixits {
    /**
    /**
     * @desc The certificate identifier the TA shall use in case of secured IUT
     * @desc The certificate identifier the TA shall use in case of secured IUT
     */
     */
    modulepar charstring PX_CERT_FOR_TA := "CERT_TS_A_AT";
    modulepar charstring  PX_CERT_FOR_TS := "CERT_TS_A_AT";
    
    
    modulepar  Oct8 PX_CERT_IUT_DENM_01 := 'B227D164E9A2CEA0'O;
    modulepar  charstring PX_CERT_IUT_DENM_01 := "CERT_IUT_DENM_BO_01_AT";


    modulepar  Oct8 PX_CERT_IUT_DENM_02 := '546AAE55A3239AE2'O;
    modulepar  charstring PX_CERT_IUT_DENM_02 := "CERT_IUT_DENM_BO_02_AT";


} // End of module LibItsDenm_Pixits
} // End of module LibItsDenm_Pixits
 No newline at end of file
+1 −1
Original line number Original line Diff line number Diff line
@@ -1813,7 +1813,7 @@ module LibItsGeoNetworking_Functions {
                );
                );
                return f_acTriggerSecEvent(m_acEnableSecurity(cc_taCert_A));
                return f_acTriggerSecEvent(m_acEnableSecurity(cc_taCert_A));
            }
            }
            return f_acTriggerSecEvent(m_acEnableSecurity(PX_CERT_FOR_TA));
            return f_acTriggerSecEvent(m_acEnableSecurity(PX_CERT_FOR_TS));
        }
        }
        
        
        /**
        /**
Loading