//! Cat-A hash / checksum compositions.
//!
//! Owns the checksum and hash compositions migrated from the old
//! target-text-string op surface. Each op is a pure serial composition over
//! existing IR primitives (XOR + multiply + shift); no dedicated target builder
//! emitter arm required.
pub use adler32;
pub use blake3_compress;
pub use crc32;
pub use fnv1a32;
pub use fnv1a64;
pub use multi_hash;
pub