Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.

junghoon-vans/crc-calculator

Repository files navigation

CRC Calculator

PyPI version pre-commit.ci status GitHub Workflow Status

Usage with Installation

  1. Install crc-calculator using pip.
$ pip install crc-calculator
  1. Run crc command with arguments.
$ crc -h
 usage: crc -p [POLYNOMIAL] -d [DATA]

$ crc --polynomial 100101 --data 101101001
 checksum: 00010
 validation: 00000

Usage of Windows Executable

  1. Download crc-calculator-{version}-windows.zip from the release.
  2. Unzip file and run the powershell on that path.
  3. Run .\crc command with arguments
$ .\crc -h
 usage: crc -p [POLYNOMIAL] -d [DATA]

$ .\crc --polynomial 100101 --data 101101001
 checksum: 00010
 validation: 00000