Skip to main content

A EMV BER-TLV encoding/decoding package

Project description

BER-TLV Package

Summary

This is a BER-TLV (described in EMV Book 3) format encoder/decoder library for Python. BER is Basic Encoding Rules. TLV stands for Tag + Length + Value. Tag is 1-4 byte long (integer) identifier. Length is 1-4 byte integer representing value (or entire branch) size. Value is binary data, which can also be a nested list of sub-items. BER-TLV is a binary data storage tree, which is widely used in electonic payment industry and in EMV in particular.

Install

pip3 install ber-tlv

Usage

Parse TLV:

from ber_tlv.tlv import *
Tlv.parse(binascii.unhexlify("9F100D8A034142438A036465661001FF"), True)
>>> [(40720,[(138,b'ABC'),(138,b'def'),(16,b'\xff')])]

Build TLV:

from ber_tlv.tlv import *
Tlv.hexify_bytes(Tlv.build({0x9F10:[(0x8A,b"ABC"),(0x8B,{0x10:b"\xf0\x0d"})]}))
>>> "9F100B8A034142438B041002F00D"
Tlv.hexify_bytes(Tlv.build([(0x9F01,[(0x8A,b'\x01'),(0x8B,b"ABC"),(0x8A,b"\x02"),(0x8B,b"DEF"),(0x10,[(0x11,b"\x01\x02")])]),(0x11,b"\xff")]))
>>> "9F01168A01018B034142438A01028B034445461004110201021101FF"

Technical description

Below is a brief technical description of BER-TLV format.

Tag field

Tag has variable size of 1-4 bytes. If first tag byte, bits 1-5 are set to 1, there are more tag bytes follow. In subsequent bytes, bit 8 indicates if this is a last byte. Other bits identify unique tag number.

Length field

Length field has variable size of 1-4 bytes. When bit b8 of the most significant byte of the length field is set to 0, the length field consists of only one byte. Bits b7 to b1 code the number of bytes of the value field. The length field is within the range 1 to 127.When bit b8 of the most significant byte of the length field is set to 1, the subsequent bits b7 to b1 of the most significant byte code the number of subsequent bytes in the length field. The subsequent bytes code an integer representing the number of bytes in the value field.

Value field

Value is binary bytes array of specified length. Value may represent recursive sub-tree (branch).

Padding

Before, between, or after TLV-coded data objects, zero bytes without any meaning may occur (for example, due to erased or modified TLV-coded data objects).

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

ber-tlv-0.0.4.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

ber_tlv-0.0.4-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file ber-tlv-0.0.4.tar.gz.

File metadata

  • Download URL: ber-tlv-0.0.4.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.10

File hashes

Hashes for ber-tlv-0.0.4.tar.gz
Algorithm Hash digest
SHA256 a82da7bdbdaae0dd7a1356c7c1d2b5c278d901719a10c568a671c625975ad2a7
MD5 4cf2e2f866b131918ff3483d3c1245c1
BLAKE2b-256 680f83ca875d0bd9f1f9eda59a2f4af748d8157287621ca3a0f452954144cb20

See more details on using hashes here.

File details

Details for the file ber_tlv-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: ber_tlv-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.10

File hashes

Hashes for ber_tlv-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 bda56fa2a9d27ee23dcf1e0b4d449b8d02fe3d1975a9d2b62c6606a3735396c8
MD5 1332ec317ae3a7148cd313b4a711a82a
BLAKE2b-256 789b48bfaefff78c20b87f285b5217a8224d1f5e7f053c6720d1a11f52a65400

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