openvm_sha256_air/lib.rs
//! Implementation of the SHA256 compression function without padding
//! This this AIR doesn't constrain any of the message padding
mod air;
mod columns;
mod trace;
mod utils;
pub use air::*;
pub use columns::*;
pub use trace::*;
pub use utils::*;
#[cfg(test)]
mod tests;