Commit 0b876bb9 authored by garciay's avatar garciay
Browse files

Increase SSP size from Bit128 to Bit256

parent d8456bbc
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -77,7 +77,7 @@ module LibItsCam_Templates {
         */
         */
        template CamInd mw_camIndWithSecurityParameters(
        template CamInd mw_camIndWithSecurityParameters(
                                                          template (present) CAM p_camMsg,
                                                          template (present) CAM p_camMsg,
                                                          template Bit128 p_ssp := *,
                                                          template Bit256 p_ssp := *,
                                                          template UInt32 p_its_aid := c_its_aid_CAM
                                                          template UInt32 p_its_aid := c_its_aid_CAM
        ) modifies mw_camInd := { 
        ) modifies mw_camInd := { 
            ssp             := p_ssp,
            ssp             := p_ssp,
+1 −1
Original line number Original line Diff line number Diff line
@@ -129,7 +129,7 @@ module LibItsCam_TestSystem {
                UInt8       gnTrafficClass optional,
                UInt8       gnTrafficClass optional,
                UInt16      btpDestinationPort optional,
                UInt16      btpDestinationPort optional,
                UInt16      btpInfo optional,
                UInt16      btpInfo optional,
                Bit128      ssp optional,
                Bit256      ssp optional,
                UInt32      its_aid optional
                UInt32      its_aid optional
            }
            }
            with {
            with {
+4 −2
Original line number Original line Diff line number Diff line
@@ -20,10 +20,12 @@ module LibItsCommon_Templates {
         * @desc Enable security support
         * @desc Enable security support
         */
         */
        template (value) AcSecPrimitive m_acEnableSecurity(
        template (value) AcSecPrimitive m_acEnableSecurity(
                                                           in charstring p_certificateId 
                                                           in charstring p_certificateId, 
                                                           in boolean p_enforceSecurity := false
        ) := {
        ) := {
            acEnableSecurity := {
            acEnableSecurity := {
                certificateId := p_certificateId
                certificateId   := p_certificateId,
                enforceSecurity := p_enforceSecurity
            }
            }
        } // End of template m_acEnableSecurity
        } // End of template m_acEnableSecurity
        
        
+2 −1
Original line number Original line Diff line number Diff line
@@ -100,7 +100,8 @@ module LibItsCommon_TypesAndValues {
         * @member  certificateId The certificate identifier to be used
         * @member  certificateId The certificate identifier to be used
         */
         */
        type record AcEnableSecurity {
        type record AcEnableSecurity {
            charstring certificateId
            charstring certificateId,
            boolean    enforceSecurity
        } // End of type AcEnableSecurity
        } // End of type AcEnableSecurity
        
        
        /**
        /**
+1 −1
Original line number Original line Diff line number Diff line
@@ -102,7 +102,7 @@ module LibItsDenm_Templates {
         */
         */
        template DenmInd mw_denmIndWithSecurityParameters(
        template DenmInd mw_denmIndWithSecurityParameters(
                                                          template (present) DENM p_denMsg,
                                                          template (present) DENM p_denMsg,
                                                          template Bit128 p_ssp := *,
                                                          template Bit256 p_ssp := *,
                                                          template UInt32 p_its_aid := c_its_aid_DENM
                                                          template UInt32 p_its_aid := c_its_aid_DENM
        ) modifies mw_denmInd := { 
        ) modifies mw_denmInd := { 
            ssp             := p_ssp,
            ssp             := p_ssp,
Loading