#hashing #simd #crc32 #crc #hardware-accelerated #algorithm #sse

crc32c

Safe implementation for hardware accelerated CRC32C instructions with software fallback

16 releases

0.6.8 Jun 9, 2024
0.6.5 Feb 8, 2024
0.6.4 Jul 23, 2023
0.6.3 Apr 12, 2022
0.2.0 Nov 11, 2017

#22 in Algorithms

Download history 203174/week @ 2024-03-14 197212/week @ 2024-03-21 202248/week @ 2024-03-28 223468/week @ 2024-04-04 234680/week @ 2024-04-11 246235/week @ 2024-04-18 250432/week @ 2024-04-25 254607/week @ 2024-05-02 265580/week @ 2024-05-09 281651/week @ 2024-05-16 282126/week @ 2024-05-23 321312/week @ 2024-05-30 316042/week @ 2024-06-06 321477/week @ 2024-06-13 294640/week @ 2024-06-20 264083/week @ 2024-06-27

1,267,721 downloads per month
Used in 291 crates (53 directly)

Apache-2.0/MIT

28KB
584 lines

CRC32C

Crates.io Docs.rs Travis

Rust implementation of the CRC-32-Castagnoli algorithm with hardware acceleration where possible.

Hardware acceleration on the following architectures:

  1. x84-64 with SSE 4.2
    • All stable versions of Rust
    • If SSE 4.2 is enabled at compile time, it will only build the SSE implementation. Otherwise, the cpuid is used to find the best implementation at runtime.
  2. aarch64 with crc feature
    • Only available on rust version >= 1.80.0 or nightly

All other processors utilize a software fallback.

Usage

First, add this to your Cargo.toml:

[dependencies]
crc32c = "0.6"
extern crate crc32c;

fn main() {
    let message = b"Hello world!";
    let crc = crc32c::crc32c(message);

    println!("hash = {}", crc);
}

License

You may use this code under either the Apache 2.0 license or the MIT license, at your option.

No runtime deps