|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# |
| 3 | +# This file is part of Python-ASN1. Python-ASN1 is free software that is |
| 4 | +# made available under the MIT license. Consult the file "LICENSE" that |
| 5 | +# is distributed together with this file for the exact licensing terms. |
| 6 | +# |
| 7 | +# Python-ASN1 is copyright (c) 2007-2016 by the Python-ASN1 authors. See |
| 8 | +# the file "AUTHORS" for a complete overview. |
| 9 | + |
| 10 | +from __future__ import absolute_import, division, print_function, unicode_literals |
| 11 | + |
| 12 | +from builtins import open |
| 13 | +import asn1 |
| 14 | +import pprint |
| 15 | + |
| 16 | + |
| 17 | +def example1(): |
| 18 | + """Decoding from a file.""" |
| 19 | + print("Example 1") |
| 20 | + with open("example3.der", "rb") as f: |
| 21 | + with asn1.Decoder(stream=f) as decoder: |
| 22 | + tag, value = decoder.read() |
| 23 | + print(tag) |
| 24 | + print(value) |
| 25 | + print() |
| 26 | + |
| 27 | + |
| 28 | +def example2(): |
| 29 | + """Decoding of a bit string with unused bits.""" |
| 30 | + print("Example 2") |
| 31 | + encoded = b"\x23\x0c\x03\x02\x00\x0b\x03\x02\x00\x0b\x03\x02\x04\x0f" |
| 32 | + with asn1.Decoder(stream=encoded) as decoder: |
| 33 | + tag, (val, unused) = decoder.read(asn1.ReadFlags.WithUnused) |
| 34 | + print("Tag:", tag) |
| 35 | + print("Value:", val) |
| 36 | + print("Unused bits:", unused) |
| 37 | + print() |
| 38 | + |
| 39 | + |
| 40 | +def example3(): |
| 41 | + """Decoding of sequences.""" |
| 42 | + print("Example 3") |
| 43 | + encoded = b"\x30\x80\x13\x05\x74\x65\x73\x74\x31\x13\x05\x74\x65\x73\x74\x32\x30\x80\x02\x01\x01\x09\x03\x80\xfd\x01\x04\x03\x01\x02\x03\x00\x00\x00\x00" |
| 44 | + with asn1.Decoder(stream=encoded) as decoder: |
| 45 | + tag, value = decoder.read() |
| 46 | + print(tag) |
| 47 | + pprint.pprint(value) |
| 48 | + print() |
| 49 | + |
| 50 | + |
| 51 | +def example4(): |
| 52 | + """Decoding of a complex data.""" |
| 53 | + print("Example 4") |
| 54 | + encoded = ( |
| 55 | + b"\x30\x82\x04\x0e\x30\x82\x03\x77\xa0\x03\x02\x01\x02\x02\x02\x15" |
| 56 | + b"\x30\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00" |
| 57 | + b"\x30\x81\xbb\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x2d\x2d" |
| 58 | + b"\x31\x12\x30\x10\x06\x03\x55\x04\x08\x13\x09\x53\x6f\x6d\x65\x53" |
| 59 | + b"\x74\x61\x74\x65\x31\x11\x30\x0f\x06\x03\x55\x04\x07\x13\x08\x53" |
| 60 | + b"\x6f\x6d\x65\x43\x69\x74\x79\x31\x19\x30\x17\x06\x03\x55\x04\x0a" |
| 61 | + b"\x13\x10\x53\x6f\x6d\x65\x4f\x72\x67\x61\x6e\x69\x7a\x61\x74\x69" |
| 62 | + b"\x6f\x6e\x31\x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x53\x6f\x6d" |
| 63 | + b"\x65\x4f\x72\x67\x61\x6e\x69\x7a\x61\x74\x69\x6f\x6e\x61\x6c\x55" |
| 64 | + b"\x6e\x69\x74\x31\x1e\x30\x1c\x06\x03\x55\x04\x03\x13\x15\x6c\x6f" |
| 65 | + b"\x63\x61\x6c\x68\x6f\x73\x74\x2e\x6c\x6f\x63\x61\x6c\x64\x6f\x6d" |
| 66 | + b"\x61\x69\x6e\x31\x29\x30\x27\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01" |
| 67 | + b"\x09\x01\x16\x1a\x72\x6f\x6f\x74\x40\x6c\x6f\x63\x61\x6c\x68\x6f" |
| 68 | + b"\x73\x74\x2e\x6c\x6f\x63\x61\x6c\x64\x6f\x6d\x61\x69\x6e\x30\x1e" |
| 69 | + b"\x17\x0d\x30\x38\x30\x32\x30\x35\x30\x39\x32\x33\x33\x31\x5a\x17" |
| 70 | + b"\x0d\x30\x39\x30\x32\x30\x34\x30\x39\x32\x33\x33\x31\x5a\x30\x81" |
| 71 | + b"\xbb\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x2d\x2d\x31\x12" |
| 72 | + b"\x30\x10\x06\x03\x55\x04\x08\x13\x09\x53\x6f\x6d\x65\x53\x74\x61" |
| 73 | + b"\x74\x65\x31\x11\x30\x0f\x06\x03\x55\x04\x07\x13\x08\x53\x6f\x6d" |
| 74 | + b"\x65\x43\x69\x74\x79\x31\x19\x30\x17\x06\x03\x55\x04\x0a\x13\x10" |
| 75 | + b"\x53\x6f\x6d\x65\x4f\x72\x67\x61\x6e\x69\x7a\x61\x74\x69\x6f\x6e" |
| 76 | + b"\x31\x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x53\x6f\x6d\x65\x4f" |
| 77 | + b"\x72\x67\x61\x6e\x69\x7a\x61\x74\x69\x6f\x6e\x61\x6c\x55\x6e\x69" |
| 78 | + b"\x74\x31\x1e\x30\x1c\x06\x03\x55\x04\x03\x13\x15\x6c\x6f\x63\x61" |
| 79 | + b"\x6c\x68\x6f\x73\x74\x2e\x6c\x6f\x63\x61\x6c\x64\x6f\x6d\x61\x69" |
| 80 | + b"\x6e\x31\x29\x30\x27\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09\x01" |
| 81 | + b"\x16\x1a\x72\x6f\x6f\x74\x40\x6c\x6f\x63\x61\x6c\x68\x6f\x73\x74" |
| 82 | + b"\x2e\x6c\x6f\x63\x61\x6c\x64\x6f\x6d\x61\x69\x6e\x30\x81\x9f\x30" |
| 83 | + b"\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00\x03\x81" |
| 84 | + b"\x8d\x00\x30\x81\x89\x02\x81\x81\x00\xd5\x18\xcd\x40\x91\x90\x27" |
| 85 | + b"\x5a\x77\x37\x22\xca\xba\x05\xdf\x13\x31\xe8\x74\x43\x4f\x7e\x08" |
| 86 | + b"\xa3\xa5\x76\xcd\x7b\xdd\x37\xd0\x7f\x12\x9e\x81\x73\x87\x55\x66" |
| 87 | + b"\x0d\xda\x68\xee\x38\xeb\x34\xe2\xf4\xeb\x95\xd5\xe0\xde\xef\x08" |
| 88 | + b"\x57\xf9\x03\x14\x69\xa8\x6f\x7c\xa4\xfa\x64\x51\x39\x36\xd5\x09" |
| 89 | + b"\x37\x61\x83\x13\x8c\x41\x25\xba\x60\x91\x20\x86\x5b\x60\xb5\xe2" |
| 90 | + b"\x83\x65\x66\xad\x06\xb3\x45\x71\x83\x67\xd2\xe5\x5f\x40\x42\x4b" |
| 91 | + b"\x37\xf8\x87\xd0\x09\x49\xb8\xad\x34\x76\xa3\x1b\xbf\xc1\x0f\xb7" |
| 92 | + b"\xfb\x43\xbe\x62\x33\x02\x02\x10\x61\x02\x03\x01\x00\x01\xa3\x82" |
| 93 | + b"\x01\x1d\x30\x82\x01\x19\x30\x1d\x06\x03\x55\x1d\x0e\x04\x16\x04" |
| 94 | + b"\x14\x0a\x4b\xfa\x87\x54\x17\x7e\x30\xb4\x21\x71\x56\x51\x0f\xd2" |
| 95 | + b"\x91\xc3\x30\x02\x36\x30\x81\xe9\x06\x03\x55\x1d\x23\x04\x81\xe1" |
| 96 | + b"\x30\x81\xde\x80\x14\x0a\x4b\xfa\x87\x54\x17\x7e\x30\xb4\x21\x71" |
| 97 | + b"\x56\x51\x0f\xd2\x91\xc3\x30\x02\x36\xa1\x81\xc1\xa4\x81\xbe\x30" |
| 98 | + b"\x81\xbb\x31\x0b\x30\x09\x06\x03\x55\x04\x06\x13\x02\x2d\x2d\x31" |
| 99 | + b"\x12\x30\x10\x06\x03\x55\x04\x08\x13\x09\x53\x6f\x6d\x65\x53\x74" |
| 100 | + b"\x61\x74\x65\x31\x11\x30\x0f\x06\x03\x55\x04\x07\x13\x08\x53\x6f" |
| 101 | + b"\x6d\x65\x43\x69\x74\x79\x31\x19\x30\x17\x06\x03\x55\x04\x0a\x13" |
| 102 | + b"\x10\x53\x6f\x6d\x65\x4f\x72\x67\x61\x6e\x69\x7a\x61\x74\x69\x6f" |
| 103 | + b"\x6e\x31\x1f\x30\x1d\x06\x03\x55\x04\x0b\x13\x16\x53\x6f\x6d\x65" |
| 104 | + b"\x4f\x72\x67\x61\x6e\x69\x7a\x61\x74\x69\x6f\x6e\x61\x6c\x55\x6e" |
| 105 | + b"\x69\x74\x31\x1e\x30\x1c\x06\x03\x55\x04\x03\x13\x15\x6c\x6f\x63" |
| 106 | + b"\x61\x6c\x68\x6f\x73\x74\x2e\x6c\x6f\x63\x61\x6c\x64\x6f\x6d\x61" |
| 107 | + b"\x69\x6e\x31\x29\x30\x27\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x09" |
| 108 | + b"\x01\x16\x1a\x72\x6f\x6f\x74\x40\x6c\x6f\x63\x61\x6c\x68\x6f\x73" |
| 109 | + b"\x74\x2e\x6c\x6f\x63\x61\x6c\x64\x6f\x6d\x61\x69\x6e\x82\x02\x15" |
| 110 | + b"\x30\x30\x0c\x06\x03\x55\x1d\x13\x04\x05\x30\x03\x01\x01\xff\x30" |
| 111 | + b"\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x05\x05\x00\x03\x81" |
| 112 | + b"\x81\x00\x4e\x12\x46\x58\xa3\x57\xc5\x9a\xab\xfa\x32\xf5\xde\x87" |
| 113 | + b"\xfb\x77\xa8\x79\x38\x1d\x4f\xd3\x7c\x3a\x16\x60\x82\x7d\x92\xa1" |
| 114 | + b"\x58\xd2\x53\x7b\x11\x90\xec\x6d\xb0\xb0\x58\xee\x33\xb4\x7b\x1d" |
| 115 | + b"\xb8\x95\xd8\x98\xc3\x10\x81\x83\x08\x46\xe8\x9a\xb9\x6c\xbf\x8f" |
| 116 | + b"\x9e\x73\xf7\x61\x89\xc4\x6a\x1b\xc1\x98\xc6\xab\xfc\x91\xb6\x59" |
| 117 | + b"\xb8\xa5\x05\x91\x2a\xbb\xc4\x30\x16\x53\xbf\x1a\xfe\x2f\x01\x25" |
| 118 | + b"\xae\xef\xc7\xb9\xfa\xa5\x53\xf8\xd9\xf5\x8f\xae\x91\xea\x57\x28" |
| 119 | + b"\xfa\xdf\x34\x03\x29\xe8\x97\xee\x2e\x9e\x8a\x62\x45\xc7\xfc\x58" |
| 120 | + b"\xb4\x5a" |
| 121 | + ) |
| 122 | + |
| 123 | + with asn1.Decoder(stream=encoded) as decoder: |
| 124 | + tag, value = decoder.read() |
| 125 | + print(tag) |
| 126 | + pprint.pprint(value) |
| 127 | + print() |
| 128 | + |
| 129 | + |
| 130 | +example1() |
| 131 | +example2() |
| 132 | +example3() |
| 133 | +example4() |
0 commit comments