crc-fast 1.10.0

World's fastest generic CRC16, CRC32, and CRC64 calculator using SIMD. Supplies a C-compatible shared library for use in other languages.
Documentation
1
2
3
4
5
6
7
8
9
// Copyright 2025 Don MacAskill. Licensed under MIT or Apache-2.0.

//! This module provides aarch64-specific implementations of CRC-32/ISO-HDLC calculations using
//! fusion techniques.

#![cfg(target_arch = "aarch64")]

pub(crate) mod crc_pmull;
pub(crate) mod crc_pmull_sha3;