Crates.io | embedded-crc32c |
lib.rs | embedded-crc32c |
version | 0.1.0 |
source | src |
created_at | 2023-07-14 22:45:44.453355 |
updated_at | 2023-07-14 22:45:44.453355 |
description | A `const`, single-choice opinionated tiny CRC32 implementation |
homepage | |
repository | https://github.com/KizzyCode/embedded-crc32c-rust |
max_upload_size | |
id | 916825 |
size | 13,346 |
embedded-crc32c
A const
, single-choice opinionated tiny CRC32 implementation.
In most cases there's probably no good reason. However, why I wrote this crate: It's really tiny, portable and no-std
compatible and thus suitable embedded devices. Furthermore it's opinionated, offering only a single CRC implementation
(CRC32C
; polynomial 0x1EDC6F41
). Also, the CRC32C implementation is const
, which may be useful in some cases.