Skip to main content

p3_blake3_air/
lib.rs

1//! An AIR for the Blake-3 permutation. Assumes the field size is between 2^20 and 2^32.
2
3#![no_std]
4
5extern crate alloc;
6
7mod air;
8mod columns;
9mod constants;
10mod generation;
11
12pub use air::*;
13pub use columns::*;
14pub use generation::*;