Commit 4a913aec authored by Denis Filatov's avatar Denis Filatov
Browse files

fix case issue in ASN.1 files in asncodec Makefile

parent f682a912
Loading
Loading
Loading
Loading

certgen/CERT_IUT_C1_AT.xml

deleted100644 → 0
+0 −36
Original line number Original line Diff line number Diff line
<certificate>
	<version>3</version>
	<signer type="digest" name="CERT_IUT_CC_AA"/>
	<subject type="AT" name="">
		<!-- verification_key -->
		<attribute type="verification_key">
			<public_key algorithm="0">
				<ecc_point type="compressed"/>
			</public_key>
		</attribute>
		<!-- encryption_key -->
		<attribute type="encryption_key">
			<public_key sym_alg="0" algorithm="0">
				><ecc_point type="compressed"/>
			</public_key>
		</attribute>
		<!-- assurance_level -->
		<attribute type="assurance_level">
			<assurance level="3"/>
		</attribute>
		<!-- its_aid_ssp_list -->
		<attribute type="its_aid_ssp_list">
			<ssp aid="CAM">01 FF FC</ssp>  <!-- CAM -->
			<ssp aid="DENM">01 FF FF FF</ssp>  <!-- DENM -->
			<ssp aid="GN-MGMT"></ssp> <!--ssp aid="GN-MGMT">00</ssp-->  <!-- GN-MGMT -->
		</attribute>
	</subject>
	<validity>
		<restriction type="time" start="+0d" end="+365d"/>
			<rectangle>
				<location latitude="+10km" longitude="-10km"/>
				<location latitude="+5km" longitude="-5km" />
			</rectangle>
	</validity>
	<signature algorithm="0"/>
</certificate>
+4 −4
Original line number Original line Diff line number Diff line
@@ -23,7 +23,7 @@ ASN1CDIR ?= ../../../../asn1c-fillabs2


ifeq (,$(ASN1C))
ifeq (,$(ASN1C))
 ifneq (,$(ASN1CDIR))
 ifneq (,$(ASN1CDIR))
  ASN1C := $(ASN1CDIR)/asn1c/.libs/asn1c -S $(ASN1CDIR)/skeletons
  ASN1C := $(ASN1CDIR)/asn1c/asn1c -S $(ASN1CDIR)/skeletons
 else
 else
  ASN1C := asn1c
  ASN1C := asn1c
 endif
 endif
@@ -32,7 +32,7 @@ endif
ASN1C_ARGS := -no-gen-BER -no-gen-JER -no-gen-UPER -no-gen-APER -no-gen-random-fill -no-gen-example
ASN1C_ARGS := -no-gen-BER -no-gen-JER -no-gen-UPER -no-gen-APER -no-gen-random-fill -no-gen-example


ASN1_SRC := \
ASN1_SRC := \
	$(TS102941_DIR)/EtsiTs102941MessagesCA.asn \
	$(TS102941_DIR)/EtsiTs102941MessagesCa.asn \
	$(TS102941_DIR)/EtsiTs102941TrustLists.asn \
	$(TS102941_DIR)/EtsiTs102941TrustLists.asn \
	$(TS102941_DIR)/EtsiTs102941TypesAuthorization.asn \
	$(TS102941_DIR)/EtsiTs102941TypesAuthorization.asn \
	$(TS102941_DIR)/EtsiTs102941TypesAuthorizationValidation.asn \
	$(TS102941_DIR)/EtsiTs102941TypesAuthorizationValidation.asn \
@@ -42,8 +42,8 @@ ASN1_SRC := \
	$(TS102941_DIR)/EtsiTs102941TypesLinkCertificate.asn \
	$(TS102941_DIR)/EtsiTs102941TypesLinkCertificate.asn \
    $(TS103097_DIR)/EtsiTs103097Module.asn \
    $(TS103097_DIR)/EtsiTs103097Module.asn \
    $(TS103097_DIR)/EtsiTs103097ExtensionModule.asn \
    $(TS103097_DIR)/EtsiTs103097ExtensionModule.asn \
    $(IEEE1609_2_DIR)/IEEE1609dot2.asn \
    $(IEEE1609_2_DIR)/Ieee1609Dot2.asn \
    $(IEEE1609_2_DIR)/IEEE1609dot2BaseTypes.asn \
    $(IEEE1609_2_DIR)/Ieee1609Dot2BaseTypes.asn \
    $(IEEE1609_2_DIR)/Ieee1609Dot2Crl.asn \
    $(IEEE1609_2_DIR)/Ieee1609Dot2Crl.asn \
    $(IEEE1609_2_DIR)/Ieee1609Dot2CrlBaseTypes.asn \
    $(IEEE1609_2_DIR)/Ieee1609Dot2CrlBaseTypes.asn \
    $(IEEE1609_2_1_DIR)/Ieee1609Dot2Dot1AcaEeInterface.asn \
    $(IEEE1609_2_1_DIR)/Ieee1609Dot2Dot1AcaEeInterface.asn \