Skip to main content

ASN.1 tools.

Project description

buildstatus coverage

About

A Python package for ASN.1 parsing, encoding and decoding.

This project is under development and does only support a subset of the ASN.1 specification syntax. BER, DER, PER and UPER codecs are also under development.

Project homepage: https://github.com/eerimoq/asn1tools

Documentation: http://asn1tools.readthedocs.org/en/latest

Installation

pip install asn1tools

Example Usage

This is an example ASN.1 specification defining the messages of a fictitious Foo protocol (based on the FooProtocol on Wikipedia).

Foo DEFINITIONS ::= BEGIN

    Question ::= SEQUENCE {
        id        INTEGER,
        question  IA5String
    }

    Answer ::= SEQUENCE {
        id        INTEGER,
        answer    BOOLEAN
    }

END

Compile the ASN.1 specification, and encode and decode a question using the default codec (BER).

>>> import asn1tools
>>> foo = asn1tools.compile_file('tests/files/foo.asn')
>>> encoded = foo.encode('Question', {'id': 1, 'question': 'Is 1+1=3?'})
>>> encoded
bytearray(b'0\x0e\x02\x01\x01\x16\x09Is 1+1=3?')
>>> foo.decode('Question', encoded)
{'id': 1, 'question': 'Is 1+1=3?'}

The same ASN.1 specification, but using the PER codec.

>>> import asn1tools
>>> foo = asn1tools.compile_file('tests/files/foo.asn', 'per')
>>> encoded = foo.encode('Question', {'id': 1, 'question': 'Is 1+1=3?'})
>>> encoded
bytearray(b'\x01\x01\tIs 1+1=3?')
>>> foo.decode('Question', encoded)
{'id': 1, 'question': 'Is 1+1=3?'}

See the examples folder for additional examples

Contributing

  1. Fork the repository.

  2. Implement the new feature or bug fix.

  3. Implement test case(s) to ensure that future changes do not break legacy.

  4. Run the tests.

    make test
  5. Create a pull request.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asn1tools-0.10.0.tar.gz (117.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

asn1tools-0.10.0-py2.py3-none-any.whl (28.8 kB view details)

Uploaded Python 2Python 3

File details

Details for the file asn1tools-0.10.0.tar.gz.

File metadata

  • Download URL: asn1tools-0.10.0.tar.gz
  • Upload date:
  • Size: 117.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for asn1tools-0.10.0.tar.gz
Algorithm Hash digest
SHA256 0ea51e979226dc9699222faa83ed9b4d93544155a50c66a4fdeba22654910a3a
MD5 5780b4a36288d7f2fb84d54949f5d13f
BLAKE2b-256 b54e02e87c0c7504ecda5df2ad4055763115b56c1aa5667f994b18de3263a3db

See more details on using hashes here.

File details

Details for the file asn1tools-0.10.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for asn1tools-0.10.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d67ee46864f6bcfc8e0a509e025f1e8dffd5c9ccd4fab6bf98edc321c194b3b6
MD5 dea3a5542985097f572632af69a13a70
BLAKE2b-256 f23bc7cd5b0e2f6210025e03f56b2d4e44fc51d172bcf18fff7b386c87c26d4c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page