Python-ASN1 is a simple ASN.1 encoder and decoder for Python 2.7 and 3.5+.
- Support BER (parser) and DER (parser and generator) encoding (including indefinite lengths)
- 100% python, compatible with version 2.7, 3.5 and higher
- Can be integrated by just including a file into your project
- Support most common ASN.1 types including REAL (encoding and decoding).
Python-ASN1 relies on Python-Future for Python 2 and 3 compatibility. To install Python-Future:
pip install futurePython-ASN1 relies on type hints. For Python 2.7, a backport of the standard library typing module has to be installed:
pip install typingThis is not necessary for Python 3.5 and higher since it is part of the standard library.
Install from PyPi with the following:
pip install asn1or download the repository from GitHub and install with the following:
python setup.py installYou can also simply include asn1.py into your project.
Note
You can find more detailed documentation on the Usage page.
If you want to encode data and retrieve its DER-encoded representation, use code such as:
import asn1
encoder = asn1.Encoder()
encoder.start()
encoder.write('1.2.3', asn1.Numbers.ObjectIdentifier)
encoded_bytes = encoder.output()If you want to decode ASN.1 from DER or BER encoded bytes, use code such as:
import asn1
decoder = asn1.Decoder()
decoder.start(encoded_bytes)
tag, value = decoder.read()The complete documentation is available on Read The Docs:
Contributions to Python-ASN1 are welcome. If you want to contribute, please fork the repository on GitHub, make your changes and submit a pull request (PR). Please make sure that your code is properly tested and that all tests pass. In particular, tests should pass for old versions of Python (2.7 and from 3.5 to 3.14). You can use the provided Docker file to test your code on all those versions of Python.
Python-ASN1 is free software that is made available under the MIT license. Consult the file LICENSE that is distributed together with this library for the exact licensing terms.
The following people have contributed to Python-ASN1. Collectively they own the copyright of this software.
- Geert Jansen (geert@boskant.nl): original implementation.
- Sebastien Andrivet (sebastien@andrivet.com)
- Filippo Santovito (filippo.santovito@gmail.com)