openvm_sha256_air/
lib.rs

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