Skip to main content

DER-Encoded ASN.1 Serialization and Deserialization

Project description

Posix Build Status Windows Build Status Docs License PyPI Python Versions Package Format Package Status

Bran provides transcoders for ASN.1 serialization and deserialization, and DER-encoding.

The purpose is to provide a serialization format for native Python types, such as nested dicts, whose serialization is unambiguous and stable. That is two values with the same contents serialize to the same byte string.

That makes it possible to create hashes and MACs to verify message integrity.

Note that this does not make this package a full implementation of ASN.1 specs. That is not the goal. The goal is just to have a stable byte representation of Python values; DER in particular is only picked because it helps in this.

Usage

Code

You just encode some values. In most cases, you’ll want to use the DERTranscoder class.

test = { 'some': { 'nested': 42, 'value': (0, 1, False) } }

from bran import DERTranscoder
transcoder = DERTranscoder()

encoded = transcoder.encode(test)
decoded = transcoder.decode(encoded)

assert decoded == test

In order for bran to be this simple to use, some assumptions are made. The one with the most impact is that any collections.Mapping will be encoded to the same byte representation, which means when decoded, it will become a Python dict. Similar assumptions are made for collections.Set and collections.Sequence.

For the purpose of hashing, consider the following code:

from bran.hash import hasher

test = { 'some': { 'nested': 42, 'value': (0, 1, False) } }

h = hasher()
h.update(test)
print(h.hexdigest())  # yields SHA512 hash of the DER serialized test

import hashlib
h = hasher(hashfunc = hashlib.md5)
h.update(test)
print(h.hexdigest())  # yields MD5 hash of the DER serialized test

Contributing

See CONTRIBUTING.md for details.

License

Licensed under MITNFA (MIT +no-false-attribs) License. See the LICENSE.txt file for details.

Project details


Download files

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

Source Distribution

bran-0.4.0.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

bran-0.4.0-py2.py3-none-any.whl (7.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file bran-0.4.0.tar.gz.

File metadata

  • Download URL: bran-0.4.0.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for bran-0.4.0.tar.gz
Algorithm Hash digest
SHA256 17086b1339ae7e58771b7fd2407f053e97299a7c0357992cc383b5c7748e2dc3
MD5 870b53efdf760a8fc47b760a6e6e8fb3
BLAKE2b-256 8ea91c9801925c1516b089463381a7db9bada5b021aec0da49366532b730efbd

See more details on using hashes here.

File details

Details for the file bran-0.4.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for bran-0.4.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 24420bfc0282451f9916cb3dce2880cad7a1643f0646b015499e429e59dc2c3f
MD5 52722a2b2ea45f60deb05d92e0a3aee7
BLAKE2b-256 d0733739af5af55f9e27b612aa8eb678421c1bb19d2daa1984c6330a6717f1f8

See more details on using hashes here.

Supported by

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