small crc32 calculator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Connor Olding 400b15d05f
update copyright year
6 years ago
LICENSE update copyright year 6 years ago
Makefile compile as C99 6 years ago
README.md remove notes from readme 6 years ago
args.c inline cyclic functions 8 years ago
crc32.c rewrite out some weirdness 6 years ago
main.c use signed ints for iterating 6 years ago

README.md

crc32

It computes crc32s, and what of it?

Usage

crc32 - a 32-bit cyclic rendundancy check calculator

  <files...>        open files as inputs
  -h                display this text
  -s <n>            start cycle with n (default: 0xFFFFFFFF)
  -p <n>            use n as the crc divisor (default: 0x04C11DB7)
  -e                use big endian calculations
  -b                output as binary
  -x                NOT the output
  -r                reverse output's bits

numbers <n> may be in hexadecimal or octal using proper prefixes

Smaller Still