Skip to main content

uor_addr/composition/f4/
mod.rs

1//! CS-F4 — ± involution quotient (bitwise-complement lex-min) per wiki [ADR-061] §(2). Five σ-axes × one shape =
2//! five unary entry points.
3//!
4//! [ADR-061]: https://github.com/UOR-Foundation/UOR-Framework/wiki/ADR-061
5
6pub mod model;
7pub mod pipeline;
8pub mod value;
9pub mod verbs;
10
11pub use pipeline::{
12    compose_f4_quotient, compose_f4_quotient_blake3, compose_f4_quotient_keccak256,
13    compose_f4_quotient_sha3_256, compose_f4_quotient_sha512,
14};