Commits (1)
...@@ -136,12 +136,12 @@ module LibItsCam_Functions { ...@@ -136,12 +136,12 @@ 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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsCam { ) runs on ItsCam {
if (PICS_IS_IUT_SECURED == true) { if (PICS_IS_IUT_SECURED == true) {
if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificateId))) { if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificate_id))) {
log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***"); log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***");
stop; stop;
} }
...@@ -293,10 +293,10 @@ module LibItsCam_Functions { ...@@ -293,10 +293,10 @@ module LibItsCam_Functions {
/** /**
* @desc Setups default configuration * @desc Setups default configuration
* @param p_certificateId The certificate identifier the TA shall use in case of secured IUT * @param p_certificate_id 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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsCam /* TITAN TODO: system ItsCamSystem */ { ) runs on ItsCam /* TITAN TODO: system ItsCamSystem */ {
map(self:utPort, system:utPort); map(self:utPort, system:utPort);
...@@ -305,7 +305,7 @@ module LibItsCam_Functions { ...@@ -305,7 +305,7 @@ module LibItsCam_Functions {
f_connect4SelfOrClientSync(); f_connect4SelfOrClientSync();
// Initialise secured mode // Initialise secured mode
f_initialiseSecuredMode(p_certificateId); f_initialiseSecuredMode(p_certificate_id);
} // End of function f_cfUp } // End of function f_cfUp
......
...@@ -26,11 +26,11 @@ module LibItsCommon_Templates { ...@@ -26,11 +26,11 @@ 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_certificate_id,
in boolean p_enforceSecurity := false in boolean p_enforceSecurity := false
) := { ) := {
acEnableSecurity := { acEnableSecurity := {
certificateId := p_certificateId, certificateId := p_certificate_id,
enforceSecurity := p_enforceSecurity enforceSecurity := p_enforceSecurity
} }
} // End of template m_acEnableSecurity } // End of template m_acEnableSecurity
......
...@@ -237,12 +237,12 @@ module LibItsDenm_Functions { ...@@ -237,12 +237,12 @@ 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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsDenm { ) runs on ItsDenm {
if (PICS_IS_IUT_SECURED == true) { if (PICS_IS_IUT_SECURED == true) {
if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificateId))) { if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificate_id))) {
log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***"); log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***");
stop; stop;
} }
...@@ -382,10 +382,10 @@ module LibItsDenm_Functions { ...@@ -382,10 +382,10 @@ module LibItsDenm_Functions {
/** /**
* @desc Setups default configuration * @desc Setups default configuration
* @param p_certificateId The certificate identifier the TA shall use in case of secured IUT * @param p_certificate_id 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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsDenm /* TITAN TODO: system ItsDenmSystem */ { ) runs on ItsDenm /* TITAN TODO: system ItsDenmSystem */ {
map(self:acPort, system:acPort); map(self:acPort, system:acPort);
...@@ -394,7 +394,7 @@ module LibItsDenm_Functions { ...@@ -394,7 +394,7 @@ module LibItsDenm_Functions {
f_connect4SelfOrClientSync(); f_connect4SelfOrClientSync();
// Initialise secured mode // Initialise secured mode
f_initialiseSecuredMode(p_certificateId); f_initialiseSecuredMode(p_certificate_id);
} // End of function f_cfUp } // End of function f_cfUp
......
...@@ -14,10 +14,10 @@ module LibItsHttp_Functions { ...@@ -14,10 +14,10 @@ module LibItsHttp_Functions {
/** /**
* @desc Setups default configuration * @desc Setups default configuration
* @param p_certificateId The certificate identifier the TA shall use in case of secured IUT * @param p_certificate_id The certificate identifier the TA shall use in case of secured IUT
*/ */
function f_cfUp( function f_cfUp(
in charstring p_certificateId in charstring p_certificate_id
) runs on HttpComponent /* TITAN TODO: system HttpTestAdapter */ { ) runs on HttpComponent /* TITAN TODO: system HttpTestAdapter */ {
map(self:httpPort, system:httpPort); map(self:httpPort, system:httpPort);
......
...@@ -187,12 +187,12 @@ module LibItsIvim_Functions { ...@@ -187,12 +187,12 @@ module LibItsIvim_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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsIvim { ) runs on ItsIvim {
if (PICS_IS_IUT_SECURED == true) { if (PICS_IS_IUT_SECURED == true) {
if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificateId))) { if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificate_id))) {
log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***"); log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***");
stop; stop;
} }
...@@ -242,10 +242,10 @@ module LibItsIvim_Functions { ...@@ -242,10 +242,10 @@ module LibItsIvim_Functions {
/** /**
* @desc Setups default configuration * @desc Setups default configuration
* @param p_certificateId The certificate identifier the TA shall use in case of secured IUT * @param p_certificate_id 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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsIvim /* TITAN TODO: system ItsIvimSystem */{ ) runs on ItsIvim /* TITAN TODO: system ItsIvimSystem */{
map(self:acPort, system:acPort); map(self:acPort, system:acPort);
...@@ -254,7 +254,7 @@ module LibItsIvim_Functions { ...@@ -254,7 +254,7 @@ module LibItsIvim_Functions {
f_connect4SelfOrClientSync(); f_connect4SelfOrClientSync();
// Initialise secured mode // Initialise secured mode
f_initialiseSecuredMode(p_certificateId); f_initialiseSecuredMode(p_certificate_id);
} // End of function f_cfUp } // End of function f_cfUp
......
...@@ -97,12 +97,12 @@ module LibItsMapemSpatem_Functions { ...@@ -97,12 +97,12 @@ module LibItsMapemSpatem_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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsMapemSpatem { ) runs on ItsMapemSpatem {
if (PICS_IS_IUT_SECURED == true) { if (PICS_IS_IUT_SECURED == true) {
if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificateId))) { if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificate_id))) {
log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***"); log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***");
stop; stop;
} }
...@@ -220,10 +220,10 @@ module LibItsMapemSpatem_Functions { ...@@ -220,10 +220,10 @@ module LibItsMapemSpatem_Functions {
/** /**
* @desc Setups default configuration * @desc Setups default configuration
* @param p_certificateId The certificate identifier the TA shall use in case of secured IUT * @param p_certificate_id 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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsMapemSpatem /* TITAN TODO: system ItsMapemSpatemSystem */ { ) runs on ItsMapemSpatem /* TITAN TODO: system ItsMapemSpatemSystem */ {
map(self:acPort, system:acPort); map(self:acPort, system:acPort);
...@@ -235,7 +235,7 @@ module LibItsMapemSpatem_Functions { ...@@ -235,7 +235,7 @@ module LibItsMapemSpatem_Functions {
activate(a_cf01Down()); activate(a_cf01Down());
// Initialise secured mode // Initialise secured mode
f_initialiseSecuredMode(p_certificateId); f_initialiseSecuredMode(p_certificate_id);
} // End of f_cfUp } // End of f_cfUp
......
This diff is collapsed.
This diff is collapsed.
...@@ -129,12 +129,12 @@ module LibItsSremSsem_Functions { ...@@ -129,12 +129,12 @@ module LibItsSremSsem_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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsSremSsem { ) runs on ItsSremSsem {
if (PICS_IS_IUT_SECURED == true) { if (PICS_IS_IUT_SECURED == true) {
if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificateId))) { if(e_success != f_acTriggerSecEvent(m_acEnableSecurity(p_certificate_id))) {
log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***"); log("*** INFO: TEST CASE NOW STOPPING ITSELF! ***");
stop; stop;
} }
...@@ -252,10 +252,10 @@ module LibItsSremSsem_Functions { ...@@ -252,10 +252,10 @@ module LibItsSremSsem_Functions {
/** /**
* @desc Setups default configuration * @desc Setups default configuration
* @param p_certificateId The certificate identifier the TA shall use in case of secured IUT * @param p_certificate_id 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_TS in charstring p_certificate_id := PX_CERT_FOR_TS
) runs on ItsSremSsem /* TITAN TODO: system ItsSremSsemSystem */ { ) runs on ItsSremSsem /* TITAN TODO: system ItsSremSsemSystem */ {
map(self:acPort, system:acPort); map(self:acPort, system:acPort);
...@@ -267,7 +267,7 @@ module LibItsSremSsem_Functions { ...@@ -267,7 +267,7 @@ module LibItsSremSsem_Functions {
activate(a_cf01Down()); activate(a_cf01Down());
// Initialise secured mode // Initialise secured mode
f_initialiseSecuredMode(p_certificateId); f_initialiseSecuredMode(p_certificate_id);
//Initialze the IUT //Initialze the IUT
f_prInitialState(); f_prInitialState();
......