rscrypto 0.1.1

Pure Rust cryptography, hardware-accelerated: BLAKE3, SHA-2/3, AES-GCM, ChaCha20-Poly1305, Ed25519, X25519, HMAC, HKDF, Argon2, CRC. no_std, WASM, ten CPU architectures.
Documentation
//! Portable CRC-16 implementations.

use super::kernel_tables;
use crate::checksum::common::portable;

/// CRC-16/CCITT (X25 / IBM-SDLC) slice-by-8 computation.
#[inline]
pub fn crc16_ccitt_slice8(crc: u16, data: &[u8]) -> u16 {
  portable::slice8_16(crc, data, &kernel_tables::CCITT_TABLES_8)
}

/// CRC-16/IBM (ARC) slice-by-8 computation.
#[inline]
pub fn crc16_ibm_slice8(crc: u16, data: &[u8]) -> u16 {
  portable::slice8_16(crc, data, &kernel_tables::IBM_TABLES_8)
}

// ─────────────────────────────────────────────────────────────────────────────
// Byte-at-a-time (fast-path for tiny buffers)
// ─────────────────────────────────────────────────────────────────────────────

/// CRC-16/CCITT byte-at-a-time lookup computation.
///
/// This is typically faster than slice-by-8 for tiny buffers because it uses a
/// single 256-entry table.
#[inline(always)]
pub fn crc16_ccitt_bytewise(crc: u16, data: &[u8]) -> u16 {
  crc16_bytewise(crc, data, &kernel_tables::CCITT_TABLES_8[0])
}

/// CRC-16/IBM byte-at-a-time lookup computation.
///
/// This is typically faster than slice-by-8 for tiny buffers because it uses a
/// single 256-entry table.
#[inline(always)]
pub fn crc16_ibm_bytewise(crc: u16, data: &[u8]) -> u16 {
  crc16_bytewise(crc, data, &kernel_tables::IBM_TABLES_8[0])
}

/// Update CRC-16 state using a byte-at-a-time lookup table.
#[inline(always)]
#[allow(clippy::indexing_slicing)] // index is 0..=255 by mask, table is [u16; 256]
fn crc16_bytewise(mut crc: u16, data: &[u8], table: &[u16; 256]) -> u16 {
  for &b in data {
    let index = ((crc ^ (b as u16)) & 0xFF) as usize;
    crc = table[index] ^ (crc >> 8);
  }
  crc
}