Commit d72e348f authored by berge's avatar berge
Browse files

Renamed Payload to SecPayload (bis)

parent ccdea448
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -687,7 +687,7 @@ module LibItsSecurity_Templates {
            /**
             * @desc Generic received template for unsecured payload
             */
            template (present) Payload mw_unsecuredPayload_dummy := {
            template (present) SecPayload mw_unsecuredPayload_dummy := {
                type_   := e_unsecured, 
                data    := ?
            } // End of template mw_unsecuredPayload_dummy
@@ -695,7 +695,7 @@ module LibItsSecurity_Templates {
            /**
             * @desc Generic received template for SecuredMessage
             */
            template (present) Payload mw_signedPayload_dummy := {
            template (present) SecPayload mw_signedPayload_dummy := {
                type_   := e_signed, 
                data    := ?
            } // End of template mw_signedPayload_dummy
@@ -749,7 +749,7 @@ module LibItsSecurity_Templates {
             */
            template (present) SecuredMessage mw_securedMessage(
                template (present) HeaderFields    p_header := ?,
                template           Payloads        p_payloads := *, 
                template           SecPayloads        p_payloads := *, 
                template (present) TrailerFields   p_trailer := ? 
            ) := {
                protocol_version    := c_protocol_version, 
@@ -777,13 +777,13 @@ module LibItsSecurity_Templates {
             * @desc Send template for 'signed_external' Payload 
             * @see Draft ETSI TS 103 097 V1.1.6 Clause 5.2 Payload
             */
            template (value) Payload m_payload_signed_external := {
            template (value) SecPayload m_payload_signed_external := {
                type_   := e_signed_external,
                data    := omit
            } // End of template m_payload_signed_external
            
            template (value) Payload m_data_payload(
                                                    in template (value) PayloadType p_type,
            template (value) SecPayload m_data_payload(
                                                    in template (value) SecPayloadType p_type,
                                                    in template (value) octetstring p_data
            ) := {
                type_   := p_type,
@@ -1628,7 +1628,7 @@ module LibItsSecurity_Templates {
                 */
                template (value) SecuredMessage md_secureMessageCAMs_multiple_payloads(
                                                                     in template (value) HeaderFields p_header_fields,
                                                                     in template (value) Payloads p_payload_fields,
                                                                     in template (value) SecPayloads p_payload_fields,
                                                                     in template (value) TrailerFields p_trailer_fields
                ) modifies m_secureMessage_dummy := {
                    security_profile    := c_security_profileCAMs,
@@ -1654,7 +1654,7 @@ module LibItsSecurity_Templates {
                 */
                template (present) SecuredMessage mdw_securedMessageCAM(
                    template (present) HeaderFields    p_header := ?,
                    template (present) Payloads        p_payloads := ?, 
                    template (present) SecPayloads        p_payloads := ?, 
                    template (present) TrailerFields   p_trailer := ? 
                )
                modifies mw_securedMessage := {