Commit 89d317a4 authored by garciay's avatar garciay
Browse files

Validate signing process with latest version of Crypto libraries

parent 41e25ab6
Loading
Loading
Loading
Loading
+16 −4
Original line number Original line Diff line number Diff line
@@ -50,6 +50,18 @@ module LibItsSecurity_Templates {
         */
         */
        const UInt8 c_certificate_version := 2;
        const UInt8 c_certificate_version := 2;
        
        
        /**
         * @desc CAM message type
         * @see Draft ETSI TS 103 097 V1.1.6 Clause 7.1 Security profile for CAMs
         */
        const UInt16 c_messageType_CAM := 2;
        
        /**
         * @desc DENM message type
         * @see Draft ETSI TS 103 097 V1.1.6 Clause 7.2 Security profile for DENMs
         */
        const UInt16 c_messageType_DENM := 1;
        
    } // End of group constants
    } // End of group constants
    
    
    /**
    /**
@@ -1725,7 +1737,7 @@ module LibItsSecurity_Templates {
                
                
                template (value) ToBeSignedData m_toBeSignedData_cam(
                template (value) ToBeSignedData m_toBeSignedData_cam(
                    in template (value) HeaderFields p_header_fields,
                    in template (value) HeaderFields p_header_fields,
                    in template (value) SecPayloads p_payload_fields,
                    in template (omit) SecPayloads p_payload_fields,
                    in template (value) TrailerFieldType p_trailer_field_type
                    in template (value) TrailerFieldType p_trailer_field_type
                ) := {
                ) := {
                    protocol_version := c_protocol_version,
                    protocol_version := c_protocol_version,
@@ -1793,7 +1805,7 @@ module LibItsSecurity_Templates {
                
                
                template (value) ToBeSignedData m_toBeSignedData_denm(
                template (value) ToBeSignedData m_toBeSignedData_denm(
                    in template (value) HeaderFields p_header_fields,
                    in template (value) HeaderFields p_header_fields,
                    in template (value) SecPayloads p_payload_fields,
                    in template (omit) SecPayloads p_payload_fields,
                    in template (value) TrailerFieldType p_trailer_field_type
                    in template (value) TrailerFieldType p_trailer_field_type
                ) := {
                ) := {
                    protocol_version := c_protocol_version,
                    protocol_version := c_protocol_version,
@@ -1837,7 +1849,7 @@ module LibItsSecurity_Templates {
                
                
                template (value) ToBeSignedData m_toBeSignedData_profileOther(
                template (value) ToBeSignedData m_toBeSignedData_profileOther(
                    in template (value) HeaderFields p_header_fields,
                    in template (value) HeaderFields p_header_fields,
                    in template (value) SecPayloads p_payload_fields,
                    in template (omit) SecPayloads p_payload_fields,
                    in template (value) TrailerFieldType p_trailer_field_type
                    in template (value) TrailerFieldType p_trailer_field_type
                ) := {
                ) := {
                    protocol_version := c_protocol_version,
                    protocol_version := c_protocol_version,
@@ -1849,7 +1861,7 @@ module LibItsSecurity_Templates {
                
                
                template (value) SecuredMessage m_securedMessage_profileOther(
                template (value) SecuredMessage m_securedMessage_profileOther(
                    in template (value) HeaderFields p_header_fields,
                    in template (value) HeaderFields p_header_fields,
                    in template (value) SecPayloads p_payload_fields,
                    in template (omit) SecPayloads p_payload_fields,
                    in template (value) TrailerFields p_trailer_fields
                    in template (value) TrailerFields p_trailer_fields
                ) := {
                ) := {
                    protocol_version    := c_protocol_version,
                    protocol_version    := c_protocol_version,