1//! WARNING: the order of fields in the structs is important, do not change it
23use openvm_circuit::{
4 arch::ExecutionState,
5 system::memory::offline_checker::{MemoryReadAuxCols, MemoryWriteAuxCols},
6};
7use openvm_circuit_primitives::AlignedBorrow;
8use openvm_instructions::riscv::RV32_REGISTER_NUM_LIMBS;
9use openvm_sha256_air::{Sha256DigestCols, Sha256RoundCols};
1011use super::{SHA256_REGISTER_READS, SHA256_WRITE_SIZE};
1213/// the first 16 rows of every SHA256 block will be of type Sha256VmRoundCols and the last row will be of type Sha256VmDigestCols
14#[repr(C)]
15#[derive(Clone, Copy, Debug, AlignedBorrow)]
16pub struct Sha256VmRoundCols<T> {
17pub control: Sha256VmControlCols<T>,
18pub inner: Sha256RoundCols<T>,
19pub read_aux: MemoryReadAuxCols<T>,
20}
2122#[repr(C)]
23#[derive(Clone, Copy, Debug, AlignedBorrow)]
24pub struct Sha256VmDigestCols<T> {
25pub control: Sha256VmControlCols<T>,
26pub inner: Sha256DigestCols<T>,
2728pub from_state: ExecutionState<T>,
29/// It is counter intuitive, but we will constrain the register reads on the very last row of every message
30pub rd_ptr: T,
31pub rs1_ptr: T,
32pub rs2_ptr: T,
33pub dst_ptr: [T; RV32_REGISTER_NUM_LIMBS],
34pub src_ptr: [T; RV32_REGISTER_NUM_LIMBS],
35pub len_data: [T; RV32_REGISTER_NUM_LIMBS],
36pub register_reads_aux: [MemoryReadAuxCols<T>; SHA256_REGISTER_READS],
37pub writes_aux: MemoryWriteAuxCols<T, SHA256_WRITE_SIZE>,
38}
3940/// These are the columns that are used on both round and digest rows
41#[repr(C)]
42#[derive(Clone, Copy, Debug, AlignedBorrow)]
43pub struct Sha256VmControlCols<T> {
44/// Note: We will use the buffer in `inner.message_schedule` as the message data
45 /// This is the length of the entire message in bytes
46pub len: T,
47/// Need to keep timestamp and read_ptr since block reads don't have the necessary information
48pub cur_timestamp: T,
49pub read_ptr: T,
50/// Padding flags which will be used to encode the the number of non-padding cells in the current row
51pub pad_flags: [T; 6],
52/// A boolean flag that indicates whether a padding already occurred
53pub padding_occurred: T,
54}
5556/// Width of the Sha256VmControlCols
57pub const SHA256VM_CONTROL_WIDTH: usize = Sha256VmControlCols::<u8>::width();
58/// Width of the Sha256VmRoundCols
59pub const SHA256VM_ROUND_WIDTH: usize = Sha256VmRoundCols::<u8>::width();
60/// Width of the Sha256VmDigestCols
61pub const SHA256VM_DIGEST_WIDTH: usize = Sha256VmDigestCols::<u8>::width();
62/// Width of the Sha256Cols
63pub const SHA256VM_WIDTH: usize = if SHA256VM_ROUND_WIDTH > SHA256VM_DIGEST_WIDTH {
64 SHA256VM_ROUND_WIDTH
65} else {
66 SHA256VM_DIGEST_WIDTH
67};