//! Portable CRC-24 implementations.
use kernel_tables;
use crateportable;
/// CRC-24/OPENPGP slice-by-8 computation.
// Byte-at-a-time (fast-path for tiny buffers)
/// CRC-24/OpenPGP byte-at-a-time lookup computation (MSB-first).
///
/// Uses one 256-entry table rather than the slice-by-8 table set.
// index is 0..=255 by byte cast, table is [u32; 256]