Commit 3737f620 authored by filatov's avatar filatov
Browse files

TrailerField template

parent 6af51016
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -1615,6 +1615,18 @@ module LibItsSecurity_Templates {
                }
            } // End of template mw_trailer_field_dummy
            
            /**
             * @desc Receive template containing signature information used by the security layer after processing the payload
             * @param p_type   The trailer field type
             * @param p_body   The trailer field container
             */
            template (present) TrailerField mw_trailer_field (
			                                                 in template (present) TrailerFieldType p_type := ?,
                                                             in template (present) TrailerFieldContainer p_body := ?
            ) := {
                type_           := p_type,
                trailerField    := p_body
            } // End of template mw_trailer_field
        } // End of group trailerFields
        
        /**
+2 −1
Original line number Diff line number Diff line
@@ -36,6 +36,7 @@ module LibItsSecurity_TestSystem {
            
            // Test Adapter certificates & private keys - Valid behavior
			const charstring cc_taCert_A  := "CERT_TS_A_AT";   /** Default certificate, without region validity restriction, to be used when secured messages are sent from TA to IUT */
            const charstring cc_taCert_A1 := "CERT_TS_A_1_AT"; /** Default certificate, without region validity restriction, to be used when secured messages are sent from TA to IUT */
            const charstring cc_taCert_B  := "CERT_TS_B_AT"; /** Default certificate, with circular region, to be used when secured messages are sent from TA to IUT */
            const charstring cc_taCert_C  := "CERT_TS_C_AT"; /** Certificate with a rectangular region, to be used when secured messages are sent from TA to IUT */
            const charstring cc_taCert_D  := "CERT_TS_D_AT"; /** Certificate with a polygonal region, to be used when secured messages are sent from TA to IUT */