mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-05 07:13:08 +00:00
11 lines
331 B
Rust
11 lines
331 B
Rust
//! Byte packing / unpacking unit for the EVM.
|
|
//!
|
|
//! This module handles reading / writing to memory byte sequences of
|
|
//! length at most 32 in Big-Endian ordering.
|
|
|
|
pub mod byte_packing_stark;
|
|
pub mod columns;
|
|
|
|
/// Maximum number of bytes being processed by a byte (un)packing operation.
|
|
pub(crate) const NUM_BYTES: usize = 32;
|