/** * @author ETSI / STF481 * @version $URL$ * $Id$ * @desc Test System module for Security Protocol * */ module LibItsSecurity_TestSystem { // LibCommon import from LibCommon_DataStrings all; // LibItsSecurity import from LibItsSecurity_TypesAndValues all; group componentDefinitions { /** * @desc ITS Security Component */ type component ItsSecurityBaseComponent { // Certificates var Certificate vc_aaCertificate; var Certificate vc_atCertificate; // Private keys var Oct32 vc_signingPrivateKey; var Oct32 vc_encryptPrivateKey; // Generation position. See Draft ETSI TS 103 097 V1.1.9 Clause 7.2 Security profiles for DENMs var ThreeDLocation vc_location; // Test Adapter certificates & private keys const charstring cc_taCertA := "TA_CERT_A"; const charstring cc_taCertB := "TA_CERT_B"; } // End of ItsSecurityBaseComponent } // End of group componentDefinitions } // End of module LibItsSecurity_TestSystem