Skip to main content

A library for CRC calculation and code generation

Project description

https://img.shields.io/pypi/v/crcengine.svg https://img.shields.io/github/workflow/status/GardenTools/CrcEngine/Python%20package/master https://img.shields.io/pypi/pyversions/CrcEngine.svg https://img.shields.io/pypi/format/CrcEngine.svg Documentation Status

CrcEngine

A python library for CRC calculation providing table-based as well as bit-bashing implementations (for reference).

Installing

CrcEngine can be installing using pip with

pip install crcengine

Usage

Pre-defined algorithms such as CRC32 are available. Tailored algorithms can be created by calling CrcEngine.create() and other related methods.

A calculation engine for a specific named algorithm can be obtained using CrcEngine.new(). Algorithms which are not pre-defined can be created using CrcEngine.create()

A list of pre-defined algorithms can be obtained using crcengine.algorithms_available()

>>> list(crcengine.algorithms_available())
['crc8', 'crc8-autosar', 'crc8-bluetooth', 'crc8-ccitt', 'crc8-gsm-b', 'crc8-sae-j1850', 'crc15-can', 'crc16-kermit', 'crc16-ccitt-true', 'crc16-xmodem', 'crc16-autosar', 'crc16-ccitt-false', 'crc16-cdma2000', 'crc16-ibm', 'crc16-modbus', 'crc16-profibus', 'crc24-flexray16-a', 'crc24-flexray16-b', 'crc32', 'crc32-bzip2', 'crc32-c', 'crc64-ecma']

Built-in algorithms

crc8, crc8-autosar, crc8-bluetooth, crc8-ccitt, crc8-gsm-b, crc8-sae-j1850, crc15-can, crc16-kermit, crc16-ccitt-true, crc16-xmodem, crc16-autosar, crc16-ccitt-false, crc16-cdma2000, crc16-ibm, crc16-modbus, crc16-profibus, crc24-flexray16-a, crc24-flexray16-b, crc32, crc32-bzip2, crc32-c, crc64-ecma

Examples

Using a pre-defined algorithm

import crcengine
crc_algorithm = crcengine.new('crc32-bzip2')
result = crc_algorithm(b'123456789')
print('CRC=0x{:08x}'.format(result))

Output: > CRC=0xfc891918

Defining an algorithm

import crcengine
crc_openpgp = crcengine.create(0x864cfb, 24, 0xb704ce, ref_in=False,
                               ref_out=False, xor_out=0,
                               name='crc-24-openpgp')

Code Generation

The library can generate C code for a given table-algorithm. The code produced is intended to be a reasonable compromise between size, complexity and speed without requiring allocation of memory for table generation at runtime.

Faster implementations of specific algorithms can be achieved in software which unroll loops and pipeline the operations different bytes to introduce parallelism in the calculation see intel_soft_src for example. Some processors also include instructions specifically for crc calculation.

Code Generation Example usage:

Generating code into a directory named “out” by passing CRC parameters

params = crcengine.get_algorithm_params('crc32')
crcengine.generate_code(params, 'out/')

or referencing the algorithm by name

crcengine.generate_code('crc16-xmodem', 'out/')

Downloading

Running the tests

Tests can be performed directly by executing pytest in the “tests” directory

Running the Codegen tests

The codegen tests make use of ceedling which is expected to be installed as a ruby gem. The unit tests are configured to compile with gcc.


With thanks to Greg Cook for providing such a thoroughly collated list of CRC definitions

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

crcengine-0.3.3.tar.gz (49.9 kB view details)

Uploaded Source

Built Distribution

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

crcengine-0.3.3-py3-none-any.whl (29.5 kB view details)

Uploaded Python 3

File details

Details for the file crcengine-0.3.3.tar.gz.

File metadata

  • Download URL: crcengine-0.3.3.tar.gz
  • Upload date:
  • Size: 49.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.13

File hashes

Hashes for crcengine-0.3.3.tar.gz
Algorithm Hash digest
SHA256 b1260237d0520bf7293846c5d3847b43226ea0d58df981310a8a2268b117ef4a
MD5 7e6fd9f57f3253c01f1141a0013e7c30
BLAKE2b-256 46efad10bc5348314ed5ac48df5bc405b08a45dc1d880fc24eabbf79b02393c0

See more details on using hashes here.

File details

Details for the file crcengine-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: crcengine-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 29.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.13

File hashes

Hashes for crcengine-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3f743ce6793b2fb914e06da56123d8b36cddb221e9d5aea5fc292253a5ddeeec
MD5 e2240e3b79809bb507b233e4380881dc
BLAKE2b-256 4a145d2dc3bff17c4ab6b0ee3b5a4c4316f4650cebf9d8f348307725d85e6fda

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