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

TrailerField template

parent 6af51016
......@@ -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
/**
......
......@@ -35,7 +35,8 @@ module LibItsSecurity_TestSystem {
var ThreeDLocation vc_location;
// 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_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 */
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment