openvm_sha256_air/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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;