//! Shared CRC kernel names.
/// Reference (bitwise) kernel name - canonical implementation for verification.
pub const REFERENCE: &str = "reference/bitwise";
/// Portable fallback kernel name (used by all CRC widths).
pub const PORTABLE_SLICE16: &str = "portable/slice16";
/// Portable slice-by-8 kernel name.
pub const PORTABLE_SLICE8: &str = "portable/slice8";