Skip to content Skip to sidebar Skip to footer

How Decode Asn1 Hex Value Using Asn1tools

I'm trying to decode the following ASN1 message using Python b'\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x02\x89G\x11\x00\x1a\x01\x00\x10\x00\x80\x00\x00\x01\x00\x80\x00\x00\x00

Solution 1:

A quick look at the documentation indicates that compile_files is for compiling the ASN specification (looks like it takes a file name). You appear to be trying to use it on the encoded data.

Solution 2:

if var b'\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x02\x89G\x11\x00\x1a\x01\x00\x10\x00\x80\x00\x00\x01\x00\x80\x00\x00\x00\x00\x00\x00\x02\x98c\xc7h\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'

decoded_var=var.hex()

Post a Comment for "How Decode Asn1 Hex Value Using Asn1tools"