Skip to main content

uor_addr/composition/e7/
mod.rs

1//! CS-E7 — S₄-quarter-permutation orbit augmentation (lex-min of the 24-orbit) 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_e7_augmentation, compose_e7_augmentation_blake3, compose_e7_augmentation_keccak256,
13    compose_e7_augmentation_sha3_256, compose_e7_augmentation_sha512,
14};