1//! Implementation of the SHA256 compression function without padding
2//! This this AIR doesn't constrain any of the message padding
34mod air;
5mod columns;
6mod trace;
7mod utils;
89pub use air::*;
10pub use columns::*;
11pub use trace::*;
12pub use utils::*;
1314#[cfg(test)]
15mod tests;