I tried to compile ASN.1 spec in asn1/ansi_map /ansi_map.asn in OSS ASN.1 studio but failed. The error indicates there're duplicated tags in several messages, for example:
It seems the tags here are used as unique type identifiers, but in my understanding, tag in a complex type (sequence,choice) should be used to mark the order of members. Can anyone suggest on how to make it fully compliant with ASN.1 standard syntax? asked 08 Feb '14, 07:15 TB_BT |
One Answer:
The ansi_map.asn is hand crafted to make the Wireshark dissector. I'm not sure how useful it would be for any other purpose. The tags are listed in the order of apperance in the refered standard document. answered 09 Feb '14, 09:47 Anders ♦ |
The implied info in your reply is enough for me, thanks.